        /* ============================================
           ZONACRYPTO — PROFESSIONAL CRYPTO WEBSITE
           Dark Theme + Cyan #00D4FF Accent
           ============================================ */

        :root {
            --cyan: #00D4FF;
            --cyan-dark: #00A8CC;
            --cyan-glow: rgba(0, 212, 255, 0.15);
            --cyan-glow-strong: rgba(0, 212, 255, 0.3);
            --bg-primary: #0A0E17;
            --bg-secondary: #111827;
            --bg-card: #151C2C;
            --bg-card-hover: #1A2340;
            --border: #1E293B;
            --border-light: #2A3654;
            --text-primary: #F1F5F9;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --green: #10B981;
            --red: #EF4444;
            --gold: #F59E0B;
            --purple: #8B5CF6;
            --gradient-hero: linear-gradient(135deg, #0A0E17 0%, #0F172A 50%, #0A1628 100%);
            --gradient-card: linear-gradient(145deg, #151C2C 0%, #111827 100%);
            --gradient-cyan: linear-gradient(135deg, #00D4FF 0%, #00A8CC 100%);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
            --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.1);
            --radius: 16px;
            --radius-sm: 10px;
            --radius-xs: 6px;
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Space Grotesk', 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

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

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Animated background grid */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 14, 23, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 0 24px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(10, 14, 23, 0.95);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-brand .logo-icon {
            width: 42px;
            height: 42px;
            background: var(--gradient-cyan);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 18px;
            color: var(--bg-primary);
            font-family: var(--font-display);
        }

        .nav-brand .brand-text {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .nav-brand .brand-text span {
            color: var(--cyan);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

        .nav-links a {
            padding: 8px 16px;
            border-radius: var(--radius-xs);
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--cyan);
            background: var(--cyan-glow);
        }

        .nav-links a.active {
            color: var(--cyan);
        }

        .nav-cta {
            background: var(--gradient-cyan) !important;
            color: var(--bg-primary) !important;
            font-weight: 600 !important;
            padding: 10px 20px !important;
            border-radius: var(--radius-sm) !important;
        }

        .nav-cta:hover {
            box-shadow: var(--shadow-glow);
            transform: translateY(-1px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--gradient-hero);
            padding-top: 72px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite reverse;
        }

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

        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            max-width: 560px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--cyan-glow);
            border: 1px solid rgba(0, 212, 255, 0.2);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            color: var(--cyan);
            margin-bottom: 24px;
        }

        .hero-badge .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero h1 .highlight {
            background: var(--gradient-cyan);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 36px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--gradient-cyan);
            color: var(--bg-primary);
        }

        .btn-primary:hover {
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1px solid var(--border-light);
        }

        .btn-secondary:hover {
            border-color: var(--cyan);
            color: var(--cyan);
        }

        /* Hero Right — Crypto Card */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .crypto-card {
            background: var(--gradient-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 32px;
            width: 100%;
            max-width: 420px;
            box-shadow: var(--shadow-card);
        }

        .crypto-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .crypto-card-header h3 {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 600;
        }

        .live-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 12px;
            color: var(--green);
            font-weight: 600;
        }

        .live-badge .dot {
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
            animation: blink 1.5s ease-in-out infinite;
        }

        .crypto-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }

        .crypto-item:last-child {
            border-bottom: none;
        }

        .crypto-item-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .crypto-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
        }

        .crypto-icon.btc { background: rgba(247, 147, 26, 0.15); color: #F7931A; }
        .crypto-icon.eth { background: rgba(98, 126, 234, 0.15); color: #627EEA; }
        .crypto-icon.sol { background: rgba(153, 69, 255, 0.15); color: #9945FF; }
        .crypto-icon.bnb { background: rgba(243, 186, 47, 0.15); color: #F3BA2F; }

        .crypto-name {
            font-weight: 600;
            font-size: 15px;
        }

        .crypto-symbol {
            font-size: 12px;
            color: var(--text-muted);
        }

        .crypto-item-right {
            text-align: right;
        }

        .crypto-price {
            font-weight: 600;
            font-size: 15px;
            font-family: var(--font-display);
        }

        .crypto-change {
            font-size: 13px;
            font-weight: 500;
        }

        .crypto-change.up { color: var(--green); }
        .crypto-change.down { color: var(--red); }

        /* ============================================
           SECTION STYLES (shared)
           ============================================ */
        section {
            position: relative;
            z-index: 1;
            padding: 100px 0;
        }

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

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--cyan-glow);
            border: 1px solid rgba(0, 212, 255, 0.15);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--cyan);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-family: var(--font-display);
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .section-header p {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ============================================
           LATEST NEWS — NOTICIAS
           ============================================ */
        .news-section {
            background: var(--bg-secondary);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .news-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .news-card:hover {
            border-color: var(--cyan);
            transform: translateY(-4px);
            box-shadow: var(--shadow-glow);
        }

        .news-card-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--bg-card-hover), var(--bg-secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .news-card-image i {
            font-size: 48px;
            color: var(--cyan);
            opacity: 0.3;
        }

        .news-category {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-category.mercado { background: rgba(0, 212, 255, 0.15); color: var(--cyan); }
        .news-category.regulacion { background: rgba(245, 158, 11, 0.15); color: var(--gold); }
        .news-category.defi { background: rgba(139, 92, 246, 0.15); color: var(--purple); }
        .news-category.bitcoin { background: rgba(247, 147, 26, 0.15); color: #F7931A; }

        .news-card-body {
            padding: 24px;
        }

        .news-card-body h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card-body p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 16px;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        .news-meta .date {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .news-read-more {
            color: var(--cyan);
            font-weight: 600;
            font-size: 13px;
        }

        /* Featured news (first card larger) */
        .news-featured {
            grid-column: span 2;
            grid-row: span 2;
        }

        .news-featured .news-card-image {
            height: 300px;
        }

        .news-featured .news-card-body h3 {
            font-size: 24px;
            -webkit-line-clamp: 3;
        }

        .news-featured .news-card-body p {
            -webkit-line-clamp: 4;
        }

        .news-load-more {
            text-align: center;
            margin-top: 40px;
        }

        /* ============================================
           ARTICLES — ARTÍCULOS
           ============================================ */
        .articles-section {
            background: var(--bg-primary);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .article-card {
            display: flex;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .article-card:hover {
            border-color: var(--cyan);
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .article-card-image {
            width: 200px;
            min-height: 180px;
            background: linear-gradient(135deg, var(--bg-card-hover), var(--bg-secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .article-card-image i {
            font-size: 36px;
            color: var(--cyan);
            opacity: 0.3;
        }

        .article-card-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .article-card-body .article-tag {
            font-size: 11px;
            font-weight: 600;
            color: var(--cyan);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .article-card-body h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .article-card-body p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .article-author {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .article-author-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--gradient-cyan);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: var(--bg-primary);
        }

        /* ============================================
           MEMBERS SECTION — SOLO MIEMBROS
           ============================================ */
        .members-section {
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .members-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
        }

        .members-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .members-text h2 {
            font-family: var(--font-display);
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .members-text h2 .highlight {
            color: var(--cyan);
        }

        .members-text p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .members-benefits {
            list-style: none;
            margin-bottom: 36px;
        }

        .members-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            font-size: 15px;
            color: var(--text-secondary);
        }

        .members-benefits li i {
            color: var(--cyan);
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .members-visual {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .member-stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .member-stat-card:hover {
            border-color: var(--cyan);
            box-shadow: var(--shadow-glow);
        }

        .member-stat-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .member-stat-icon.cyan { background: var(--cyan-glow); color: var(--cyan); }
        .member-stat-icon.purple { background: rgba(139, 92, 246, 0.15); color: var(--purple); }
        .member-stat-icon.gold { background: rgba(245, 158, 11, 0.15); color: var(--gold); }
        .member-stat-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--green); }

        .member-stat-info h4 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
        }

        .member-stat-info p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* ============================================
           LIVE SECTION
           ============================================ */
        .live-section {
            background: var(--bg-primary);
            text-align: center;
        }

        .live-banner {
            background: var(--gradient-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }

        .live-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 60%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .live-banner > * {
            position: relative;
            z-index: 2;
        }

        .live-schedule-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.3);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: var(--red);
            margin-bottom: 24px;
        }

        .live-banner h2 {
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .live-banner p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .live-schedule {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 36px;
            flex-wrap: wrap;
        }

        .live-time {
            text-align: center;
        }

        .live-time .time {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--cyan);
        }

        .live-time .city {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .live-platforms {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .live-platform-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .live-platform-btn:hover {
            border-color: var(--cyan);
            color: var(--cyan);
        }

        .live-platform-btn i {
            font-size: 18px;
        }

        /* ============================================
           PLATFORMS / COMUNIDAD
           ============================================ */
        .platforms-section {
            background: var(--bg-secondary);
        }

        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .platform-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .platform-card:hover {
            border-color: var(--cyan);
            transform: translateY(-4px);
            box-shadow: var(--shadow-glow);
        }

        .platform-icon {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 20px;
        }

        .platform-icon.youtube { background: rgba(255, 0, 0, 0.12); color: #FF0000; }
        .platform-icon.telegram { background: rgba(0, 136, 204, 0.12); color: #0088CC; }
        .platform-icon.twitter { background: rgba(29, 161, 242, 0.12); color: #1DA1F2; }
        .platform-icon.facebook { background: rgba(24, 119, 242, 0.12); color: #1877F2; }
        .platform-icon.mixlr { background: rgba(255, 102, 0, 0.12); color: #FF6600; }
        .platform-icon.web { background: var(--cyan-glow); color: var(--cyan); }

        .platform-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .platform-card p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .platform-link {
            color: var(--cyan);
            font-size: 13px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* ============================================
           SPONSORS
           ============================================ */
        .sponsors-section {
            background: var(--bg-primary);
        }

        .sponsors-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .sponsor-card {
            background: var(--gradient-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 40px;
            display: flex;
            align-items: center;
            gap: 32px;
            transition: all 0.3s ease;
        }

        .sponsor-card:hover {
            border-color: var(--cyan);
            box-shadow: var(--shadow-glow);
        }

        .sponsor-logo {
            width: 80px;
            height: 80px;
            border-radius: var(--radius-sm);
            background: var(--cyan-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sponsor-logo span {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 14px;
            color: var(--cyan);
            text-align: center;
            line-height: 1.2;
        }

        .sponsor-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .sponsor-info p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .sponsor-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--cyan);
            font-weight: 600;
            font-size: 14px;
        }

        .sponsor-cta:hover {
            gap: 10px;
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact-section {
            background: var(--bg-secondary);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .contact-info p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .contact-methods {
            list-style: none;
        }

        .contact-methods li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            color: var(--text-secondary);
        }

        .contact-methods li i {
            color: var(--cyan);
            width: 20px;
            text-align: center;
        }

        .contact-form {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 36px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-xs);
            color: var(--text-primary);
            font-family: var(--font-primary);
            font-size: 14px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border);
            padding: 60px 0 30px;
        }

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

        .footer-brand .brand-text {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .footer-brand .brand-text span {
            color: var(--cyan);
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-xs);
            background: var(--bg-card);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            border-color: var(--cyan);
            color: var(--cyan);
            background: var(--cyan-glow);
        }

        .footer-column h4 {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-primary);
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .footer-column ul li a:hover {
            color: var(--cyan);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text {
                max-width: 100%;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .hero h1 {
                font-size: 44px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .news-featured {
                grid-column: span 1;
                grid-row: span 1;
            }

            .articles-grid {
                grid-template-columns: 1fr;
            }

            .members-content {
                grid-template-columns: 1fr;
            }

            .platforms-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .sponsors-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-header h2 {
                font-size: 30px;
            }

            .platforms-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .live-schedule {
                gap: 20px;
            }

            .live-time .time {
                font-size: 22px;
            }

            .article-card {
                flex-direction: column;
            }

            .article-card-image {
                width: 100%;
                min-height: 140px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .sponsor-card {
                flex-direction: column;
                text-align: center;
            }
        }
