/* LAYTO Gaming Store 2030 - Advanced CSS */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-purple), var(--accent-pink));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--accent-pink), var(--primary-purple));
}

/* Platform Filter Styles */
.platform-filter-container {
    text-align: center;
}

.platform-filter-btn {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
    font-family: 'Exo 2', sans-serif;
}

.platform-filter-btn:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.platform-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-color: var(--primary-purple);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.platform-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
}

.platform-badge {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-purple);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-filter-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Enhanced Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-symbol {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    animation: navLogoPulse 2s ease-in-out infinite;
}

.logo-ring {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-purple);
    border-right: 2px solid var(--accent-pink);
    border-radius: 50%;
    animation: navLogoRotate 8s linear infinite;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(139, 92, 246, 0.15);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}


.profile-name {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
}

.nav-login {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.admin-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

/* Mobile Country Dropdown */
.mobile-country-dropdown {
    position: relative;
    display: none;
    margin-right: 0.5rem;
}

.mobile-country-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 120px;
    justify-content: space-between;
}

.mobile-country-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.mobile-country-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.mobile-country-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(20, 20, 30, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 0.75rem;
    padding: 0.5rem;
    min-width: 220px;
    width: max-content;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.mobile-country-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-country-dropdown-menu .country-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-country-dropdown-menu .country-option:hover {
    background: rgba(139, 92, 246, 0.1);
    color: white;
}

.mobile-country-dropdown-menu .country-flag {
    font-size: 1.2rem;
}

.mobile-country-dropdown-menu .country-name {
    font-size: 0.9rem;
    white-space: nowrap;
    font-weight: 500;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(139, 92, 246, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -380px;
    width: 350px;
    height: 100vh;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 1001;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    line-height: 1;
}

.sidebar-close:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-purple);
}

/* Scrollable Content Area */
.sidebar-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.5) transparent;
}

.sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}

.sidebar-menu {
    padding: 1rem 0;
}

/* Menu Sections */
.menu-section {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.menu-section-title {
    color: rgba(139, 92, 246, 0.8);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: #fff;
    background: rgba(139, 92, 246, 0.15);
    border-left-color: var(--primary-purple);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.sidebar-link:hover::before,
.sidebar-link.active::before {
    opacity: 1;
}

.link-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.link-text {
    flex: 1;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Language Options */
.language-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 0.75rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
}

.language-option:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #fff;
    transform: translateX(3px);
}

.language-option.active {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary-purple);
    color: #fff;
}

.option-flag {
    font-size: 1.2rem;
}

.option-text {
    flex: 1;
    font-weight: 500;
}

.option-arrow, .option-check {
    font-size: 0.9rem;
    color: rgba(139, 92, 246, 0.8);
}

.option-check {
    color: #10b981;
}


