:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #1a237e;
            --text-color: #333;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
        }
        .game-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 0.7rem 1.5rem;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #e65100;
            border-color: #e65100;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        .btn-outline-light {
            border-width: 2px;
            font-weight: 600;
        }
        .btn-outline-light:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .content-section {
            padding: 3rem 0;
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
            margin: 2rem 0 1.5rem;
        }
        .highlight-box {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .stat-label {
            font-size: 1rem;
            color: #666;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 1.5rem 0;
            width: 100%;
            height: auto;
        }
        .tag {
            display: inline-block;
            background-color: #e9ecef;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            margin: 0.3rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0 1rem;
        }
        .footer a {
            color: #ffcc80;
        }
        .footer a:hover {
            color: white;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1rem;
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
        }
