div:where([style*="background-color:#ffffd2"]) {
    display: none;
}

p:has(a[href="https://www.whmcs.com/"]) {
  display: none;
}

/* Custom properties for easier maintenance */
:root {
    --primary-color: #3b82f6;
    --dark-blue: #1e40af;
    --background-color: #0a0a0a;
    --text-color: #ffffff;
    --muted-text-color: #a0a0a0;
    --card-background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8));
    --card-background-standard: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.9));
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Orbitron', 'Rajdhani', sans-serif;
    
    /* Standardized title styling */
    --title-gradient: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #ffffff 100%);
    --title-text-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    
    /* Standardized Background System */
    --bg-base-dark: #0a0a0a;
    --bg-base-medium: #111111;
    --bg-base-light: #1a1a1a;
    --bg-accent-dark: #0f0f0f;
    --bg-accent-medium: #1a1a2e;
    --bg-accent-light: #1a202c;
    
    /* Background Patterns */
    --bg-primary: var(--bg-base-dark);
    --bg-secondary: linear-gradient(135deg, var(--bg-base-dark) 0%, var(--bg-base-medium) 50%, var(--bg-base-dark) 100%);
    --bg-tertiary: linear-gradient(135deg, var(--bg-accent-dark) 0%, var(--bg-accent-medium) 50%, var(--bg-accent-dark) 100%);
    --bg-quaternary: linear-gradient(135deg, var(--bg-accent-dark) 0%, var(--bg-accent-light) 50%, var(--bg-accent-dark) 100%);
    
    /* Overlay Effects */
    --overlay-glow-primary: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    --overlay-glow-secondary: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    --overlay-glow-subtle: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    
    /* Standardized Font Sizes */
    --font-size-hero: 3.5rem;        /* 56px - Main hero titles */
    --font-size-h1: 2.8rem;          /* 44.8px - Section titles */
    --font-size-h2: 2.2rem;          /* 35.2px - Sub-section titles */
    --font-size-h3: 1.6rem;          /* 25.6px - Card titles */
    --font-size-h4: 1.3rem;          /* 20.8px - Small headings */
    --font-size-h5: 1.1rem;          /* 17.6px - Minor headings */
    --font-size-h6: 1rem;            /* 16px - Smallest headings */
    
    /* Body Text Sizes */
    --font-size-body-large: 1.125rem; /* 18px - Large body text */
    --font-size-body: 1rem;           /* 16px - Standard body text */
    --font-size-body-small: 0.9rem;   /* 14.4px - Small body text */
    --font-size-caption: 0.8rem;      /* 12.8px - Captions/labels */
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

a:-webkit-any-link:focus-visible {
    outline: 0;
    border: 0;
    box-shadow: none;
}

button:focus:not(:focus-visible) {
    outline: 0;
    border: 0;
    box-shadow: none;
}

.navbar-nav {
    text-align: center;
}

#Secondary_Navbar-Account .dropdown-menu {
    min-width: auto;
}

header .navbar {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(10, 10, 10, 0.5)) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-top: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.1);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar:hover::before {
    opacity: 1;
}

.header-nav-logo {
    width: 180px;
}

.navbar-nav .nav-item {
    margin-right: 30px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--muted-text-color) !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.navbar-nav .dropdown .dropdown-menu {
    transform-origin: top center;
}

.dropdown-menu {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.08);
    padding: 1rem 0;
    margin-top: 0.75rem;
    min-width: 280px;
    position: relative;
    opacity: 0;
    transform: translateY(-12px) scale(0.95);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(59, 130, 246, 0.01));
    border-radius: 16px;
    z-index: -1;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(10, 10, 10, 0.98);
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.3));
}

.dropdown-item {
    padding: 0;
    background: transparent;
    border: none;
    margin: 0;
    position: relative;
}

.dropdown-item:hover {
    background: transparent;
}

.dropdown-item:first-child .dropdown-link {
    margin-top: 0.25rem;
}

.dropdown-item:last-child .dropdown-link {
    margin-bottom: 0.25rem;
}

.dropdown-link {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #c0c0c0 !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 10px;
    margin: 0.125rem 1rem;
    position: relative;
    letter-spacing: 0.3px;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), rgba(59, 130, 246, 0.8));
    transition: width 0.3s ease;
    border-radius: 10px 0 0 10px;
}

.dropdown-link::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    color: #ffffff !important;
    transform: translateX(6px);
    text-decoration: none !important;
}

.dropdown-divider {
    height: 1px;
    margin: 0.5rem 1rem;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    border: none;
    position: relative;
}

.dropdown-divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 0.4rem;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown:hover .dropdown-toggle {
    color: var(--primary-color) !important;
}

.dropdown-menu .dropdown-item {
    opacity: 0;
    transform: translateX(-12px) translateY(8px);
    animation: none;
    padding: 5px !important;
}

.dropdown:hover .dropdown-menu .dropdown-item {
    animation: slideInDropdown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.dropdown:hover .dropdown-menu .dropdown-item:nth-child(1) { animation-delay: 0.05s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(2) { animation-delay: 0.08s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(3) { animation-delay: 0.11s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(4) { animation-delay: 0.14s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(5) { animation-delay: 0.17s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(6) { animation-delay: 0.20s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(7) { animation-delay: 0.23s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(8) { animation-delay: 0.26s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(9) { animation-delay: 0.29s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(10) { animation-delay: 0.32s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(11) { animation-delay: 0.35s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(12) { animation-delay: 0.38s; }

@keyframes slideInDropdown {
    0% {
        opacity: 0;
        transform: translateX(-12px) translateY(8px) scale(0.95);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-2px) translateY(2px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

.dropdown:hover .dropdown-menu {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.12),
        0 0 20px rgba(59, 130, 246, 0.1);
}

.dropdown-menu[data-bs-popper] {
    margin-top: 0.75rem;
}

.dropdown:hover .dropdown-toggle {
    color: var(--primary-color) !important;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

.dropdown-toggle {
    position: relative;
    transition: all 0.3s ease;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dropdown:hover .dropdown-toggle::before {
    opacity: 1;
}

@media (max-width: 991px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: none;
        opacity: 0;
        transform: none;
        visibility: hidden;
    }
    
    .dropdown-menu.show {
        display: block;
        opacity: 1;
        transform: none;
        visibility: visible;
        position: static;
        margin-top: 0.75rem;
        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.4),
            0 4px 15px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, rgba(15, 15, 15, 0.98), rgba(25, 25, 25, 0.98));
        border: 1px solid rgba(59, 130, 246, 0.2);
        border-radius: 12px;
        min-width: 100%;
    }
    
    .dropdown-menu.show::after {
        display: none;
    }
    
    .dropdown-menu.show .dropdown-item {
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .dropdown-menu.show .dropdown-link {
        margin: 0.125rem 0.75rem;
        padding: 0.75rem 1.25rem;
        border-radius: 8px;
    }
    
    .dropdown-menu.show .dropdown-link:hover {
        transform: none;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.06));
    }
    
    .dropdown-menu.show .dropdown-divider {
        margin: 0.75rem 1.25rem;
    }
}

.footer {
    background: var(--bg-quaternary);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-glow-subtle);
    opacity: 0.8;
}

.footer-brand {
    position: relative;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-nav-logo {
    width: 12em;
    height: auto;
}

.footer-description {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: var(--font-size-body);
    margin-bottom: 2rem;
    font-weight: var(--font-weight-normal);
    max-width: 280px;
    font-family: var(--font-primary);
}

.footer-company-info {
    margin-top: 2rem;
}

.footer-copyright {
    color: #ffffff;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-body-small);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.footer-company-details,
.footer-org-number {
    color: #8a8a8a;
    font-size: var(--font-size-body-small);
    margin-bottom: 0.25rem;
    font-weight: var(--font-weight-normal);
    font-family: var(--font-primary);
}

.footer-section {
    position: relative;
    margin-top: 3rem;
}

.footer-section-title {
    font-family: var(--font-display);
    font-size: var(--font-size-h6);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: var(--font-size-body-small);
    font-weight: var(--font-weight-normal);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-family: var(--font-primary);
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-view-all {
    color: var(--primary-color) !important;
    font-weight: 500 !important;
}

.footer-view-all:hover {
    color: #ffffff !important;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-tagline {
    text-align: center;
}

.footer-tagline p {
    color: #8a8a8a;
    font-size: var(--font-size-body-small);
    font-weight: var(--font-weight-normal);
    margin: 0;
    line-height: 1.6;
    font-style: italic;
    font-family: var(--font-primary);
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-brand-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .footer-description {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .footer-tagline p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-section-title::after {
        content: none;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-company-info {
        text-align: center;
    }
    
    .footer-section-title {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}
/* Standardized Button System */
/* Base Primary Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #06b6d4) !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15) !important;
    border: none !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    position: relative !important;
    overflow: hidden !important;
    font-family: var(--font-primary) !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25) !important;
    background: linear-gradient(135deg, #1e40af, #2563eb, #0891b2) !important;
    color: #ffffff !important;
}

.btn-primary:focus,
.btn-primary:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.2) !important;
    background: linear-gradient(135deg, #1e40af, #2563eb, #0891b2) !important;
    color: #ffffff !important;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Small Primary Button Variant for Navigation */
.btn-primary-sm {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #06b6d4) !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.12) !important;
    border: none !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
    position: relative !important;
    overflow: hidden !important;
    font-family: var(--font-primary) !important;
}

.btn-primary-sm:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(59, 130, 246, 0.2) !important;
    background: linear-gradient(135deg, #1e40af, #2563eb, #0891b2) !important;
    color: #ffffff !important;
}

.btn-primary-sm:focus,
.btn-primary-sm:active {
    transform: translateY(-0.5px) !important;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.15) !important;
    background: linear-gradient(135deg, #1e40af, #2563eb, #0891b2) !important;
    color: #ffffff !important;
}

.btn-primary-sm::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.4s ease;
}

.btn-primary-sm:hover::before {
    left: 100%;
}

/* Large Primary Button (CTA) */
.btn-primary-lg,
.btn-cta {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #06b6d4) !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15) !important;
    border: none !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    position: relative !important;
    overflow: hidden !important;
    font-family: var(--font-primary) !important;
    margin-top: 1rem;
}

.btn-primary-lg:hover,
.btn-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25) !important;
    background: linear-gradient(135deg, #1e40af, #2563eb, #0891b2) !important;
    color: #ffffff !important;
}

.btn-primary-lg:focus,
.btn-primary-lg:active,
.btn-cta:focus,
.btn-cta:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.2) !important;
    background: linear-gradient(135deg, #1e40af, #2563eb, #0891b2) !important;
    color: #ffffff !important;
}

.btn-primary-lg::before,
.btn-cta::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;
}

.btn-primary-lg:hover::before,
.btn-cta:hover::before {
    left: 100%;
}

/* Secondary Button Styles */
.btn-secondary {
    background: transparent !important;
    color: var(--text-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    letter-spacing: 0.3px !important;
    font-family: var(--font-primary) !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: var(--text-color) !important;
    transform: translateY(-1px) !important;
}

.btn-secondary:focus,
.btn-secondary:active {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: var(--text-color) !important;
}

/* Small Secondary Button Variant for Navigation */
.btn-secondary-sm {
    background: transparent !important;
    color: var(--text-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    letter-spacing: 0.3px !important;
    font-family: var(--font-primary) !important;
}

.btn-secondary-sm:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: var(--text-color) !important;
    transform: translateY(-1px) !important;
}

.btn-secondary-sm:focus,
.btn-secondary-sm:active {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: var(--text-color) !important;
}

/* Additional Button Utility Classes */
/* Extra Small Primary Button for Compact Spaces */
.btn-primary-xs {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #06b6d4) !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    box-shadow: 0 1px 4px rgba(59, 130, 246, 0.1) !important;
    border: none !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    letter-spacing: 0.2px !important;
    text-transform: none !important;
    position: relative !important;
    overflow: hidden !important;
    font-family: var(--font-primary) !important;
}

.btn-primary-xs:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.15) !important;
    background: linear-gradient(135deg, #1e40af, #2563eb, #0891b2) !important;
    color: #ffffff !important;
}

.btn-primary-xs:focus,
.btn-primary-xs:active {
    transform: translateY(-0.5px) !important;
    box-shadow: 0 1px 4px rgba(59, 130, 246, 0.12) !important;
    background: linear-gradient(135deg, #1e40af, #2563eb, #0891b2) !important;
    color: #ffffff !important;
}

/* Button Group Styles */
.btn-group .btn-primary,
.btn-group .btn-primary-sm,
.btn-group .btn-primary-lg,
.btn-group .btn-primary-xs {
    margin-right: 0.5rem;
}

.btn-group .btn-primary:last-child,
.btn-group .btn-primary-sm:last-child,
.btn-group .btn-primary-lg:last-child,
.btn-group .btn-primary-xs:last-child {
    margin-right: 0;
}

/* Disabled Button States */
.btn-primary:disabled,
.btn-primary-sm:disabled,
.btn-primary-lg:disabled,
.btn-primary-xs:disabled,
.btn-cta:disabled,
.arsenal-cta-button:disabled {
    background: rgba(59, 130, 246, 0.3) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-primary:disabled:hover,
.btn-primary-sm:disabled:hover,
.btn-primary-lg:disabled:hover,
.btn-primary-xs:disabled:hover,
.btn-cta:disabled:hover,
.arsenal-cta-button:disabled:hover {
    background: rgba(59, 130, 246, 0.3) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-secondary:disabled {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.btn-secondary:disabled:hover {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    transform: none !important;
}

/* Loading State for Buttons */
.btn-loading {
    position: relative !important;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: btn-spin 1s linear infinite;
}

@keyframes btn-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Button Focus Styles for Accessibility */
.btn-primary:focus-visible,
.btn-primary-sm:focus-visible,
.btn-primary-lg:focus-visible,
.btn-primary-xs:focus-visible,
.btn-cta:focus-visible,
.arsenal-cta-button:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.5) !important;
    outline-offset: 2px !important;
}

.btn-secondary:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5) !important;
    outline-offset: 2px !important;
}
/* Mobile Sidebar Menu Styles - Bootstrap 4 Collapse */
#mobileMenu {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.98));
    backdrop-filter: blur(20px);
    border: none;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    margin-top: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
}

.mobile-menu-header {
    /* Match navbar background and styling exactly */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(10, 10, 10, 0.5)) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    border-top: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.1);
    /* Use exact pixel values to match navbar padding */
    padding: 12px 24px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Ensure same font-size context as navbar */
    font-size: 16px;
}

.mobile-menu-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
    border-radius: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-header:hover::before {
    opacity: 1;
}

.mobile-menu-logo {
    /* Use exact pixel values to match navbar logo size */
    width: 180px;
    height: auto;
}

.mobile-menu-header .close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    color: #fff;
    font-size: 1.5rem;
    text-shadow: none;
}

.mobile-menu-header .close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: scale(1.05);
}

.mobile-menu-body {
    padding: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(15, 15, 15, 0.95));
    border-radius: 0 0 15px 15px;
}

.mobile-nav {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    gap: 1rem;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), rgba(59, 130, 246, 0.8));
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.08);
    transform: translateX(4px);
}

.mobile-nav-link:hover::before {
    width: 4px;
}

.mobile-nav-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover .mobile-nav-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.mobile-nav-arrow {
    margin-left: auto;
    color: #666;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.mobile-nav-toggle.active .mobile-nav-arrow {
    transform: rotate(90deg);
    color: var(--primary-color);
}

.mobile-nav-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 2px solid transparent;
}

.mobile-nav-submenu.active {
    max-height: 500px;
    border-left-color: rgba(59, 130, 246, 0.3);
}

.mobile-nav-sublink {
    display: block;
    padding: 1rem 1.5rem 1rem 3rem;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.mobile-nav-sublink:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(4px);
}

.mobile-nav-sublink:hover::before {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.3);
}

.mobile-nav-actions {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(26, 26, 26, 0.8));
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: auto;
}

.btn-mobile-full {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    font-family: var(--font-primary) !important;
    letter-spacing: 0.3px !important;
}

.btn-mobile-full.btn-secondary {
    background: transparent !important;
    color: #c0c0c0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-mobile-full.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px);
}

.btn-mobile-full.btn-secondary:focus,
.btn-mobile-full.btn-secondary:active {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.btn-mobile-full.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #06b6d4) !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15) !important;
    color: #ffffff !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-mobile-full.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb, #0891b2) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25) !important;
    color: #ffffff !important;
}

.btn-mobile-full.btn-primary:focus,
.btn-mobile-full.btn-primary:active {
    background: linear-gradient(135deg, #1e40af, #2563eb, #0891b2) !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.2) !important;
    color: #ffffff !important;
}

.btn-mobile-full.btn-primary::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.4s ease;
}

.btn-mobile-full.btn-primary:hover::before {
    left: 100%;
}

.dropdown-menu.dropdown-menu-right.dropdown-menu-media {
    z-index: 9999;
}

/* Bootstrap 4 Collapse Animation */
#mobileMenu.collapsing {
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#mobileMenu.show {
    display: block !important;
}

.navbar-toggler {
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus-visible {
    outline: 0;
}

.navbar-toggler:focus {
    outline: 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    header .navbar {
        padding: 12px 24px;
    }
    
    .header-nav-logo {
        width: 180px;
    }
}

@media (max-width: 576px) {
    #mobileMenu {
        margin: 0;
        border-radius: 0;
    }
    
    .mobile-menu-header {
        /* Use exact pixel values to match mobile navbar padding */
        padding: 15px 24px;
        border-radius: 0;
    }
    
    .mobile-menu-logo {
        /* Use exact pixel values to match mobile navbar logo size */
        width: 180px;
    }
    
    .mobile-nav-link {
        padding: 16px 20px;
        font-size: 15.2px;
    }
    
    .mobile-nav-sublink {
        padding: 14px 20px 14px 40px;
        font-size: 13.6px;
    }
    
    .mobile-nav-actions {
        padding: 24px 20px;
    }
    
    .mobile-menu-body {
        border-radius: 0;
    }
}

.mobile-nav-link,
.mobile-nav-sublink {
    scroll-behavior: smooth;
}

.mobile-nav-item.active .mobile-nav-link {
    background: rgba(59, 130, 246, 0.12);
    color: #ffffff;
}

.mobile-nav-item.active .mobile-nav-link::before {
    width: 4px;
}

.mobile-nav-item.active .mobile-nav-icon {
    color: var(--primary-color);
}

/* Hide main navbar when mobile menu is visible */
@media (max-width: 991px) {
    .navbar.fixed-top {
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    /* Hide navbar when mobile menu is expanded */
    #mobileMenu.show ~ .navbar.fixed-top,
    #mobileMenu.collapsing ~ .navbar.fixed-top {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* Make mobile menu sticky */
#mobileMenu {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
    max-height: 100vh;
    margin-top: 0;
}

#mobileMenu.show {
    display: block !important;
}

/* Adjust mobile menu positioning */
@media (max-width: 991px) {
    #mobileMenu {
        margin: 0;
        border-radius: 0;
    }
    
    .mobile-menu-header {
        border-radius: 0;
    }
    
    .mobile-menu-body {
        border-radius: 0;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

/* Discount Offer CSS */

.discount-banner {
    background: linear-gradient(135deg, #0a0e1a, #1c1640, #342155);
    padding: 12px 22px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    position: relative;
    z-index: 20;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.copy-code {
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.code-box {
    background: linear-gradient(135deg, #7b8cc2, #6365bc, #6c8dd6);
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 18px rgba(150, 100, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: auto;
    width: auto;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-left: 10px;
    cursor: pointer;
}


.code-box:hover {
    background: linear-gradient(135deg, #8ea0d9, #7578d0, #7ca2ea);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.code-box i {
    margin-left: 5px;
    font-size: 1em;
}


@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


.code-text.fade-out {
    animation: fadeOut 0.3s forwards;
}

.code-text.fade-in {
    animation: fadeIn 0.3s forwards;
}



#discountPopup {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}


#discountPopup.fade-out {
    animation: fadeOut 0.5s forwards;
}


#discountPopup .popup-content {
    position: fixed;
    width: 600px;
    height: 720px;
    background: url('/templates/elitehost/images/discount/discount-banner.webp') no-repeat center center;
    background-size: cover;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), 0 0 10px 4px rgba(123, 97, 255, 0.9);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
    text-align: center;
	padding-bottom: 50px;
}


@media only screen and (max-width: 768px) {
    #discountPopup .popup-content {
        width: 100%;
        height: auto;
        transform: scale(0.8);
    }

    #discountPopup .popup-content h1 {
        font-size: 2em;
    }

    #discountPopup .popup-content .offer-line1 {
        font-size: 3em;
    }

    #discountPopup .popup-content .offer-line2 {
        font-size: 1.8em;
    }

    #discountPopup .popup-content .btn {
        padding: 12px 25px;
        font-size: 1.2em;
    }
}


