* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(135deg, #0b0f1a 0%, #1a1f2e 50%, #0b0f1a 100%);
            color: #e0e7ff;
            line-height: 1.6;
        }
        a {
            color: #fbbf24;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #fcd34d;
            text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Header & Navigation */
        header {
            background: linear-gradient(90deg, #0f172a, #1e3a8a);
            padding: 16px 0;
            border-bottom: 3px solid #fbbf24;
            box-shadow: 0 4px 20px rgba(30, 58, 138, 0.5);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
        }
        .nav-links {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-links a {
            padding: 8px 18px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(251, 191, 36, 0.2);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            background: #fbbf24;
            color: #0f172a;
            border-color: #fbbf24;
            box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
        }
        /* Hero */
        .hero {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(15, 23, 42, 0.95)), url('/img/esports.webp') center/cover no-repeat;
            padding: 100px 0 70px;
            text-align: center;
            border-bottom: 4px solid #fbbf24;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fbbf24, #fcd34d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #cbd5e1;
        }
        .hero .cta-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 16px 48px;
            border-radius: 50px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0f172a;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
            transition: 0.4s;
        }
        .hero .cta-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
            color: #0f172a;
        }
        /* Section General */
        section {
            padding: 70px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #fbbf24, #1e3a8a);
            margin: 12px auto 0;
            border-radius: 4px;
        }
        /* Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .card {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            border: 1px solid rgba(251, 191, 36, 0.15);
            border-radius: 20px;
            padding: 30px;
            transition: 0.4s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .card:hover {
            border-color: #fbbf24;
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(251, 191, 36, 0.15);
        }
        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 18px;
            border: 2px solid rgba(251, 191, 36, 0.2);
        }
        .card h3 {
            font-size: 1.4rem;
            color: #fbbf24;
            margin-bottom: 12px;
        }
        .card p {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .stat-item {
            background: rgba(30, 58, 138, 0.3);
            border-radius: 20px;
            padding: 30px 20px;
            border: 1px solid rgba(251, 191, 36, 0.1);
        }
        .stat-item .number {
            font-size: 3rem;
            font-weight: 800;
            color: #fbbf24;
        }
        .stat-item .label {
            color: #94a3b8;
            font-size: 1rem;
            margin-top: 8px;
        }
        /* FAQ */
        .faq-item {
            background: #1e293b;
            border: 1px solid rgba(251, 191, 36, 0.1);
            border-radius: 16px;
            margin-bottom: 16px;
            padding: 24px 28px;
            transition: 0.3s;
        }
        .faq-item:hover {
            border-color: #fbbf24;
        }
        .faq-item .question {
            font-weight: 700;
            font-size: 1.1rem;
            color: #fbbf24;
            margin-bottom: 10px;
        }
        .faq-item .answer {
            color: #94a3b8;
        }
        /* News */
        .news-item {
            background: #1e293b;
            border-left: 5px solid #fbbf24;
            padding: 24px 28px;
            border-radius: 0 16px 16px 0;
            margin-bottom: 20px;
            transition: 0.3s;
        }
        .news-item:hover {
            background: #253244;
        }
        .news-item .date {
            font-size: 0.85rem;
            color: #fbbf24;
            margin-bottom: 6px;
        }
        .news-item h3 {
            font-size: 1.3rem;
            color: #e0e7ff;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #94a3b8;
        }
        /* Footer */
        footer {
            background: #0b0f1a;
            border-top: 3px solid #1e3a8a;
            padding: 50px 0 30px;
            color: #94a3b8;
        }
        footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
        }
        footer .footer-links a {
            color: #fbbf24;
            font-size: 0.9rem;
        }
        footer .footer-links a:hover {
            color: #fcd34d;
        }
        footer .footer-info {
            text-align: center;
            line-height: 2;
        }
        footer .footer-info span {
            display: inline-block;
            margin: 0 10px;
        }
        .friend-links {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(251, 191, 36, 0.1);
            margin-top: 30px;
        }
        .friend-links a {
            margin: 0 8px;
        }
        /* Geo */
        .geo-text {
            background: rgba(30, 58, 138, 0.15);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(251, 191, 36, 0.1);
            font-size: 1.05rem;
            color: #cbd5e1;
            line-height: 1.8;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .hero { padding: 60px 0 40px; }
            section { padding: 50px 0; }
            .nav-links a { padding: 6px 14px; font-size: 0.85rem; }
        }
        .gold-border {
            border: 2px solid rgba(251, 191, 36, 0.2);
            border-radius: 20px;
            padding: 20px;
        }
        .btn-more {
            display: inline-block;
            padding: 10px 28px;
            border-radius: 30px;
            background: transparent;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            font-weight: 600;
            transition: 0.3s;
            margin-top: 12px;
        }
        .btn-more:hover {
            background: #fbbf24;
            color: #0f172a;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }