:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #00b0ff;
            --text-color: #333333;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #ffffff;
        }
        .logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #7b1fa2 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero-section h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #e65100;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .btn-secondary-custom {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            padding: 10px 28px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background-color: white;
            color: var(--primary-color);
        }
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary-color);
            display: inline-block;
        }
        .content-section {
            padding: 40px 0;
        }
        .content-section:nth-child(even) {
            background-color: var(--light-bg);
        }
        .feature-box {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 25px;
            transition: transform 0.3s ease;
            height: 100%;
        }
        .feature-box:hover {
            transform: translateY(-5px);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        .game-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .game-image:hover img {
            transform: scale(1.03);
        }
        .highlight-text {
            background-color: rgba(255, 111, 0, 0.1);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e0e0e0;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--accent-color);
            color: white;
            text-decoration: none;
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 20px;
        }
        .footer a {
            color: #ecf0f1;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary-color);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            font-size: 0.9rem;
        }
        .rating-stars {
            color: #ffc107;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .logo {
                font-size: 1.5rem;
            }
        }