#discountPopup .popup-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    margin: 0;
	padding-top: 400px;
    text-align: center;
    color: #ffffff;
}


#discountPopup .popup-content .offer-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    line-height: 1.2;
}


#discountPopup .popup-content .offer-text .offer-line1 {
    font-family: 'Poppins', sans-serif;
    font-size: 5em;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    margin: 0;
    display: inline-flex;
    justify-content: center;
    align-items: baseline;
}


#discountPopup .popup-content .offer-text .offer-line1 span.get-text {
    font-size: 0.6em;
    font-weight: 700;
    margin-right: 20px;
	position: relative;
	top: -25px;
}


#discountPopup .popup-content .offer-text .offer-line2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4em;
    font-weight: 700;
    color: #ffffff;
}
 
#discountPopup .popup-content .offer-text .offer-line2-no {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #ffffff;
}



#discountPopup .popup-content .btn {
    background: #ffffff;
    color: #4b00b8;
    padding: 25px 40px;
    border-radius: 25px;
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    min-width: 250px;
    height: auto;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}


#discountPopup .popup-content .btn.copied #codeText {
    text-align: center;
    margin-left: 0;
}

#discountPopup .popup-content .btn span {
    transition: opacity 0.3s ease;
}

#discountPopup .popup-content .btn #copyIcon {
    margin-left: 10px;
    font-size: 1.2em;
    opacity: 1;
    transition: opacity 0.3s ease;
}


