:root {
            --primary-color: #ff6b35;
            --secondary-color: #1a73e8;
            --accent-color: #00d4aa;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.9)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .section-title {
            color: var(--dark-color);
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-weight: 700;
        }
        .content-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .highlight-text {
            background: linear-gradient(120deg, #ff6b3515 0%, #1a73e815 100%);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin: 1.5rem 0;
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .key-feature {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1rem 0;
            box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
        }
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            font-weight: 600;
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .keyword-badge {
            background: var(--accent-color);
            color: var(--dark-color);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
            margin: 0.2rem;
            display: inline-block;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
                border-radius: 0 0 20px 20px;
            }
            .content-card {
                padding: 1.5rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
