        :root {
            --bg-dark: #0a0512;
            --bg-medium: #110a1f;
            --bg-card: #1a1028;
            --primary-gold: #ffc857;
            --primary-hover: #ffd97a;
            --accent-purple: #9b4dff;
            --accent-pink: #ff4d8d;
            --text-main: #f8f4ff;
            --text-muted: #a8a0b8;
            --border-color: rgba(155, 77, 255, 0.25);
            --gradient-gold: linear-gradient(135deg, #ffc857 0%, #ff9f43 100%);
            --gradient-hero: linear-gradient(180deg, rgba(155, 77, 255, 0.15) 0%, transparent 60%);
            --glow-gold: 0 0 30px rgba(255, 200, 87, 0.4);
            --glow-purple: 0 0 30px rgba(155, 77, 255, 0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }
        
        /* Animated Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse 80% 50% at 20% 30%, rgba(155, 77, 255, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 70%, rgba(255, 77, 141, 0.06) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        /* Sidebar */
        .sidebar {
            position: fixed;
            left: 0;
            top: 0;
            width: 260px;
            height: 100vh;
            background: linear-gradient(180deg, var(--bg-medium) 0%, var(--bg-dark) 100%);
            border-right: 1px solid var(--border-color);
            z-index: 1001;
            overflow-y: auto;
            padding-bottom: 80px;
            transition: transform 0.3s ease;
        }
        
        .sidebar-logo {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
        }
        
        .sidebar-logo img {
            max-height: 50px;
            border-radius: 8px;
        }
        
        .logo-svg {
            height: 45px;
            width: auto;
        }
        
        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        
        .close-menu-btn {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--text-muted);
        }
        
        .sidebar-cta-box {
            padding: 20px;
        }
        
        .sidebar-massive-cta {
            display: block;
            width: 100%;
            padding: 14px 20px;
            background: var(--gradient-gold);
            color: #0a0512;
            font-weight: 700;
            text-align: center;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: var(--glow-gold);
        }
        
        .sidebar-massive-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 35px rgba(255, 200, 87, 0.5);
        }
        
        .menu-section {
            padding: 15px 20px 8px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--accent-purple);
            letter-spacing: 1.5px;
        }
        
        .sidebar-nav {
            list-style: none;
        }
        
        .sidebar-nav li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: var(--text-muted);
            font-weight: 500;
            transition: all 0.25s ease;
            border-left: 3px solid transparent;
        }
        
        .sidebar-nav li a:hover {
            background: rgba(155, 77, 255, 0.1);
            color: var(--text-main);
            border-left-color: var(--primary-gold);
        }
        
        .sidebar-nav li a i {
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
        
        /* Main Content */
        .main-content {
            margin-left: 260px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        /* Top Header */
        .top-header {
            background: rgba(10, 5, 18, 0.95);
            backdrop-filter: blur(12px);
            height: 65px;
            padding: 0 5%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-color);
            gap: 20px;
        }
        
        .mobile-menu-btn {
            display: none;
            color: var(--text-main);
            font-size: 26px;
            cursor: pointer;
        }
        
        .top-nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-right: auto;
        }
        
        .top-nav-menu a {
            color: var(--text-main);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.25s;
            position: relative;
        }
        
        .top-nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.25s;
        }
        
        .top-nav-menu a:hover::after {
            width: 100%;
        }
        
        .auth-buttons {
            display: flex;
            gap: 12px;
        }
        
        .btn-register {
            padding: 10px 28px;
            background: var(--gradient-gold);
            color: #0a0512;
            font-weight: 700;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .btn-register:hover {
            transform: translateY(-2px);
            box-shadow: var(--glow-gold);
        }
        
        /* Breadcrumbs */
        .breadcrumbs {
            padding: 15px 5% 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            max-width: 950px;
            margin: 0 auto;
            width: 100%;
        }
        
        .breadcrumbs a {
            color: var(--primary-gold);
            font-weight: 600;
        }
        
        .breadcrumbs a:hover {
            text-decoration: underline;
        }
        
        /* Activity Bar - Live Wins Ticker */
        .activity-bar {
            background: linear-gradient(90deg, var(--bg-medium) 0%, var(--bg-card) 50%, var(--bg-medium) 100%);
            padding: 12px 0;
            overflow: hidden;
            border-bottom: 1px solid var(--border-color);
        }
        
        .ticker-content {
            display: flex;
            gap: 60px;
            animation: ticker 30s linear infinite;
            white-space: nowrap;
        }
        
        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .win-item {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .win-item .highlight {
            color: var(--primary-gold);
            font-weight: 600;
        }
        
        .win-item strong {
            color: var(--accent-purple);
        }
        
        /* Hero Section */
        .hero {
            background: var(--gradient-hero);
            padding: 60px 5% 50px;
            text-align: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239b4dff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        
        .container {
            max-width: 950px;
            margin: 0 auto;
            position: relative;
        }
        
        h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-main) 0%, var(--primary-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-main);
            border-bottom: 2px solid var(--accent-purple);
            padding-bottom: 12px;
            display: inline-block;
        }
        
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 30px 0 15px;
            color: var(--primary-gold);
        }
        
        /* E-E-A-T Bar */
        .eeat-bar {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin: 15px 0 20px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .eeat-bar span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        /* Quick Links Navigation */
        .sticky-quick-links {
            background: var(--bg-medium);
            padding: 12px 5%;
            position: sticky;
            top: 65px;
            z-index: 99;
            border-bottom: 1px solid var(--border-color);
        }
        
        .sticky-quick-links ul {
            display: flex;
            justify-content: center;
            gap: 8px;
            list-style: none;
            flex-wrap: wrap;
        }
        
        .sticky-quick-links a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s;
        }
        
        .sticky-quick-links a:hover {
            background: var(--accent-purple);
            border-color: var(--accent-purple);
            transform: translateY(-2px);
        }
        
        /* Content Sections */
        section {
            padding: 50px 5%;
        }
        
        section.alt-section {
            background: var(--bg-medium);
        }
        
        p {
            color: var(--text-muted);
            margin-bottom: 18px;
        }
        
        ol, ul {
            margin: 20px 0;
            padding-left: 25px;
            color: var(--text-muted);
        }
        
        li {
            margin-bottom: 12px;
        }
        
        .content-cta {
            display: inline-block;
            margin-top: 20px;
            padding: 14px 35px;
            background: var(--gradient-gold);
            color: #0a0512;
            font-weight: 700;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .content-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--glow-gold);
        }
        
        /* Pros/Cons Boxes */
        .pros-cons-wrapper {
            display: flex;
            gap: 25px;
            margin: 25px 0;
        }
        
        .pros-box, .cons-box {
            flex: 1;
            padding: 25px;
            border-radius: 14px;
            border: 1px solid var(--border-color);
        }
        
        .pros-box {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.02) 100%);
            border-color: rgba(16, 185, 129, 0.3);
        }
        
        .pros-box h3 {
            color: #10b981;
        }
        
        .cons-box {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.02) 100%);
            border-color: rgba(239, 68, 68, 0.3);
        }
        
        .cons-box h3 {
            color: #ef4444;
        }
        
        .pros-box ul, .cons-box ul {
            list-style: none;
            padding-left: 0;
        }
        
        .pros-box li::before {
            content: '✓ ';
            color: #10b981;
            font-weight: bold;
        }
        
        .cons-box li::before {
            content: '✗ ';
            color: #ef4444;
            font-weight: bold;
        }
        
        /* Card Grid */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .card {
            background: var(--bg-card);
            border-radius: 14px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
        }
        
        .card:hover {
            border-color: var(--accent-purple);
            box-shadow: var(--glow-purple);
            transform: translateY(-5px);
        }
        
        .card .img-wrap {
            display: block;
            overflow: hidden;
            border-bottom: 3px solid var(--primary-gold);
            height: 180px;
            background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }
        
        .card-content {
            padding: 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card h3 {
            margin-top: 0;
            color: var(--primary-gold);
            border-bottom: none;
        }
        
        .card p {
            flex: 1;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .card-cta {
            display: block;
            padding: 12px 20px;
            text-align: center;
            background: var(--accent-purple);
            color: #fff;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.25s;
        }
        
        .card-cta:hover {
            background: var(--primary-gold);
            color: #0a0512;
        }
        
        /* Info Table */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }
        
        .info-table th, .info-table td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        
        .info-table th {
            background: rgba(155, 77, 255, 0.15);
            color: var(--primary-gold);
            font-weight: 600;
            width: 40%;
        }
        
        .info-table td {
            color: var(--text-muted);
        }
        
        .info-table tr:last-child th,
        .info-table tr:last-child td {
            border-bottom: none;
        }
        
        /* FAQ Accordion */
        details {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            margin-bottom: 12px;
            overflow: hidden;
        }
        
        summary {
            padding: 18px 22px;
            font-weight: 600;
            cursor: pointer;
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.02);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.25s;
        }
        
        summary:hover {
            background: rgba(155, 77, 255, 0.1);
        }
        
        summary::-webkit-details-marker {
            display: none;
        }
        
        summary::after {
            content: '+';
            color: var(--primary-gold);
            font-size: 1.5rem;
            font-weight: 400;
        }
        
        details[open] summary::after {
            content: '−';
        }
        
        .faq-content {
            padding: 22px;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            line-height: 1.7;
        }
        
        /* Author Box */
        .author-box {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 28px;
            display: flex;
            align-items: center;
            gap: 22px;
            margin: 30px 0;
        }
        
        .author-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 32px;
            flex-shrink: 0;
            border: 3px solid var(--bg-dark);
        }
        
        .author-text h4 {
            margin: 0 0 6px;
            color: var(--text-main);
            font-size: 1.15rem;
        }
        
        .author-text p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 85px;
            right: 22px;
            background: var(--accent-purple);
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            box-shadow: var(--glow-purple);
            z-index: 999;
            transition: all 0.3s;
            border: 2px solid rgba(255, 255, 255, 0.15);
        }
        
        .back-to-top:hover {
            background: var(--primary-gold);
            color: #0a0512;
            transform: translateY(-5px);
        }
        
        /* Footer */
        footer {
            background: #050208;
            padding: 45px 5% 90px;
            border-top: 1px solid var(--border-color);
            text-align: center;
            margin-top: auto;
        }
        
        .footer-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }
        
        .license-box {
            border: 1px solid var(--border-color);
            padding: 22px;
            border-radius: 10px;
            font-size: 0.8rem;
            color: var(--text-muted);
            max-width: 850px;
            margin: 25px auto 0;
            text-align: left;
            background: var(--bg-card);
            line-height: 1.7;
        }
        
        /* Mobile Bottom Bar */
        .mobile-bottom-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-medium);
            border-top: 1px solid var(--border-color);
            z-index: 1000;
            padding: 10px 0;
            justify-content: space-around;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
        }
        
        .mobile-bottom-bar a {
            color: var(--text-muted);
            font-size: 0.7rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-weight: 600;
            transition: color 0.2s;
        }
        
        .mobile-bottom-bar a i {
            font-size: 20px;
            font-style: normal;
        }
        
        .mobile-bottom-bar a.active-tab,
        .mobile-bottom-bar a:hover {
            color: var(--primary-gold);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .sidebar {
                transform: translateX(-100%);
            }
            
            .sidebar.open {
                transform: translateX(0);
            }
            
            .close-menu-btn {
                display: block;
            }
            
            .sidebar-cta-box {
                display: none;
            }
            
            .main-content {
                margin-left: 0;
                width: 100%;
            }
            
            .top-header {
                justify-content: space-between;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-bottom-bar {
                display: flex;
            }
            
            .top-nav-menu {
                display: none;
            }
            
            .pros-cons-wrapper {
                flex-direction: column;
            }
            
            .author-box {
                flex-direction: column;
                text-align: center;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .sticky-quick-links {
                padding: 10px 5%;
            }
            
            .sticky-quick-links ul {
                justify-content: flex-start;
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 5px;
            }
            
            .sticky-quick-links ul::-webkit-scrollbar {
                height: 4px;
            }
            
            .sticky-quick-links ul::-webkit-scrollbar-thumb {
                background: var(--accent-purple);
                border-radius: 4px;
            }
            
            .sticky-quick-links a {
                white-space: nowrap;
                font-size: 0.85rem;
            }
        }
        
        @media (min-width: 993px) {
            .mobile-menu-btn {
                display: none;
            }
            
            .sidebar {
                transform: translateX(0) !important;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1, .hero p, .hero .btn-register {
            animation: fadeInUp 0.6s ease-out forwards;
        }
        
        .hero p {
            animation-delay: 0.15s;
        }
        
        .hero .btn-register {
            animation-delay: 0.3s;
        }
        
        /* Link styles */
        .text-link {
            color: var(--primary-gold);
            font-weight: 600;
            transition: color 0.2s;
        }
        
        .text-link:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }
