:root {
            --primary-color: #ff6b35;
            --secondary-color: #f4c542;
            --accent-color: #2e86ab;
            --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, #f8f9fa 0%, #e9ecef 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            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;
            margin-bottom: 3rem;
            border-radius: 0 0 30px 30px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary-color);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--accent-color);
            margin-top: 2rem;
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-color), #ff8c42);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,107,53,0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255,107,53,0.4);
        }
        .btn-secondary-custom {
            background: linear-gradient(45deg, var(--accent-color), #3fa7d6);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46,134,171,0.3);
        }
        .btn-secondary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(46,134,171,0.4);
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 1.5rem;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--primary-color), #ff8c42);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin: 0.3rem;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,107,53,0.4);
            text-decoration: none;
            color: white;
        }
        .stat-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 3rem;
        }
        .footer-links a {
            color: #ccc;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 3rem 0;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
        }
        .key-feature {
            background: #f8f9fa;
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