.profile-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.profile-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.profile-name {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.profile-status {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.profile-arrow {
    color: rgba(139, 92, 246, 0.8);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Admin Panel Link */
.sidebar-admin {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.75rem;
    text-decoration: none;
    color: #f59e0b;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.sidebar-admin:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.15));
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.admin-badge {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Login Link */
.sidebar-login {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    text-decoration: none;
    color: #3b82f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-login:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.login-icon {
    font-size: 1.5rem;
}

.login-text {
    flex: 1;
    font-weight: 600;
    font-size: 1.1rem;
}

.login-arrow {
    color: rgba(59, 130, 246, 0.8);
    font-size: 1.2rem;
}

/* Fixed Footer with Logout */
.sidebar-footer-fixed {
    position: relative;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9), rgba(26, 26, 46, 0.8));
    backdrop-filter: blur(10px);
}

.logout-form {
    margin-bottom: 1rem;
}

.logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.75rem;
    color: #ef4444;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logout-btn:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    color: #fff;
}

.logout-btn:hover::before {
    opacity: 1;
}

.logout-icon {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.logout-text {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.logout-arrow {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.footer-info {
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
}

.sidebar-footer {
    padding: 1rem 1.5rem 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}


.profile-info {
    flex: 1;
}

.profile-info .profile-name {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.profile-status {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.sidebar-login {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    color: white;
    text-decoration: none;
    border-radius: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    justify-content: center;
}

.sidebar-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.sidebar-admin {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.sidebar-admin:hover {
    background: rgba(255, 107, 53, 0.2);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.login-icon {
    font-size: 1.2rem;
}

/* Sidebar Sections */
.sidebar-section {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.sidebar-section-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.75rem 0;
    padding: 0 1rem;
}

.sidebar-options {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-option:hover {
    background: rgba(139, 92, 246, 0.1);
    color: white;
}

.sidebar-option.active {
    background: rgba(139, 92, 246, 0.15);
    color: white;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.option-flag {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.option-text {
    flex: 1;
    font-weight: 500;
}

.option-check {
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation Animations */
@keyframes navLogoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes navLogoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Country Dropdown Styles */
.country-dropdown {
    position: relative;
}

.country-btn {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--primary-purple);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 140px;
    justify-content: space-between;
}

.country-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
}

.country-flag {
    font-size: 1.2rem;
}

.country-name {
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.country-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.country-dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 0.75rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 200px;
    width: max-content;
}

.country-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 0.9rem;
}

.country-option:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-purple);
}

.country-option:first-child {
    border-radius: 0.75rem 0.75rem 0 0;
}

.country-option:last-child {
    border-radius: 0 0 0.75rem 0.75rem;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
}

.language-btn {
    background: rgba(236, 72, 153, 0.2);
    border: 1px solid var(--accent-pink);
    color: #fff;
    padding: 0.75rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 60px;
    justify-content: center;
    text-decoration: none;
}

.language-btn:hover {
    background: rgba(236, 72, 153, 0.3);
    box-shadow: var(--glow-pink);
    transform: translateY(-2px);
}

.language-icon {
    font-size: 1.1rem;
}

.language-text {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* RTL Support */
[dir="rtl"] .nav-container {
    direction: rtl;
}

[dir="rtl"] .nav-menu {
    direction: rtl;
}

[dir="rtl"] .nav-actions {
    direction: rtl;
}

[dir="rtl"] .country-dropdown-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .hero-container {
    text-align: center; /* Keep centered for hero */
}

[dir="rtl"] .auth-buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .mobile-sidebar {
    right: auto;
    left: -380px;
    border-left: none;
    border-right: 1px solid rgba(139, 92, 246, 0.2);
}

[dir="rtl"] .mobile-sidebar.active {
    left: 0;
    right: auto;
}

[dir="rtl"] .sidebar-link {
    border-left: none;
    border-right: 3px solid transparent;
}

[dir="rtl"] .sidebar-link:hover,
[dir="rtl"] .sidebar-link.active {
    border-right-color: var(--primary-purple);
    border-left-color: transparent;
}

[dir="rtl"] .section-header {
    text-align: right;
}

[dir="rtl"] .admin-sidebar {
    right: 0;
    left: auto;
    border-right: none;
    border-left: 1px solid rgba(139, 92, 246, 0.2);
}

[dir="rtl"] .admin-content {
    margin-right: 280px;
    margin-left: 0;
}

[dir="rtl"] .nav-link {
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .country-name-desktop {
        display: none;
    }
    
    .country-dropdown-menu {
        min-width: 160px;
        right: 0;
        left: auto;
    }
    
    [dir="rtl"] .country-dropdown-menu {
        left: 0;
        right: auto;
    }
    
    .language-text {
        display: none;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }

    .auth-actions {
        gap: 0.5rem;
    }
}

.cart-btn,
.profile-btn {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--primary-purple);
    color: #fff;
    padding: 0.75rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-text {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-count {
    background: var(--accent-pink);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
}

.cart-btn:hover,
.profile-btn:hover {
    background: var(--primary-purple);
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
}

/* Hero Section - Creative & Minimal */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, var(--dark-bg) 70%);
    padding: 5rem 2rem 3rem;
}

.hero-container {
    text-align: center;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
}

.hero-brand {
    position: relative;
}

.brand-name {
    margin: 0 0 1rem 0;
    font-family: 'Orbitron', monospace;
}

.layto-text {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    animation: textGlow 4s ease-in-out infinite alternate;
}

.brand-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 2rem 0;
    font-style: italic;
    font-weight: 300;
}

.user-status {
    margin-top: 1.5rem;
}

.welcome-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 2rem;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* Creative Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: orbFloat 12s infinite ease-in-out;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -5%;
    animation-delay: -4s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -8s;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

/* Animations */
@keyframes textGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.1); }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.1; }
    33% { transform: translateY(-30px) translateX(20px); opacity: 0.15; }
    66% { transform: translateY(10px) translateX(-15px); opacity: 0.05; }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    color: #22c55e;
    backdrop-filter: blur(20px);
    z-index: 1001;
    animation: slideInRight 0.5s ease;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.success-icon {
    font-size: 1.2rem;
}

.close-notification {
    background: none;
    border: none;
    color: #22c55e;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
    transition: opacity 0.3s ease;
}

.close-notification:hover {
    opacity: 0.7;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    color: #fff;
    box-shadow: var(--glow-purple);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.cta-btn.primary:hover {
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.cta-btn.secondary:hover {
    background: var(--primary-purple);
    color: #fff;
    box-shadow: var(--glow-purple);
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== ENHANCED GAME CHARGING SECTION ===== */

/* Game Charging Section - Enhanced with 2030 styling */
.charging-section {
    background: 
        linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(236, 72, 153, 0.1) 100%),
        radial-gradient(ellipse at top right, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.charging-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(6, 182, 212, 0.03) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(139, 92, 246, 0.03) 50%, transparent 51%);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
    pointer-events: none;
}

.charging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    perspective: 1000px;
}

.game-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.1) 0%, 
        transparent 40%, 
        rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1.5rem;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(6, 182, 212, 0.3),
        0 0 0 1px rgba(6, 182, 212, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--neon-blue);
}

/* Game badge */
.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), #0891b2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

.supreme .game-badge {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    color: #fff;
}

/* Game icon containers */
.game-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.game-icon {
    width: 40px;
    height: 40px;
    color: var(--neon-blue);
    transition: all 0.4s ease;
    z-index: 2;
}

.game-card:hover .game-icon {
    color: #fff;
    transform: scale(1.1);
}

.game-card:hover .game-icon-container {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
    transform: rotateY(180deg);
}

.quantum-card .game-icon {
    color: var(--primary-purple);
}

.quantum-card .game-icon-container {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.quantum-card:hover .game-icon-container {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}

.cyber-card .game-icon {
    color: var(--accent-pink);
}

.cyber-card .game-icon-container {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
}

.cyber-card:hover .game-icon-container {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
}

.supreme-card .game-icon {
    color: var(--primary-purple);
}

.supreme-card .game-icon-container {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.supreme-card:hover .game-icon-container {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

.game-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 0.75rem;
    object-fit: cover;
}

.game-info {
    flex: 1;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.game-status {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    display: inline-block;
}

.game-status.online {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.charging-options {
    display: grid;
    gap: 0.75rem;
}

.option-item {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-item:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary-purple);
    transform: translateX(5px);
}

.option-item.popular {
    border-color: var(--accent-pink);
    background: rgba(236, 72, 153, 0.1);
}

.popular-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-pink);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
}

.uc-amount {
    font-weight: 600;
    color: #fff;
}

.price {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1.1rem;
}

/* ===== ENHANCED ACCOUNTS SECTION ===== */

/* Account Section - Enhanced with 2030 styling */
.accounts-section {
    background: 
        linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(6, 182, 212, 0.1) 100%),
        radial-gradient(ellipse at bottom left, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.accounts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(236, 72, 153, 0.03) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(6, 182, 212, 0.03) 50%, transparent 51%);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite reverse;
    pointer-events: none;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 380px));
    gap: 2.5rem;
    perspective: 1000px;
    justify-content: center;
}