#discountPopup .popup-content .btn span.hidden {
    opacity: 0;
}


#discountPopup .popup-content .btn.copied #copyIcon {
    opacity: 0;
    width: 0;
    margin-left: 0;
}

#discountPopup .popup-content .btn:hover {
    transform: scale(1.05);
    background: #eee;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}



#discountPopup .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

#discountPopUP .codeText {
	margin-left:10px;
}

/* Elite Modal Styles for modalChooseLanguage - Compact Premium Design */
.elite-modal {
    background: transparent !important;
    border: none !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    position: relative !important;
    max-width: 600px !important;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.8),
        0 16px 32px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    margin: 0 auto;
}

.elite-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.98) 0%,
        rgba(15, 15, 20, 0.98) 25%,
        rgba(20, 20, 30, 0.98) 50%,
        rgba(15, 15, 20, 0.98) 75%,
        rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(40px) saturate(1.2);
    -webkit-backdrop-filter: blur(40px) saturate(1.2);
    z-index: -1;
}

.elite-modal-backdrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top,
        rgba(59, 130, 246, 0.08) 0%,
        rgba(59, 130, 246, 0.04) 40%,
        transparent 70%);
    opacity: 0.8;
}

.elite-modal-header {
    background: transparent !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15) !important;
    padding: 1.25rem 1.75rem 1rem !important;
    position: relative;
    border-radius: 0 !important;
}

.elite-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.3) 20%,
        rgba(59, 130, 246, 0.6) 50%,
        rgba(59, 130, 246, 0.3) 80%,
        transparent 100%);
}

.elite-modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.elite-modal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 8px 16px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.elite-modal-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 16px;
}

.elite-modal-icon i {
    color: #ffffff;
    font-size: 1.5rem;
    z-index: 1;
    position: relative;
}

.elite-modal-title-content {
    flex: 1;
}

.elite-modal-title {
    color: #ffffff !important;
    font-family: var(--font-display) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin: 0 0 0.25rem 0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.elite-modal-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: var(--font-primary) !important;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    margin: 0 !important;
    line-height: 1.4;
}

