/* Extracted from info.html - block 1 */
/* ============================== */
        /* FONTS                          */
        /* ============================== */
        @font-face {
            font-family: 'Apex';
            src: url('/static/fonts/Apex-Black.ttf') format('truetype');
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'URW Dock';
            src: url('/static/fonts/mainfont-cond-light.otf') format('opentype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        /* ============================== */
        /* CSS VARIABLES                  */
        /* ============================== */
        :root {
            --bg-black: #000000;
            --bg-surface: rgba(255, 255, 255, 0.02);
            --bg-surface-hover: rgba(255, 255, 255, 0.04);
            --bg-card: rgba(26, 26, 26, 0.9);

            --red-primary: #f4012b;
            --red-dark: #b8011f;
            --red-light: #ff4444;
            --red-glow: rgba(244, 1, 43, 0.3);

            --blue-primary: #3b82f6;
            --blue-discord: #5865F2;
            --blue-light: #60a5fa;

            --green-primary: #10b981;
            --green-light: #34d399;

            --gold-primary: #ffd700;
            --gold-dark: #ffaa00;
            --amber-primary: #f59e0b;

            --text-white: #ffffff;
            --text-muted: rgba(255, 255, 255, 0.5);
            --text-faint: rgba(255, 255, 255, 0.4);
            --text-dim: #888888;

            --border: rgba(255, 255, 255, 0.05);
            --border-hover: rgba(255, 255, 255, 0.15);
            --border-red: rgba(244, 1, 43, 0.2);
            --border-red-hover: rgba(244, 1, 43, 0.4);
        }

        /* ============================== */
        /* RESET & BASE                   */
        /* ============================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'URW Dock', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-black);
            color: var(--text-white);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Animated background grid */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(90deg, rgba(244, 1, 43, 0.03) 1px, transparent 1px),
                linear-gradient(rgba(244, 1, 43, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        /* ============================== */
        /* HEADER                         */
        /* ============================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            z-index: 1000;
            border-bottom: 1px solid rgba(244, 1, 43, 0.2);
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244, 1, 43, 0.5), transparent);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            height: 55px;
            filter: drop-shadow(0 0 20px rgba(244, 1, 43, 0.3));
            transition: all 0.3s ease;
        }

        .logo:hover {
            filter: drop-shadow(0 0 30px rgba(244, 1, 43, 0.5));
            transform: scale(1.05);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .auth-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .auth-button.login {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .auth-button.login:hover {
            border-color: var(--red-primary);
            color: var(--red-primary);
            box-shadow: 0 0 20px var(--red-glow);
        }

        .auth-button.signup {
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            color: white;
            border: none;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

        .auth-button.signup::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;
        }

        .auth-button.signup:hover::before {
            left: 100%;
        }

        .auth-button.signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(244, 1, 43, 0.4);
        }

        /* Info Book Button */
        .auth-button.info-btn {
            background: transparent;
            color: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 12px 14px;
            font-size: 16px;
        }

        .auth-button.info-btn:hover {
            border-color: var(--red-primary);
            color: var(--red-primary);
            box-shadow: 0 0 20px var(--red-glow);
        }

        .auth-button.info-btn.active {
            background: rgba(244, 1, 43, 0.15);
            border-color: var(--red-primary);
            color: var(--red-primary);
            box-shadow: 0 0 15px rgba(244, 1, 43, 0.25);
        }

        /* ============================== */
        /* HEADER NAVIGATION TABS         */
        /* ============================== */
        .header.header-with-nav {
            justify-content: space-between;
        }

        .header-nav-tabs {
            display: flex;
            align-items: center;
            gap: 6px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header-nav-tab {
            padding: 8px 12px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            color: rgba(255, 255, 255, 0.5);
            font-family: 'Apex', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .header-nav-tab:hover {
            background: rgba(244, 1, 43, 0.1);
            border-color: rgba(244, 1, 43, 0.4);
            color: #fff;
        }

        .header-nav-tab.active {
            background: rgba(244, 1, 43, 0.15);
            border-color: rgba(244, 1, 43, 0.5);
            color: var(--red-primary);
        }

        /* ============================== */
        /* MAIN CONTENT                   */
        /* ============================== */
        .main-content {
            margin-top: 80px;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        /* ============================== */
        /* SECTION 1: HERO                */
        /* ============================== */
        .info-hero {
            text-align: center;
            padding: 120px 32px 60px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Animated glow orbs */
        .info-hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(244, 1, 43, 0.15) 0%, transparent 70%);
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            animation: pulse-glow 4s ease-in-out infinite;
            pointer-events: none;
        }

        .info-hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            bottom: -100px;
            right: -100px;
            animation: pulse-glow 5s ease-in-out infinite reverse;
            pointer-events: none;
        }

        @keyframes pulse-glow {
            0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
            50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: rgba(244, 1, 43, 0.1);
            border: 1px solid rgba(244, 1, 43, 0.4);
            color: var(--red-primary);
            padding: 10px 20px;
            border-radius: 2px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 0 auto 24px;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
        }

        .hero-badge i {
            font-size: 14px;
        }

        .info-hero-icon {
            width: 80px;
            height: 80px;
            background: rgba(244, 1, 43, 0.15);
            border: 1px solid rgba(244, 1, 43, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            filter: drop-shadow(0 0 20px var(--red-glow));
            animation: icon-glow 3s ease-in-out infinite;
        }

        .info-hero-icon i {
            font-size: 2rem;
            color: var(--red-primary);
        }

        @keyframes icon-glow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(244, 1, 43, 0.3)); }
            50% { filter: drop-shadow(0 0 40px rgba(244, 1, 43, 0.5)); }
        }

        .info-hero h1 {
            font-family: 'Apex', sans-serif;
            font-size: 2.5rem;
            color: #fff;
            letter-spacing: 6px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .info-hero .subtitle {
            font-family: 'Apex', sans-serif;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 6px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .info-hero .description {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ============================== */
        /* SECTION 2: NAVIGATION TABS     */
        /* ============================== */
        .nav-tabs-wrapper {
            position: relative;
            margin-bottom: 60px;
        }

        .nav-tabs-container {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            padding: 20px 24px;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            border: 1px solid var(--border);
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .nav-tabs-container.sticky {
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100%;
            margin: 0;
            border-radius: 0;
            border-left: none;
            border-right: none;
            border-top: none;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-tabs-placeholder {
            display: none;
        }

        .nav-tabs-placeholder.active {
            display: block;
        }

        .nav-tab {
            padding: 12px 20px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            color: var(--text-muted);
            font-family: 'Apex', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

        .nav-tab:hover {
            background: rgba(244, 1, 43, 0.1);
            border-color: rgba(244, 1, 43, 0.4);
            color: #fff;
        }

        .nav-tab.active {
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.2) 0%, rgba(244, 1, 43, 0.1) 100%);
            border-color: rgba(244, 1, 43, 0.5);
            color: var(--red-primary);
            box-shadow: 0 0 20px rgba(244, 1, 43, 0.2);
        }

        /* ============================== */
        /* SECTION COMMON STYLES          */
        /* ============================== */
        .section {
            padding: 80px 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-label {
            display: inline-block;
            color: var(--red-primary);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 12px;
        }

        .section-label.blue { color: var(--blue-primary); }
        .section-label.green { color: var(--green-primary); }
        .section-label.gold { color: var(--gold-primary); }

        .section-headline {
            font-family: 'URW Dock', sans-serif;
            font-size: 2.25rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 12px 0;
        }

        .section-subtext {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Section with gradient background */
        .section-gradient {
            position: relative;
        }

        .section-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244, 1, 43, 0.3), transparent);
        }

        .section-gradient.red-bg {
            background: linear-gradient(180deg, rgba(244, 1, 43, 0.05) 0%, transparent 100%);
        }

        .section-gradient.green-bg {
            background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
        }

        .section-gradient.green-bg::before {
            background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
        }

        .section-gradient.gold-bg {
            background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
        }

        .section-gradient.gold-bg::before {
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
        }

        /* ============================== */
        /* SECTION 3: SQL OVERVIEW        */
        /* ============================== */
        .overview-section {
            padding: 80px 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .overview-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .overview-content .section-label {
            margin-bottom: 12px;
        }

        .overview-content .section-headline {
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .overview-content .description {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .overview-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(244, 1, 43, 0.1);
            border: 1px solid rgba(244, 1, 43, 0.2);
            color: var(--red-light);
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .overview-badge i {
            color: var(--red-primary);
        }

        .overview-visual {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px;
            aspect-ratio: 4/3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .visual-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            width: 100%;
        }

        .visual-stat {
            background: rgba(244, 1, 43, 0.1);
            border: 1px solid rgba(244, 1, 43, 0.2);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .visual-stat:last-child {
            grid-column: 1 / -1;
        }

        .visual-stat i {
            font-size: 1.5rem;
            color: var(--red-primary);
        }

        .visual-stat span {
            font-family: 'Apex', sans-serif;
            font-size: 0.9rem;
            color: #fff;
            letter-spacing: 1px;
        }

        /* ============================== */
        /* SECTION 4: DIVISIONS           */
        /* ============================== */
        .divisions-section {
            padding: 80px 32px;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, transparent 100%);
            position: relative;
        }

        .divisions-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244, 1, 43, 0.3), transparent);
        }

        .divisions-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .divisions-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .division-card {
            background: var(--bg-surface);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 32px;
            position: relative;
            transition: all 0.3s ease;
        }

        .division-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
        }

        /* RED theme for OPEN Division */
        .division-card.red {
            border-color: rgba(244, 1, 43, 0.3);
        }

        .division-card.red:hover {
            border-color: rgba(244, 1, 43, 0.5);
            box-shadow: 0 10px 40px rgba(244, 1, 43, 0.15);
        }

        /* GOLD/BROWN theme for LOWER Division */
        .division-card.gold {
            border-color: rgba(180, 130, 60, 0.3);
        }

        .division-card.gold:hover {
            border-color: rgba(180, 130, 60, 0.5);
            box-shadow: 0 10px 40px rgba(180, 130, 60, 0.15);
        }

        .division-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .division-card.red .division-icon {
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.2) 0%, rgba(244, 1, 43, 0.05) 100%);
        }

        .division-card.red .division-icon i {
            color: var(--red-primary);
            font-size: 1.5rem;
        }

        .division-card.gold .division-icon {
            background: linear-gradient(135deg, rgba(180, 130, 60, 0.2) 0%, rgba(180, 130, 60, 0.05) 100%);
        }

        .division-card.gold .division-icon i {
            color: #b4823c;
            font-size: 1.5rem;
        }

        .division-title {
            font-family: 'Apex', sans-serif;
            font-size: 1.25rem;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .division-subtitle {
            font-size: 0.85rem;
            color: var(--text-faint);
            margin-bottom: 20px;
        }

        .division-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .division-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .division-features li i {
            color: var(--green-primary);
            font-size: 0.75rem;
            width: 16px;
        }

        .division-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .division-card.red .division-badge {
            background: rgba(244, 1, 43, 0.15);
            color: var(--red-light);
        }

        .division-card.gold .division-badge {
            background: rgba(180, 130, 60, 0.15);
            color: #d4a84b;
        }

        /* ============================== */
        /* SECTION 5: VERIFICATION        */
        /* ============================== */
        .verification-section {
            padding: 80px 32px;
            background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
            position: relative;
        }

        .verification-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
        }

        .verification-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin-bottom: 40px;
        }

        .requirement-card {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .requirement-card:hover {
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-4px);
        }

        .requirement-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .requirement-icon i {
            font-size: 1.25rem;
            color: var(--green-primary);
        }

        .requirement-title {
            font-family: 'Apex', sans-serif;
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 8px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .requirement-value {
            font-family: 'Apex', sans-serif;
            font-size: 1.25rem;
            color: #fff;
            letter-spacing: 1px;
        }

        .requirement-note {
            font-size: 0.7rem;
            color: var(--text-faint);
            margin-top: 8px;
        }

        .soft-badge {
            display: inline-block;
            background: rgba(245, 158, 11, 0.15);
            color: var(--amber-primary);
            padding: 4px 8px;
            border-radius: 3px;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 8px;
            letter-spacing: 0.5px;
        }

        .warning-box {
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 12px;
            padding: 20px 24px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .warning-box i {
            color: var(--amber-primary);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .warning-box-content strong {
            color: #fff;
        }

        .warning-box-content p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        .verification-steps {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .verification-step {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
        }

        .verification-step:hover {
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateX(8px);
        }

        .step-number {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--green-primary) 0%, #0d9668 100%);
            border-radius: 50%;
            font-family: 'Apex', sans-serif;
            font-size: 0.85rem;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
            flex-shrink: 0;
        }

        .step-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .step-icon i {
            font-size: 1rem;
            color: var(--green-primary);
        }

        .step-content {
            flex: 1;
        }

        .step-title {
            font-family: 'Apex', sans-serif;
            font-size: 0.75rem;
            color: #fff;
            margin-bottom: 4px;
            letter-spacing: 1px;
        }

        .step-desc {
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Verification Paths (Two-column) */
        .verification-paths {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 30px;
        }

        .verification-path {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .verification-path:hover {
            transform: translateY(-4px);
        }

        .verification-path.open-path:hover {
            border-color: rgba(244, 1, 43, 0.3);
            box-shadow: 0 10px 40px rgba(244, 1, 43, 0.1);
        }

        .verification-path.lower-path:hover {
            border-color: rgba(180, 130, 60, 0.3);
            box-shadow: 0 10px 40px rgba(180, 130, 60, 0.1);
        }

        .path-header {
            padding: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
        }

        .path-header.red {
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.15) 0%, rgba(244, 1, 43, 0.05) 100%);
            border-bottom: 1px solid rgba(244, 1, 43, 0.2);
        }

        .path-header.gold {
            background: linear-gradient(135deg, rgba(180, 130, 60, 0.15) 0%, rgba(180, 130, 60, 0.05) 100%);
            border-bottom: 1px solid rgba(180, 130, 60, 0.2);
        }

        .path-header.red i {
            font-size: 2rem;
            color: var(--red-primary);
        }

        .path-header.gold i {
            font-size: 2rem;
            color: #b4823c;
        }

        .path-header h4 {
            font-family: 'Apex', sans-serif;
            font-size: 1rem;
            color: #fff;
            letter-spacing: 1px;
            margin: 0;
        }

        .path-badge {
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .path-badge.easy {
            background: rgba(16, 185, 129, 0.15);
            color: var(--green-light);
        }

        .path-badge.required {
            background: rgba(180, 130, 60, 0.15);
            color: #d4a84b;
        }

        .path-steps {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .path-step {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .path-step-number {
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            font-family: 'Apex', sans-serif;
            font-size: 0.75rem;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .open-path .path-step-number {
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            box-shadow: 0 0 10px rgba(244, 1, 43, 0.4);
        }

        .lower-path .path-step-number {
            background: linear-gradient(135deg, #b4823c 0%, #8a6230 100%);
            box-shadow: 0 0 10px rgba(180, 130, 60, 0.4);
        }

        .path-step-content {
            flex: 1;
        }

        .path-step-title {
            font-family: 'Apex', sans-serif;
            font-size: 0.7rem;
            color: #fff;
            letter-spacing: 1px;
            margin: 0 0 4px 0;
        }

        .path-step-desc {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin: 0;
        }

        .path-footer {
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .open-path .path-footer {
            color: var(--green-primary);
        }

        .open-path .path-footer i {
            color: var(--green-primary);
        }

        .lower-path .path-footer {
            color: #d4a84b;
        }

        .lower-path .path-footer i {
            color: #d4a84b;
        }

        .path-footer span {
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* ============================== */
        /* SECTION 6: SCHEDULE            */
        /* ============================== */
        .schedule-section {
            padding: 80px 32px;
            background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
            position: relative;
        }

        .schedule-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244, 1, 43, 0.2), transparent);
        }

        .schedule-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .schedule-card {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
        }

        .schedule-label {
            display: inline-block;
            color: var(--red-primary);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 12px;
        }

        .schedule-title {
            font-family: 'URW Dock', sans-serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 24px 0;
        }

        .day-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 12px;
        }

        .day-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.15) 0%, rgba(244, 1, 43, 0.05) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .day-icon i {
            font-size: 1.25rem;
            color: var(--red-primary);
        }

        .day-info {
            flex: 1;
        }

        .day-name {
            font-family: 'Apex', sans-serif;
            font-size: 0.9rem;
            color: #fff;
            letter-spacing: 1px;
        }

        .day-time {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .info-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-top: 1px solid var(--border);
            margin-top: 16px;
        }

        .info-row i {
            color: var(--red-primary);
            font-size: 1rem;
            width: 20px;
        }

        .info-row span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        /* Match Flow Steps */
        .steps-column {
            display: flex;
            flex-direction: column;
        }

        .steps-header {
            margin-bottom: 24px;
        }

        .match-steps {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .match-step {
            background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
            border: 1px solid var(--border);
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.4s ease;
        }

        .match-step:hover {
            border-color: rgba(244, 1, 43, 0.4);
            transform: translateX(8px);
            box-shadow: 0 10px 30px rgba(244, 1, 43, 0.15);
        }

        .match-step .step-number {
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            box-shadow: 0 0 15px rgba(244, 1, 43, 0.5);
        }

        .match-step .step-icon {
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.2) 0%, rgba(244, 1, 43, 0.05) 100%);
        }

        .match-step .step-icon i {
            color: var(--red-primary);
        }

        /* ============================== */
        /* SECTION 7: SCORING             */
        /* ============================== */
        .scoring-section {
            padding: 80px 32px;
            background: linear-gradient(180deg, rgba(244, 1, 43, 0.05) 0%, transparent 100%);
            position: relative;
        }

        .scoring-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244, 1, 43, 0.5), transparent);
        }

        .scoring-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .callout-box {
            background: rgba(244, 1, 43, 0.1);
            border: 1px solid rgba(244, 1, 43, 0.2);
            border-radius: 12px;
            padding: 20px 24px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .callout-box i {
            color: var(--red-primary);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .callout-box-content strong {
            color: #fff;
        }

        .callout-box-content p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        .scoring-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }

        .scoring-card {
            background: var(--bg-surface);
            padding: 32px 24px;
            border-radius: 12px;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s ease;
        }

        .scoring-card:hover {
            border-color: rgba(244, 1, 43, 0.3);
            background: rgba(244, 1, 43, 0.05);
            transform: translateY(-4px);
        }

        .scoring-card.blue:hover {
            border-color: rgba(59, 130, 246, 0.3);
            background: rgba(59, 130, 246, 0.05);
        }

        .scoring-card.gold:hover {
            border-color: rgba(255, 215, 0, 0.3);
            background: rgba(255, 215, 0, 0.05);
        }

        .scoring-card-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.15) 0%, rgba(244, 1, 43, 0.05) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scoring-card-icon i {
            font-size: 1.5rem;
            color: var(--red-primary);
        }

        .scoring-card.blue .scoring-card-icon {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
        }

        .scoring-card.blue .scoring-card-icon i {
            color: var(--blue-primary);
        }

        .scoring-card.gold .scoring-card-icon {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
        }

        .scoring-card.gold .scoring-card-icon i {
            color: var(--gold-primary);
        }

        .scoring-card-value {
            font-family: 'Apex', sans-serif;
            font-size: 2.5rem;
            color: #fff;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .scoring-card-label {
            font-family: 'Apex', sans-serif;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .scoring-card-note {
            font-size: 0.75rem;
            color: var(--text-faint);
        }

        /* Scoring Table */
        .scoring-table-wrapper {
            max-width: 500px;
            margin: 0 auto;
        }

        .scoring-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
        }

        .scoring-table th {
            background: rgba(244, 1, 43, 0.1);
            padding: 16px 20px;
            text-align: left;
            font-family: 'Apex', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 2px;
            color: #fff;
            text-transform: uppercase;
        }

        .scoring-table td {
            padding: 14px 20px;
            border-bottom: 1px solid var(--border);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .scoring-table tr:last-child td {
            border-bottom: none;
        }

        .scoring-table tr:hover {
            background: var(--bg-surface-hover);
        }

        .points-value {
            font-family: 'Apex', sans-serif;
            color: var(--gold-primary);
            font-size: 1rem;
            letter-spacing: 1px;
        }

        /* ============================== */
        /* SECTION 8: PRIZES              */
        /* ============================== */
        .prize-section {
            padding: 80px 32px;
            background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
            position: relative;
        }

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

        .prize-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .prize-info-card {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            margin-bottom: 40px;
        }

        .prize-info-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prize-info-icon i {
            font-size: 1.5rem;
            color: var(--gold-primary);
        }

        .prize-info-title {
            font-family: 'Apex', sans-serif;
            font-size: 1.25rem;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .prize-info-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto 16px;
        }

        .prize-info-note {
            color: rgba(255, 215, 0, 0.8);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .prize-locations {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            max-width: 600px;
            margin: 0 auto 50px;
        }

        .prize-location-card {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all 0.3s ease;
        }

        .prize-location-card:hover {
            border-color: rgba(255, 215, 0, 0.3);
            transform: translateY(-4px);
        }

        .prize-location-card i {
            font-size: 1.25rem;
            color: var(--gold-primary);
        }

        .prize-location-card span {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }

        /* Payout Steps */
        .payout-section {
            margin-top: 50px;
        }

        .payout-title {
            font-family: 'URW Dock', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            text-align: center;
            margin-bottom: 30px;
        }

        .payout-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 900px;
            margin: 0 auto;
        }

        .payout-step {
            background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
            border: 1px solid var(--border);
            padding: 24px 16px;
            border-radius: 8px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .payout-step:hover {
            border-color: rgba(255, 215, 0, 0.4);
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
        }

        .payout-step-number {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
            border-radius: 50%;
            font-family: 'Apex', sans-serif;
            font-size: 0.75rem;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .payout-step-icon {
            width: 40px;
            height: 40px;
            margin: 8px auto 12px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .payout-step-icon i {
            font-size: 1rem;
            color: var(--gold-primary);
        }

        .payout-step-title {
            font-family: 'Apex', sans-serif;
            font-size: 0.7rem;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: 1px;
        }

        .payout-step-desc {
            font-size: 0.7rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .payout-notice {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 12px;
            padding: 20px 24px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            max-width: 700px;
            margin: 40px auto 0;
        }

        .payout-notice i {
            color: var(--gold-primary);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .payout-notice-content strong {
            color: #fff;
        }

        .payout-notice-content p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        /* ============================== */
        /* SECTION 9: RULES               */
        /* ============================== */
        .rules-section {
            padding: 80px 32px;
            background: linear-gradient(180deg, rgba(244, 1, 43, 0.08) 0%, transparent 100%);
            position: relative;
        }

        .rules-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244, 1, 43, 0.5), transparent);
        }

        .rules-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .rules-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }

        .rule-card {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px;
            transition: all 0.3s ease;
        }

        .rule-card:hover {
            border-color: rgba(244, 1, 43, 0.3);
            transform: translateY(-4px);
        }

        .rule-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .rule-card-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.15) 0%, rgba(244, 1, 43, 0.05) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .rule-card-icon i {
            font-size: 1.25rem;
            color: var(--red-primary);
        }

        .rule-card.blue .rule-card-icon {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
        }

        .rule-card.blue .rule-card-icon i {
            color: var(--blue-primary);
        }

        .rule-card.yellow .rule-card-icon {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
        }

        .rule-card.yellow .rule-card-icon i {
            color: var(--amber-primary);
        }

        .rule-card-title {
            font-family: 'Apex', sans-serif;
            font-size: 0.9rem;
            color: #fff;
            letter-spacing: 1px;
        }

        .rule-card-desc {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .rule-card-consequence {
            font-size: 0.75rem;
            color: var(--red-primary);
            font-weight: 600;
        }

        .penalties-box {
            background: rgba(244, 1, 43, 0.1);
            border: 1px solid rgba(244, 1, 43, 0.3);
            border-radius: 12px;
            padding: 24px;
            max-width: 600px;
            margin: 0 auto;
        }

        .penalties-title {
            font-family: 'Apex', sans-serif;
            font-size: 0.85rem;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

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

        .penalties-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .penalties-list li::before {
            content: '•';
            color: var(--red-primary);
        }

        /* ============================== */
        /* SECTION 10: FAQ                */
        /* ============================== */
        .faq-section {
            padding: 80px 32px;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, #000 100%);
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 60px;
        }

        .faq-header-side {
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        .faq-label {
            display: block;
            color: var(--red-primary);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 8px;
        }

        .faq-headline {
            font-family: 'URW Dock', sans-serif;
            font-size: 3rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 24px 0;
        }

        .faq-support-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.85rem;
            text-decoration: none;
            transition: color 0.2s;
        }

        .faq-support-link:hover {
            color: var(--red-primary);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .faq-item.open {
            border-color: rgba(244, 1, 43, 0.3);
        }

        .faq-question {
            width: 100%;
            padding: 20px 24px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 0.95rem;
            font-weight: 500;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
        }

        .faq-question i {
            color: rgba(255, 255, 255, 0.3);
            transition: transform 0.3s, color 0.3s;
            font-size: 0.8rem;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--red-primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        .faq-answer-content {
            padding: 0 24px 20px;
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ============================== */
        /* SECTION 11: SUPPORT CTA        */
        /* ============================== */
        .support-section {
            padding: 80px 32px;
            text-align: center;
            position: relative;
        }

        .support-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.5), transparent);
        }

        .support-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .support-title {
            font-family: 'URW Dock', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 12px 0;
        }

        .support-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 32px;
        }

        .support-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .cta-discord {
            padding: 18px 40px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
            color: white;
            border: none;
            font-family: 'Apex', sans-serif;
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
        }

        .cta-discord::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.6s ease;
        }

        .cta-discord:hover::before {
            left: 100%;
        }

        .cta-discord:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5);
        }

        .cta-discord i {
            font-size: 1.3rem;
        }

        .cta-support {
            padding: 18px 40px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
        }

        .cta-support:hover {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .quick-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .quick-link {
            color: var(--text-muted);
            font-size: 0.85rem;
            text-decoration: none;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .quick-link:hover {
            color: var(--red-primary);
        }

        .quick-link i {
            font-size: 0.8rem;
        }

        /* ============================== */
        /* FOOTER                         */
        /* ============================== */
        .site-footer {
            background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
            border-top: 1px solid #222;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-brand {
            padding-right: 2rem;
            justify-content: center;
            align-items: center;
        }

        .footer-logo {
            height: auto;
            width: 160px;
            max-width: 160px;
            object-fit: contain;
            margin: 0;
            display: block;
        }

        .footer-tagline {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.25rem;
        }

        .footer-socials {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .footer-socials a {
            width: 34px;
            height: 34px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #333;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 0.9rem;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .footer-socials a:hover {
            background: rgba(244, 1, 43, 0.15);
            border-color: var(--red-primary);
            color: var(--red-primary);
            transform: translateY(-2px);
        }

        .footer-title {
            font-family: 'Apex', sans-serif;
            font-size: 0.85rem;
            color: #fff;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

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

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

        .footer-links a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a i {
            font-size: 0.8rem;
            width: 16px;
            text-align: center;
        }

        .footer-links a:hover {
            color: var(--red-primary);
        }

        .footer-bottom {
            border-top: 1px solid #222;
            padding-top: 1.5rem;
            text-align: center;
        }

        .footer-copyright {
            color: #555;
            font-size: 0.8rem;
            margin: 0 0 0.35rem 0;
        }

        .footer-disclaimer {
            color: #444;
            font-size: 0.7rem;
            margin: 0;
        }


        /* ============================== */
        /* ANIMATIONS                     */
        /* ============================== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }