:root {
            --primary-color: #ff6b35;
            --secondary-color: #1e3a8a;
            --accent-color: #f59e0b;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .main-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        .logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.05);
            text-shadow: 4px 4px 8px rgba(0,0,0,0.2);
        }
        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            border-radius: 10px;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            color: white !important;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            color: var(--secondary-color);
            font-size: 2.8rem;
            border-bottom: 4px solid var(--primary-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            margin-top: 3rem;
            border-left: 5px solid var(--accent-color);
            padding-left: 1rem;
        }
        h3 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin-top: 2rem;
        }
        .content-section {
            padding: 3rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--bg-light), #e2e8f0);
            border-left: 5px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 1rem;
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .key-point {
            background: var(--bg-light);
            padding: 1rem;
            border-radius: 10px;
            margin: 1rem 0;
            border-left: 4px solid var(--accent-color);
        }
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 2rem 0;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .content-section {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .logo {
                font-size: 2rem;
            }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
            border-top: 4px solid var(--primary-color);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }
        .quote-box {
            background: linear-gradient(135deg, var(--secondary-color), #3730a3);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            position: relative;
        }
        .quote-box:before {
            content: """;
            font-size: 5rem;
            color: rgba(255,255,255,0.1);
            position: absolute;
            top: -10px;
            left: 20px;
        }