.elite-modal-close {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.elite-modal-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.elite-modal-close:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.elite-modal-close:hover::before {
    opacity: 1;
}

.elite-modal-body {
    padding: 1.25rem 1.75rem !important;
    background: transparent !important;
}

.elite-section {
    margin-bottom: 1rem;
}

.elite-section:last-child {
    margin-bottom: 0;
}

.elite-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.elite-section-title {
    color: #ffffff !important;
    font-family: var(--font-display) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin: 0 !important;
    white-space: nowrap;
}

.elite-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(59, 130, 246, 0.6) 0%,
        rgba(59, 130, 246, 0.2) 50%,
        transparent 100%);
}

.elite-options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.elite-option {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.elite-option-content {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    position: relative;
    z-index: 2;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.elite-option-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.15) 0%,
        rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.elite-option:hover .elite-option-content {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(59, 130, 246, 0.2);
}

.elite-option:hover .elite-option-glow {
    opacity: 1;
}

.elite-option.active .elite-option-content {
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.12) 0%,
        rgba(59, 130, 246, 0.06) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.elite-option.active .elite-option-glow {
    opacity: 1;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(59, 130, 246, 0.1) 100%);
}

.elite-option-flag,
.elite-option-currency {
    width: 32px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.elite-currency-symbol {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.elite-option-text {
    flex: 1;
}

.elite-option-name {
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
}

.elite-option-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.elite-option-check i {
    color: #ffffff;
    font-size: 0.75rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.elite-option.active .elite-option-check {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.elite-option.active .elite-option-check i {
    opacity: 1;
    transform: scale(1);
}

.elite-modal-footer {
    background: transparent !important;
    border-top: 1px solid rgba(59, 130, 246, 0.15) !important;
    padding: 1rem 1.75rem 1.25rem !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 1rem !important;
    position: relative;
}

.elite-modal-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.3) 20%,
        rgba(59, 130, 246, 0.6) 50%,
        rgba(59, 130, 246, 0.3) 80%,
        transparent 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .elite-modal {
        max-width: 95% !important;
        margin: 1rem auto !important;
    }
    
    .elite-modal-header,
    .elite-modal-body,
    .elite-modal-footer {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .elite-options-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .elite-modal-footer {
        flex-direction: column-reverse !important;
        gap: 0.75rem !important;
    }
    
    .elite-modal-footer .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .elite-modal {
        border-radius: 16px !important;
    }
    
    .elite-modal-header {
        padding: 1.5rem 1.25rem 1rem !important;
    }
    
    .elite-modal-body {
        padding: 1.5rem 1.25rem !important;
    }
    
    .elite-modal-footer {
        padding: 1rem 1.25rem 1.5rem !important;
    }
    
    .elite-modal-title-wrapper {
        gap: 1rem;
    }
    
    .elite-modal-icon {
        width: 48px;
        height: 48px;
    }
    
    .elite-modal-title {
        font-size: 1.5rem !important;
    }
    
    .elite-option-content {
        padding: 1rem 1.25rem !important;
    }
}

/* Enhanced Animation */
.modal.fade .elite-modal {
    transform: scale(0.9) translateY(-30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal.show .elite-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Focus and Accessibility */
.elite-option:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.6) !important;
    outline-offset: 2px !important;
}

.elite-modal-close:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.6) !important;
    outline-offset: 2px !important;
}

/* JavaScript interaction styles */
.elite-option[data-value] {
    cursor: pointer;
}

.elite-option[data-value]:active {
    transform: scale(0.98);
}
/* Elite Modal JavaScript Integration and Enhanced Interactions */
.elite-modal .elite-option {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.elite-modal .elite-option:hover {
    transform: translateY(-1px);
}

.elite-modal .elite-option.selecting {
    transform: scale(0.98);
}

.elite-modal .elite-option.selecting .elite-option-content {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(59, 130, 246, 0.1) 100%);
}

/* Enhanced Modal Backdrop Animation */
.modal.fade .modal-backdrop {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.show .modal-backdrop {
    opacity: 0.8;
}

/* Smooth scrollbar for modal if needed */
.elite-modal-body::-webkit-scrollbar {
    width: 6px;
}

.elite-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.elite-modal-body::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 3px;
}

.elite-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.5);
}