/* =========================================
   Premium Navigation (Glassmorphism)
   ========================================= */
.main-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: var(--glass-border);
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    min-width: 220px;
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(15px);
}

.dropdown-item {
    padding: 12px 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding-left: 20px;
}

.dropdown-item:hover::after {
    content: '›';
    color: var(--accent-primary);
}



/* =========================================
   Brand Page Navigation Enhancements
   ========================================= */

/* Ensure container is the positioning context */
.nav-container {
    position: relative;
}

/* PC: Centered Brand Logo */
.nav-brand-middle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 28px;
    /* Reduced Size */
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

.nav-brand-middle img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

@media (min-width: 1024px) {
    .nav-brand-middle {
        display: flex;
    }
}

/* Mobile: Scroll Pop-out Logo */
.mobile-brand-popout {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 8px 16px;
    border-radius: 0 0 15px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    z-index: 900;
    transition: top 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-brand-popout.visible {
    top: 80px;
}

.mobile-brand-popout img {
    height: 30px;
    /* Reduced Size */
    width: auto;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .mobile-brand-popout {
        display: none !important;
    }
}


/* Global Background Fix */
html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #050507 !important;
    /* Force deep dark base */
    background-image:
        radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 0% 50%, rgba(41, 52, 91, 0.25) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) !important;
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px !important;
    background-attachment: fixed !important;
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    padding-top: 80px;
    /* Preserve nav padding */
}

main {
    background: transparent !important;
    /* Ensure main doesn't block body */
}


/* =========================================
   Premium Footer
   ========================================= */
.main-footer {
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(20px);
    padding: 80px 0 30px;
    border-top: var(--glass-border);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Subtle glow in footer */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
    opacity: 0.5;
}

/* Footer Redesign Styles */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.5fr;
    gap: 30px;
    margin-bottom: 60px;
}

.brand-col {
    padding-right: 20px;
}

.footer-desc {
    color: var(--text-secondary);
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
    border: var(--glass-border);
}

.social-links a:hover {
    background: var(--accent-secondary);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--accent-primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter Styles */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: var(--glass-border);
    border-radius: var(--radius-pill);
    padding: 12px 20px;
    color: #fff;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-main);
    border: none;
    color: #000;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--gold-glow);
}

.payment-methods {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 1.8rem;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: var(--glass-border);
    color: #666;
    font-size: 0.85rem;
}

/* Mobile Footer Optimization */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .brand-col {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: left;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links a {
        justify-content: center;
        /* or flex-start if preferred */
        padding: 10px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
    }

    .footer-col h4 {
        margin-bottom: 20px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        width: 100%;
        border-radius: var(--radius-pill);
    }

    .payment-methods {
        justify-content: center;
        margin-top: 20px;
    }
}



/* =========================================
   Mobile Sidebar Styles
   ========================================= */
.mobile-menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    /* Hidden start */
    width: 300px;
    height: 100%;
    background: rgba(5, 5, 8, 0.98);
    /* Deep opaque dark */
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    /* Smooth eased slide */
    padding: 0;
    border-left: var(--glass-border);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
}

.menu-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.menu-close-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    flex: 1;
    /* Pushes footer down */
    overflow-y: auto;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 15px 25px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fff;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    border-left-color: var(--accent-primary);
    padding-left: 30px;
}

/* Mobile Dropdown Styles (Moved) */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Removed width: 100% to rely on parent flex stretch */
    cursor: pointer;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 10px;
    /* Reduced indentation to prevent overflow */
    background: rgba(0, 0, 0, 0.3);
    /* Darker background for contrast */
    border-left: 2px solid rgba(255, 215, 0, 0.1);
    /* Gold trace */
    margin-top: 2px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-dropdown.active .mobile-dropdown-toggle {
    color: #fff;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    border-left: 3px solid var(--accent-primary);
    padding-left: 30px;
    /* Match active state */
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-item {
    padding: 14px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.2s;
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item:hover {
    color: #fff;
    padding-left: 25px;
    background: rgba(255, 255, 255, 0.03);
}

.sidebar-footer {
    padding: 25px;
    border-top: var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}





/* Variables */
:root {
    /* Cyber-Luxury Color Palette */
    --bg-dark: #050507;
    /* Deep Void */
    --bg-card: rgba(25, 25, 35, 0.4);
    /* Glass base */
    --bg-card-hover: rgba(35, 35, 45, 0.6);

    --accent-primary: #FFD700;
    /* Cyber Gold */
    --accent-secondary: #b026ff;
    /* Neon Purple */
    --accent-glow: rgba(176, 38, 255, 0.5);
    --gold-glow: rgba(255, 215, 0, 0.4);

    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, #FFD700 0%, #ff9a00 100%);
    --gradient-purple: linear-gradient(135deg, #b026ff 0%, #7d12ff 100%);
    --gradient-dark: linear-gradient(180deg, rgba(20, 20, 25, 0) 0%, #050507 100%);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    /* Effects */
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --neon-shadow: 0 0 20px var(--accent-glow);
    --gold-shadow: 0 0 20px var(--gold-glow);
    --card-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
    --backdrop-blur: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(176, 38, 255, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 25%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background: var(--gradient-main);
    color: #121212;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.btn-primary {
    animation: pulse-gold 2s infinite;
}


/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    aspect-ratio: 1/1;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: pulse-glow 5s infinite alternate;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to bottom, #ffffff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.hero-highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    font-weight: 900;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}



/* Background Effects */
/* Background Effects */

.bonus-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* Standard property */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Brand Group Layout Styles */
.brand-group {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    border: var(--glass-border);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.brand-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(176, 38, 255, 0.03) 100%);
    pointer-events: none;
}

.brand-group:hover {
    border-color: rgba(176, 38, 255, 0.3);
    box-shadow: var(--neon-shadow), var(--card-shadow);
    transform: translateY(-5px);
}

.brand-header {
    padding: 20px 30px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border-bottom: var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo-placeholder {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 5px;
}

.brand-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bonus-list {
    padding: 5px 0;
}


.bonus-row {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    gap: 25px;
}

.bonus-row:last-child {
    border-bottom: none;
}

.bonus-banner {
    flex: 0 0 280px;
    height: 130px;
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    border: var(--glass-border);
    display: block;
    padding: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.bonus-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Icons removed */

.bonus-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bonus-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.bonus-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}


.bonus-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

/* Premium Glass Button for 'More Info' */
.btn-info {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    border: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Luxury Gold Gradient for 'Join Now' */
.btn-join {
    background: var(--gradient-main);
    color: #000;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #fff 50%, #FFD700 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.btn-join:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-join:hover::before {
    opacity: 1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {

    /* Navigation Adjustments */
    .main-nav {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        padding: 10px 0;
        background: rgba(5, 5, 7, 0.95);
        border: none;
        border-bottom: var(--glass-border);
    }

    .nav-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.8rem;
        color: var(--accent-primary);
        padding: 5px;
    }

    /* Footer Adjustments */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .brand-col,
    .newsletter-col {
        padding: 0;
    }

    /* Bonus Card Adjustments - Compact Horizontal Layout */
    .brand-header {
        padding: 12px 15px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .bonus-row {
        flex-direction: row;
        /* Horizontal layout */
        align-items: center;
        padding: 12px;
        gap: 15px;
    }

    .bonus-banner {
        flex: 0 0 85px;
        /* Fixed Thumbnail Size */
        width: 85px;
        height: 85px;
        border-radius: 15px;
        font-size: 1.5rem;
    }

    .bonus-content-wrapper {
        width: auto;
        flex: 1;
        /* Take remaining space */
        padding: 0;
        text-align: left;
    }

    .bonus-title {
        font-size: 1rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .bonus-desc {
        font-size: 0.8rem;
        padding: 0;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* Limit to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #aaa;
    }

    .bonus-actions {
        flex-direction: row;
        width: 100%;
        gap: 8px;
        justify-content: flex-start;
    }

    .btn-info,
    .btn-join {
        flex: 1;
        padding: 8px 10px;
        /* Slimmer buttons */
        font-size: 0.75rem;
        border-radius: 30px;
    }


}

.bonus-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}


.bonus-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

/* Premium Glass Button for 'More Info' */
.btn-info {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    border: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Luxury Gold Gradient for 'Join Now' */
.btn-join {
    background: var(--gradient-main);
    color: #000;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #fff 50%, #FFD700 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.btn-join:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-join:hover::before {
    opacity: 1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {

    /* Navigation Adjustments */
    .main-nav {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        padding: 10px 0;
        background: rgba(5, 5, 7, 0.95);
        border: none;
        border-bottom: var(--glass-border);
    }

    .nav-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.8rem;
        color: var(--accent-primary);
        padding: 5px;
    }

    /* Footer Adjustments */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .brand-col,
    .newsletter-col {
        padding: 0;
    }

    /* Bonus Card Adjustments - Compact Horizontal Layout */
    .brand-header {
        padding: 12px 15px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .bonus-row {
        flex-direction: row;
        /* Horizontal layout */
        align-items: center;
        padding: 12px;
        gap: 15px;
    }

    .bonus-banner {
        flex: 0 0 85px;
        /* Fixed Thumbnail Size */
        width: 85px;
        height: 85px;
        border-radius: 15px;
        font-size: 1.5rem;
    }

    .bonus-content-wrapper {
        width: auto;
        flex: 1;
        /* Take remaining space */
        padding: 0;
        text-align: left;
    }

    .bonus-title {
        font-size: 1rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .bonus-desc {
        font-size: 0.8rem;
        padding: 0;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* Limit to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #aaa;
    }

    .bonus-actions {
        flex-direction: row;
        width: 100%;
        gap: 8px;
        justify-content: flex-start;
    }

    .btn-info,
    .btn-join {
        flex: 1;
        padding: 8px 10px;
        /* Slimmer buttons */
        font-size: 0.75rem;
        border-radius: 30px;
    }

    .btn-join {
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
        /* Reduced glow on mobile */
    }
}

/* Bonus Info Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-primary);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0;
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-info-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.modal-info-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.modal-info-list li i {
    color: var(--accent-secondary);
    width: 20px;
    margin-right: 10px;
}

/* =========================================
   Redesigned Brand Cards (Premium)
   ========================================= */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.brand-card {
    background: linear-gradient(145deg, #1a1a1e, #0d0d10);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

/* Decorative top highlight/glow */
.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.brand-card:hover::before {
    opacity: 1;
}

/* Logo Section */
.card-logo-section {
    padding: 25px 25px 15px;
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.05), transparent 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-box {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    padding: 0;
}

.brand-card:hover .logo-box {
    transform: scale(1.1);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.card-brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rating {
    font-size: 0.95rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Content Section */
.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.card-features li {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    padding-left: 2px;
}

/* Custom Gold Checkmark */
.card-features li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ffd700;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 0.85rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* =========================================
   Responsive Hero Section
   ========================================= */
.hero-section {
    padding: 100px 0 20px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 20px;
        /* Reduced padding for mobile */
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 20px;
        /* Reduced padding for mobile */
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Gold Button */
.btn-register-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #b8860b 0%, #ffd700 50%, #daa520 100%);
    color: #000;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    /* Pill shape */
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-register-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #d4af37 0%, #ffed4a 50%, #b8860b 100%);
}

.btn-register-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: 0.5s;
}

.btn-register-gold:hover::after {
    left: 100%;
}

.register-badge {
    background: #000;
    color: #ffd700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-left: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: none;
    /* Removed spin */
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .brands-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .brand-card {
        margin-bottom: 20px;
    }

    .card-logo-section {
        padding: 20px;
    }

    .logo-box {
        width: 70px;
        height: 70px;
    }
}

/* =========================================
   SEO Content Styles
   ========================================= */
#seo-content article a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-decoration-color: rgba(255, 215, 0, 0.3);
    text-underline-offset: 3px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#seo-content article a:hover {
    color: #fff;
    text-decoration-color: var(--accent-primary);
    text-shadow: 0 0 10px var(--gold-glow);
}