.account-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.1) 0%, 
        transparent 40%, 
        rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1.5rem;
}

.account-card:hover::before {
    opacity: 1;
}

.account-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(236, 72, 153, 0.3),
        0 0 0 1px rgba(236, 72, 153, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--accent-pink);
}

/* Account icon containers */
.account-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(236, 72, 153, 0.1);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.account-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-pink);
    transition: all 0.4s ease;
    z-index: 2;
}

.account-card:hover .account-icon {
    color: #fff;
    transform: scale(1.1);
}

.account-card:hover .account-icon-container {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    transform: rotateY(180deg);
}

/* Enhanced account card styling */
.account-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--accent-pink), #be185d);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

.account-game {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(45deg, var(--accent-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.account-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.account-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(236, 72, 153, 0.2);
    transition: all 0.3s ease;
}

.account-stat:hover {
    background: rgba(236, 72, 153, 0.2);
    transform: translateY(-2px);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Orbitron', monospace;
}

.account-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    color: var(--accent-pink);
    transform: translateX(5px);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-pink);
    flex-shrink: 0;
}

.account-price {
    margin-bottom: 2rem;
    text-align: center;
}

.account-price .price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-pink);
    font-family: 'Orbitron', monospace;
}

.account-price .price-save {
    background: var(--neon-blue);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.account-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--accent-pink), #be185d);
    border: none;
    border-radius: 0.75rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.account-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.account-btn:hover::before {
    left: 100%;
}

