* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0e27;
    --bg-secondary: #151932;
    --bg-card: #1a1f3a;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --border-color: #2d3748;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header Bar */
.top-header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 0.7rem 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 100;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-left,
.top-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-header-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.top-header-link:hover {
    color: var(--accent-primary);
}

.top-header-link i {
    font-size: 0.85rem;
}

.top-header-social {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.social-icon:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-2px);
}

.top-header-divider {
    width: 1px;
    height: 20px;
    background: var(--border-color);
}

.top-header-promo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    font-weight: 600;
    animation: pulse 2s infinite;
}

.top-header-promo i {
    font-size: 1rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 77, 0.95), rgba(45, 27, 105, 0.95));
    background-size: 200% 200%;
    animation: headerGradient 10s ease infinite;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    border-bottom: 1px solid var(--border-color);
    overflow: visible;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(99, 102, 241, 0.1), 
        transparent
    );
    animation: headerShine 3s ease-in-out infinite;
}

@keyframes headerGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes headerShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s;
}

.logo:hover .logo-icon,
.logo:hover .logo-image {
    transform: rotate(15deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Submenu Styles */
.nav-menu > li {
    position: relative;
}

.nav-menu .has-submenu {
    position: relative;
}

/* Menu Icons */
.menu-icon,
.menu-icon-img {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.menu-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Submenu Arrow */
.submenu-arrow {
    font-size: 0.65rem;
    margin-left: 0.35rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.has-submenu:hover .submenu-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Modern Dropdown Submenu */
.submenu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 240px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(99, 102, 241, 0.1);
    list-style: none;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    backdrop-filter: blur(10px);
}

/* Arrow pointer */
.submenu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.submenu li {
    padding: 0;
    margin-bottom: 0.25rem;
}

.submenu li:last-child {
    margin-bottom: 0;
}

.submenu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.submenu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-primary);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.submenu a:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--accent-primary);
    transform: translateX(5px);
}

.submenu a:hover::before {
    transform: scaleY(1);
}

/* Submenu Icons */
.submenu-icon,
.submenu-icon-img {
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.submenu-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.submenu a:hover .submenu-icon,
.submenu a:hover .submenu-icon-img {
    opacity: 1;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-primary);
    font-weight: 500;
}

.user-dropdown-toggle:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.user-dropdown-toggle .user-avatar {
    width: 35px;
    height: 35px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem !important; /* Smaller to fit perfectly in the circle */
    overflow: hidden;
}

.user-dropdown-toggle .user-avatar i {
    font-size: 1.1rem !important;
}

.user-dropdown-toggle .user-name-display {
    font-size: 0.95rem;
}

.user-dropdown-toggle .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.user-dropdown.active .user-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 340px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 99999;
    overflow: hidden;
}

.user-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Modern Profile Header */
.dropdown-profile-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-avatar-large {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem !important; /* Smaller to fit perfectly in the circle */
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    overflow: hidden;
}

.profile-avatar-large i {
    font-size: 2rem !important;
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Balance Cards */
.balance-cards {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
    background: var(--bg-primary);
}

.balance-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.balance-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.balance-card-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.balance-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.balance-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.balance-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.balance-amount small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.balance-add-btn {
    background: var(--accent-gradient);
    border: none;
    border-radius: 12px;
    padding: 0.8rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.balance-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.balance-add-btn i {
    font-size: 1.2rem;
}

.dropdown-header {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-user-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.dropdown-user-info strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.dropdown-user-info small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
}

.dropdown-item i {
    width: 20px;
    font-size: 1rem;
}

.dropdown-item.text-danger {
    color: #ef4444;
}

.dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-header-outline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-header-outline:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 99999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Prevent default scrolling */
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0; /* Keep header fixed */
    background: var(--bg-secondary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: var(--accent-primary);
    color: white;
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    
    /* Modern Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.5) transparent;
}

/* Modern Scrollbar for Webkit (Chrome, Safari, Edge) */
.mobile-nav-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-nav-menu::-webkit-scrollbar-track {
    background: transparent;
    margin: 0.5rem 0;
}

.mobile-nav-menu::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    transition: background 0.3s;
}

.mobile-nav-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.6);
}