.account-btn:hover {
    transform: translateY(-3px) rotateX(5deg);
    box-shadow: 
        0 15px 30px rgba(236, 72, 153, 0.4),
        0 0 0 1px rgba(236, 72, 153, 0.5);
}

/* Ensure anchor tags styled as account buttons work properly */
a.account-btn {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

a.account-btn:visited {
    color: #fff;
}

/* Status dot for games */
.game-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: statusPulse 2s ease-in-out infinite;
}

/* Remove Analytics section CSS */

.account-card.legendary {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, var(--card-bg) 100%);
}

.account-card.epic {
    border-color: var(--accent-pink);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, var(--card-bg) 100%);
}

.account-card.rare {
    border-color: var(--neon-blue);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, var(--card-bg) 100%);
}

.account-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.account-card.premium .account-badge {
    background: var(--primary-purple);
    color: #fff;
}

.account-card.legendary .account-badge {
    background: var(--primary-purple);
    color: #fff;
}

.account-card.epic .account-badge {
    background: var(--accent-pink);
    color: #fff;
}

.account-card.rare .account-badge {
    background: var(--neon-blue);
    color: #fff;
}

.account-game {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.account-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.account-level,
.account-tier {
    text-align: center;
}

.account-level {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.account-tier {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.account-items {
    text-align: center;
}

.item-count {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-pink);
}

.item-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.account-highlights {
    margin-bottom: 1.5rem;
}

.highlight-item {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item:last-child {
    border-bottom: none;
}

.account-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.account-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-purple);
}

/* ===== ENHANCED 2030 CREATIVE CHEATS SECTION ===== */

/* Cheats Section - Primary focus with quantum effects */
.cheats-section {
    background: 
        linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 50%, rgba(6, 182, 212, 0.1) 100%),
        radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.cheats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(139, 92, 246, 0.03) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(236, 72, 153, 0.03) 50%, transparent 51%);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}


/* Cyber gradient text */
.cyber-gradient-text {
    background: linear-gradient(45deg, 
        var(--primary-purple) 0%, 
        var(--neon-blue) 25%, 
        var(--accent-pink) 50%, 
        var(--primary-purple) 75%, 
        var(--neon-blue) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}


@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


/* Enhanced cheat cards with quantum themes */
.cheats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 380px));
    gap: 2.5rem;
    perspective: 1000px;
    justify-content: center;
}

.cheat-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
}

.cheat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.1) 0%, 
        transparent 40%, 
        rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1.5rem;
}

.cheat-card:hover::before {
    opacity: 1;
}

.cheat-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(6, 182, 212, 0.3),
        0 0 0 1px rgba(6, 182, 212, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--neon-blue);
}

/* Quantum card variant */
.quantum-card {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15) 0%, 
        rgba(26, 26, 46, 0.9) 50%, 
        rgba(139, 92, 246, 0.15) 100%);
}

.quantum-card:hover {
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.4),
        0 0 30px rgba(139, 92, 246, 0.6);
}

/* Neural card variant */
.neural-card {
    border-color: var(--neon-blue);
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.15) 0%, 
        rgba(26, 26, 46, 0.9) 50%, 
        rgba(6, 182, 212, 0.15) 100%);
}

.neural-card:hover {
    box-shadow: 
        0 25px 50px rgba(6, 182, 212, 0.4),
        0 0 30px rgba(6, 182, 212, 0.6);
}

/* Cyber card variant */
.cyber-card {
    border-color: var(--accent-pink);
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.15) 0%, 
        rgba(26, 26, 46, 0.9) 50%, 
        rgba(236, 72, 153, 0.15) 100%);
}

.cyber-card:hover {
    box-shadow: 
        0 25px 50px rgba(236, 72, 153, 0.4),
        0 0 30px rgba(236, 72, 153, 0.6);
}

/* Supreme card - ultra premium */
.supreme-card {
    border: 2px solid var(--primary-purple);
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.2) 0%, 
        rgba(26, 26, 46, 0.9) 30%, 
        rgba(168, 85, 247, 0.2) 70%, 
        rgba(139, 92, 246, 0.2) 100%);
    position: relative;
}

.supreme-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple), var(--primary-purple), var(--secondary-purple));
    background-size: 300% 300%;
    border-radius: 1.5rem;
    z-index: -1;
    animation: supremeGlow 3s ease-in-out infinite;
}

@keyframes supremeGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.supreme-card:hover {
    transform: translateY(-20px) rotateX(8deg) rotateY(5deg);
    box-shadow: 
        0 30px 60px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(139, 92, 246, 0.8);
}

/* Supreme badge */
.supreme-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Cheat Image Container */
.cheat-image-container {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cheat-image-container:hover img {
    transform: scale(1.05);
}

.cheat-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Professional SVG icons */
.cheat-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.cheat-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-purple);
    transition: all 0.4s ease;
    z-index: 2;
}

.cheat-card:hover .cheat-icon {
    color: #fff;
    transform: scale(1.1);
}

.cheat-card:hover .cheat-icon-container {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
    transform: rotateY(180deg);
}

.neural-card .cheat-icon {
    color: var(--neon-blue);
}

.neural-card:hover .cheat-icon-container {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
}

.cyber-card .cheat-icon {
    color: var(--accent-pink);
}

.cyber-card:hover .cheat-icon-container {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
}

.supreme-icon {
    color: var(--primary-purple);
}

.supreme-card:hover .cheat-icon-container {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

/* Icon pulse effect */
.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: iconPulse 2s ease-in-out infinite;
    opacity: 0.6;
}

.supreme-pulse {
    border-color: var(--primary-purple);
}

@keyframes iconPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Cheat titles and content */
.cheat-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.supreme-card .cheat-title {
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cheat-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
    font-size: 1.1rem;
}

/* Features with professional checkmarks */
.cheat-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
}

.feature:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-purple);
    flex-shrink: 0;
}

/* Enhanced game tags */
.cheat-games {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.game-tag {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-purple);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    transition: left 0.5s ease;
}

.game-tag:hover::before {
    left: 100%;
}

.game-tag:hover {
    background: var(--primary-purple);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.game-tag.supreme {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-purple);
    border-color: rgba(139, 92, 246, 0.3);
}

.game-tag.supreme:hover {
    background: var(--primary-purple);
    color: #fff;
}

.game-tag.more {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    border-color: rgba(255, 255, 255, 0.2);
}

.game-tag.more:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Featured cheat styling */
.cheat-card.featured {
    position: relative;
    border: 2px solid rgba(251, 191, 36, 0.5);
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.2);
}

.cheat-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), transparent);
    pointer-events: none;
    border-radius: inherit;
}