.mobile-nav-menu::-webkit-scrollbar-thumb:active {
    background: rgba(99, 102, 241, 0.8);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.mobile-nav-link:hover {
    background: var(--bg-card);
    color: var(--accent-primary);
}

.mobile-nav-link i {
    width: 20px;
    flex-shrink: 0;
}

.mobile-nav-link span {
    flex: 1;
}

.mobile-menu-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Mobile Submenu */
.has-mobile-submenu > .mobile-nav-link {
    position: relative;
}

.mobile-submenu-toggle {
    margin-left: auto;
    transition: transform 0.3s;
    width: auto !important;
}

.has-mobile-submenu.active > .mobile-nav-link .mobile-submenu-toggle {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    background: rgba(99, 102, 241, 0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.has-mobile-submenu.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu .mobile-nav-link {
    padding-left: 3.5rem;
    font-size: 0.95rem;
}

.mobile-submenu .submenu-link {
    border-left: 3px solid var(--accent-primary);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 1.5rem;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0; /* Keep footer fixed */
    background: var(--bg-secondary);
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.mobile-contact i {
    color: var(--accent-primary);
}

.mobile-social {
    display: flex;
    gap: 0.5rem;
}

.mobile-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-social a:hover {
    background: var(--accent-gradient);
    color: white;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    max-width: 600px;
    width: 100%;
    position: relative;
}

.search-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.search-modal-close:hover {
    background: var(--accent-primary);
    color: white;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.search-box i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.search-suggestions p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.search-tags a {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.search-tags a:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
}

/* Slider Section */
.slider-section {
    background: linear-gradient(-45deg, #0a0e27, #1a1f4d, #2d1b69, #1a1f4d);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.4;
    }
}

.slider-container {
    position: relative;
    height: 450px;
    z-index: 2;
}

.slider-wrapper {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.slide-text {
    animation: slideInLeft 0.8s ease;
}

.slide.active .slide-text {
    animation: slideInLeft 0.8s ease;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.slide-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.slide-text h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.slide-btn:hover i {
    transform: translateX(5px);
}

.slide-btn i {
    transition: transform 0.3s;
}

.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease;
}

.slide.active .slide-image {
    animation: slideInRight 0.8s ease;
}

.slide-image .slider-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.slide-graphic {
    width: 280px;
    height: 280px;
    background: var(--accent-gradient);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.slide-graphic::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 30px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.slider-btn-prev,
.slider-btn-next {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-btn-prev:hover,
.slider-btn-next:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 0.8rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.dot.active {
    background: var(--accent-gradient);
    border-color: transparent;
    width: 30px;
    border-radius: 10px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Buttons */
.btn {
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: white;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Services Section */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.1);
}

.service-card.featured {
    border: 3px solid #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.service-card.featured::before {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.service-card.featured:hover {
    border-color: #f59e0b;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.4), 0 0 0 1px rgba(251, 191, 36, 0.2);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.service-card.featured:hover .service-icon {
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.service-icon .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.service-card.featured h3 {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:hover h3 {
    transform: translateX(5px);
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.7rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    font-size: 1rem;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

.service-features i {
    color: var(--accent-primary);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.service-card.featured .service-features i {
    color: #fbbf24;
}

.service-card:hover .service-features i {
    transform: scale(1.2);
}

.service-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    padding: 0.8rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.service-card.featured .service-link {
    color: #f59e0b;
    background: rgba(251, 191, 36, 0.1);
}

.service-link:hover {
    gap: 12px;
    background: var(--accent-gradient);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.service-card.featured .service-link:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--accent-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--accent-primary);
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
}

.footer-section ul li i {
    color: var(--accent-primary);
    margin-right: 8px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .search-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }
    
    .top-header-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .top-header-left,
    .top-header-right {
        gap: 0.8rem;
        width: 100%;
        justify-content: center;
    }
    
    .top-header-left {
        flex-wrap: wrap;
    }
    
    .top-header-link {
        font-size: 0.85rem;
    }
    
    .top-header-link span {
        display: inline;
    }
    
    .top-header-divider {
        display: none;
    }
    
    .top-header-promo {
        font-size: 0.85rem;
    }
    
    .top-header-promo span {
        display: inline;
    }
    
    .top-header-social {
        gap: 0.3rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .btn-header span,
    .btn-header-outline span {
        display: none;
    }
    
    .btn-header,
    .btn-header-outline {
        padding: 0.7rem;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    
    /* User Dropdown Mobile */
    .user-dropdown-toggle .user-name-display {
        display: none;
    }
    
    .user-dropdown-toggle {
        padding: 0.6rem;
    }
    
    .user-dropdown-menu {
        position: fixed;
        top: 70px;
        left: 10px;
        right: 10px;
        width: auto;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }
    
    .dropdown-profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .balance-cards {
        flex-direction: column;
    }
    
    .balance-card {
        width: 100%;
    }
    
    .profile-info h4,
    .profile-info p {
        text-align: center;
    }
    
    .slider-container {
        height: 500px;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .slide-text h2 {
        font-size: 1.5rem;
    }
    
    .slide-text h3 {
        font-size: 2rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .slide-graphic {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-btn-prev,
    .slider-btn-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}


/* Contact Page Styles */
.contact-hero {
    background: var(--bg-primary);
    padding: 6rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.contact-main {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-grid-centered {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-grid-centered .contact-form-wrapper {
    max-width: 800px;
    width: 100%;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.info-card-header i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.info-card-header h3 {
    font-size: 1.3rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--accent-primary);
}

.social-connect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-connect h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link-large {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-link-large.facebook {
    background: #1877f2;
}

.social-link-large.twitter {
    background: #1da1f2;
}

.social-link-large.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-large.linkedin {
    background: #0077b5;
}

.social-link-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-primary);
}

.stat-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.stat-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Map Section */
.map-section {
    background: var(--bg-primary);
}

.map-container {
    width: 100%;
    height: 450px;
    border-top: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(1) contrast(0.9);
}

/* Contact Page Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid-centered {
        padding: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
}

/* Balance Modal */
.balance-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.balance-modal.active {
    display: flex;
}

.balance-modal-content {
    max-width: 500px;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.balance-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-bottom: 1px solid var(--border-color);
}

.balance-modal-header h2 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
}

.balance-modal-header i {
    color: var(--accent-primary);
}

.balance-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.balance-modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.balance-modal-body {
    padding: 1.5rem;
}

.balance-info-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.balance-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-info-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.balance-info-item strong {
    color: var(--accent-primary);
    font-size: 1.3rem;
    font-weight: 800;
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.amount-input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.amount-input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
}

.amount-input-wrapper.modern {
    position: relative;
    display: flex;
    align-items: center;
}

.amount-input-wrapper.modern input {
    padding-right: 5rem;
}

.currency-label {
    position: absolute;
    right: 1rem;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.amount-input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Deposit Steps */
.deposit-step {
    display: none;
}

.deposit-step.active {
    display: block;
}

.payment-info-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.qr-code-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.qr-code {
    width: 200px;
    height: 200px;
    border: 4px solid var(--accent-primary);
    border-radius: 12px;
    padding: 0.5rem;
    background: white;
}

.wallet-address-section {
    margin-bottom: 1.5rem;
}

.wallet-address-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}

.address-box span {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    color: var(--text-primary);
}

.btn-copy {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-copy:hover {
    transform: scale(1.05);
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.warning-box i {
    color: #ef4444;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-box p {
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

.deposit-summary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 8px;
    padding: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.summary-item span {
    color: var(--text-secondary);
}

.summary-item strong {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin: 1rem 0 1.5rem;
}

.quick-amount-btn {
    padding: 0.8rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.quick-amount-btn:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.quick-amount-btn.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
}

.balance-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.balance-modal-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Responsive Balance Modal */
@media (max-width: 768px) {
    .balance-modal-content {
        max-width: 100%;
        margin: 1rem;
    }
    
    .quick-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .balance-cards {
        grid-template-columns: 1fr;
    }
    
    .balance-add-btn {
        min-width: 100%;
        flex-direction: row;
        justify-content: center;
    }
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.contact-info-card-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info-card-item p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-card-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card-item a:hover {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Notification Dropdown */
.notification-dropdown {
    position: relative;
    margin-left: 15px;
}

.notification-btn {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.notification-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.notification-btn i {
    font-size: 22px;
    color: #fff;
    transition: all 0.3s ease;
}

.notification-btn:hover i {
    transform: rotate(15deg);
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 12px;
    min-width: 22px;
    text-align: center;
    animation: badgePulse 2s infinite;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2), 0 4px 12px rgba(255, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2), 0 4px 12px rgba(255, 0, 0, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(255, 0, 0, 0.3), 0 6px 16px rgba(255, 0, 0, 0.7);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.notification-btn.has-unread {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

/* Flash animation for new notifications */
.notification-btn.notification-flash {
    animation: redFlash 0.5s ease-in-out 6;
}

@keyframes redFlash {
    0%, 100% {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
        box-shadow: 0 0 0 rgba(255, 0, 0, 0);
    }
    50% {
        background: linear-gradient(135deg, rgba(255, 0, 0, 0.4), rgba(220, 0, 0, 0.4));
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.4);
        border-color: rgba(255, 0, 0, 0.6);
    }
}

.notification-btn.notification-flash i {
    animation: iconPulse 0.5s ease-in-out 6;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        color: #fff;
    }
    50% {
        transform: scale(1.2);
        color: #ff0000;
    }
}

/* Notification Dropdown Menu */
.notification-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 400px;
    max-height: 500px;
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1429 100%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 99999;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.notification-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 16px;
    height: 16px;
    background: #1a1f3a;
    transform: rotate(45deg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-dropdown-body {
    max-height: 500px;
    overflow-y: auto;
    padding: 8px;
}

.notification-dropdown-body::-webkit-scrollbar {
    width: 6px;
}

.notification-dropdown-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.notification-dropdown-body::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5);
    border-radius: 10px;
}

.notification-dropdown-body::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7);
}

.notification-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.notification-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.notification-empty p {
    margin: 0;
    font-size: 14px;
}

.notification-item {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.notification-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(-3px);
}

.notification-item.unread {
    background: rgba(102, 126, 234, 0.12);
    border-color: rgba(255, 215, 0, 0.4);
    border-left: 3px solid #ffd700;
}

.notification-item.unread::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    animation: pulse 2s infinite;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.notification-title {
    font-weight: 600;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-type-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.notification-type-icon.message {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.notification-type-icon.order {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.notification-type-icon.balance {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.notification-type-icon.info {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.notification-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.notification-message {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.notification-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    color: #8b9cff;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.notification-action:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-color: #667eea;
    color: white;
    transform: translateX(3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notification-dropdown-menu {
        position: fixed;
        top: 70px !important;
        right: 10px;
        left: 10px;
        width: auto;
        max-height: calc(100vh - 90px);
    }
    
    .notification-dropdown-menu::before {
        right: 10px;
    }
    
    .notification-btn {
        width: 45px;
        height: 45px;
    }
    
    .notification-btn i {
        font-size: 20px;
    }
    
    .notification-dropdown-body {
        max-height: calc(100vh - 100px);
    }
}




/* Additional Mobile Improvements */
@media (max-width: 480px) {
    /* User Dropdown - Extra Small Screens */
    .user-dropdown-menu {
        top: 60px;
        left: 5px;
        right: 5px;
    }
    
    .dropdown-profile-header {
        padding: 15px;
    }
    
    .balance-card {
        padding: 12px;
    }
    
    .balance-amount {
        font-size: 1.3rem;
    }
    
    /* Notification Dropdown - Extra Small Screens */
    .notification-dropdown-menu {
        top: 60px !important;
        left: 5px;
        right: 5px;
    }
    
    .notification-item {
        padding: 12px;
    }
    
    /* Mobile Menu - Extra Small Screens */
    .mobile-menu {
        width: 90%;
        max-width: 300px;
    }
    
    /* Balance Modal - Extra Small Screens */
    .balance-modal-content {
        margin: 0.5rem;
        border-radius: 12px;
    }
    
    .balance-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .quick-amounts {
        gap: 8px;
    }
    
    .quick-amount-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .user-dropdown-menu,
    .notification-dropdown-menu {
        max-height: calc(100vh - 70px);
    }
    
    .balance-modal-content {
        max-height: 95vh;
        overflow-y: auto;
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .dropdown-item {
        padding: 15px 20px;
        min-height: 48px;
    }
    
    .notification-item {
        padding: 15px;
        min-height: 60px;
    }
    
    .mobile-nav-link {
        padding: 15px 20px;
        min-height: 48px;
    }
    
    /* Remove hover effects on touch devices */
    .dropdown-item:hover,
    .notification-item:hover,
    .mobile-nav-link:hover {
        transform: none;
    }
    
    /* Active states for touch */
    .dropdown-item:active {
        background: rgba(99, 102, 241, 0.2);
    }
    
    .notification-item:active {
        background: rgba(102, 126, 234, 0.15);
    }
}
 
/* 
Mobile Menu Scroll Indicators */
.mobile-menu-scroll-indicator {
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.3s;
}

.mobile-menu-scroll-indicator.top {
    top: 80px; /* Below header */
    background: linear-gradient(to bottom, var(--bg-secondary), transparent);
}

.mobile-menu-scroll-indicator.bottom {
    bottom: 100px; /* Above footer */
    background: linear-gradient(to top, var(--bg-secondary), transparent);
}

/* Smooth scroll behavior */
.mobile-nav-menu {
    scroll-behavior: smooth;
}

/* Add padding to prevent content hiding behind fixed elements */
.mobile-nav-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Enhanced mobile menu animations */
.mobile-menu.active .mobile-nav-menu {
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile menu item hover effect enhancement */
.mobile-nav-link {
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-primary);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    transform: scaleY(1);
}

/* Scrollbar fade effect */
.mobile-nav-menu:not(:hover)::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.2);
}

/* User Badge Display */
.user-badge-display {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    animation: badgeGlow 2s ease-in-out infinite;
}

.user-badge-display i {
    font-size: 0.85rem;
}

/* Badge Colors */
.badge-premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.badge-vip {
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.badge-verified {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.badge-supporter {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.badge-moderator {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    }
}