/* Carousel Styles */
.cheat-carousel-container {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.cheat-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev {
    left: 0.5rem;
}

.carousel-next {
    right: 0.5rem;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(139, 92, 246, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.25rem;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active,
.carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Enhanced pricing */
.cheat-price {
    margin-bottom: 2rem;
    text-align: center;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
    font-family: 'Orbitron', monospace;
}

.supreme-card .price-amount {
    color: var(--primary-purple);
}

.price-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-save {
    background: var(--accent-pink);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.price-save.supreme {
    background: var(--primary-purple);
    color: #fff;
}

.price-value {
    background: var(--neon-blue);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Enhanced quantum buttons */
.cheat-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    border: none;
    border-radius: 0.75rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.cheat-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cheat-btn:hover::before {
    left: 100%;
}

.cheat-btn:hover {
    transform: translateY(-3px) rotateX(5deg);
    box-shadow: 
        0 15px 30px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(139, 92, 246, 0.5);
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Button variants */
.neural-btn {
    background: linear-gradient(135deg, var(--neon-blue), #0891b2);
}

.neural-btn:hover {
    box-shadow: 
        0 15px 30px rgba(6, 182, 212, 0.4),
        0 0 0 1px rgba(6, 182, 212, 0.5);
}

.cyber-btn {
    background: linear-gradient(135deg, var(--accent-pink), #be185d);
}

.cyber-btn:hover {
    box-shadow: 
        0 15px 30px rgba(236, 72, 153, 0.4),
        0 0 0 1px rgba(236, 72, 153, 0.5);
}

.supreme-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: #fff;
    font-weight: 700;
}

.supreme-btn:hover {
    box-shadow: 
        0 15px 30px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(139, 92, 246, 0.5);
}

/* Quantum button particles */
.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: particleFloat 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cheat-btn:hover .btn-particles {
    opacity: 1;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-20px, -20px); }
}

/* Hologram button effect */
.btn-hologram {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.supreme-btn:hover .btn-hologram {
    transform: translateX(100%) skewX(-15deg);
}





/* Responsive Design */
@media (min-width: 1400px) {
    .cheats-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 400px));
        gap: 3rem;
    }
    
    .accounts-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 400px));
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .cheats-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 350px));
        gap: 2rem;
    }
    
    .accounts-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 350px));
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .charging-grid {
        grid-template-columns: 1fr;
    }
    
    .accounts-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 350px));
        justify-content: center;
    }
    
    .cheats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cheat-card {
        border-radius: 1rem;
        padding: 1.5rem;
    }
    
    .cheat-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .cheat-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .cheat-image-container {
        height: 160px !important;
        margin-bottom: 1rem !important;
        border-radius: 0.75rem !important;
    }
    
    .feature-tag, .game-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.25rem 0.25rem 0.25rem 0;
    }
    
    .cheat-price {
        margin-bottom: 1rem;
    }
    
    .price-amount {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .cheats-section {
        padding: 3rem 0 !important;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-country-dropdown {
        display: flex;
    }
    
    .mobile-country-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .mobile-country-name {
        font-size: 0.75rem;
    }
    
    .country-name-desktop {
        display: none;
    }
    
    .profile-name {
        display: none;
    }
    
    .admin-btn {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .country-dropdown,
    .language-switcher,
    .admin-btn,
    .nav-login {
        display: none;
    }
    
    .hero {
        min-height: 45vh;
        padding: 4rem 1rem 2rem;
    }
    

    
    .layto-text {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .brand-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .brand-tagline {
        font-size: 0.9rem;
    }
    
    .welcome-text {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .cheats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .cheat-card {
        border-radius: 1rem;
        padding: 1.5rem;
        margin: 0;
    }
    
    .cheat-title {
        font-size: 1.3rem !important;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .cheat-description {
        font-size: 0.9rem !important;
        line-height: 1.5;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .cheat-features {
        margin-bottom: 1rem;
    }
    
    .feature-tag {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
        margin: 0.25rem 0.25rem 0.25rem 0 !important;
    }
    
    .cheat-games {
        margin-bottom: 1rem;
    }
    
    .game-tag {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.6rem !important;
        margin: 0.2rem 0.2rem 0.2rem 0 !important;
    }
    
    .cheat-price {
        margin-bottom: 1rem;
    }
    
    .price-amount {
        font-size: 1.5rem !important;
    }
    
    .price-period {
        font-size: 0.8rem !important;
    }
    
    .cheat-btn {
        padding: 1rem !important;
        font-size: 1rem !important;
        font-weight: 600;
        border-radius: 0.75rem;
    }
    
    /* Section Header Mobile */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    
    .mobile-sidebar {
        width: 300px;
        right: -320px;
    }
    
    [dir="rtl"] .mobile-sidebar {
        left: -320px;
    }

    /* Mobile Sidebar Responsive Adjustments */
    .menu-section {
        margin-bottom: 1.5rem;
        padding: 0 0.75rem;
    }

    .menu-section-title {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .sidebar-link {
        padding: 0.6rem 0.75rem;
        margin-bottom: 0.4rem;
    }

    .language-option {
        padding: 0.6rem 0.75rem;
    }


    .profile-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .sidebar-admin {
        padding: 0.6rem 0.75rem;
        margin-bottom: 0.4rem;
    }

    .sidebar-login {
        padding: 0.75rem;
    }

    .sidebar-footer-fixed {
        padding: 0.75rem 1rem;
    }

    .logout-btn {
        padding: 0.75rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-country-dropdown {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .country-dropdown,
    .language-switcher,
    .admin-btn,
    .nav-login {
        display: none;
    }
    
    .title-sub {
        font-size: 1.25rem;
    }
    
    .game-card,
    .account-card,
    .cheat-card {
        padding: 1rem;
    }
    
    .accounts-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 320px));
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Account Carousel Styles */
.account-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.account-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    border-radius: 1rem;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: rgba(139, 92, 246, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 0.5rem;
}

.carousel-control.next {
    right: 0.5rem;
}

.carousel-dots {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.3rem;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Performance Optimizations */
.game-card,
.account-card,
.cheat-card {
    will-change: transform;
}

.floating-cube {
    will-change: transform;
}

.cosmic-particles {
    will-change: transform;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.nav-link:focus,
.cta-btn:focus,
.option-item:focus,
.account-btn:focus,
.cheat-btn:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-purple: #a855f7;
        --accent-pink: #f472b6;
        --card-bg: #000;
    }
    
    .game-card,
    .account-card,
    .cheat-card {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-cube,
    .cosmic-particles {
        animation: none;
    }
}

/* Support Chat Widget */
.support-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Exo 2', sans-serif;
}

.chat-toggle-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    border: none;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

.chat-icon {
    width: 24px;
    height: 24px;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePulse 2s ease-in-out infinite;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: chatSlideUp 0.3s ease-out;
}

@keyframes chatSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-header-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.chat-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 2px;
}

.admin-message, .user-message {
    display: flex;
    gap: 0.5rem;
    animation: messageSlideIn 0.3s ease-out;
}

.user-message {
    flex-direction: row-reverse;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
}

.user-message .message-avatar {
    background: linear-gradient(135deg, var(--neon-blue), var(--primary-purple));
}

.message-content {
    max-width: 70%;
}

.user-message .message-content {
    text-align: right;
}

.message-text {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.75rem;
    border-radius: 1rem;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.user-message .message-text {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
}

.message-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.chat-input-container {
    padding: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.guest-info {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.guest-info input {
    flex: 1;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 0.5rem;
    color: #fff;
    font-size: 0.85rem;
}

.guest-info input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chat-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

#chatInput {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    color: #fff;
    font-size: 0.9rem;
    resize: none;
    min-height: 40px;
    max-height: 100px;
    font-family: inherit;
}

#chatInput::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#chatInput:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chat-send-btn svg {
    width: 16px;
    height: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: 400px;
        right: 20px;
    }
    
    .support-chat-widget {
        right: 20px;
        bottom: 20px;
    }
}

/* RTL Support for Mobile Country Dropdown */
[dir="rtl"] .mobile-country-dropdown-menu {
    right: auto;
    left: 0;
}