:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #00bcd4;
            --dark-color: #1a237e;
            --light-color: #f3e5f5;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(74, 20, 140, 0.9)), url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--secondary-color), #ff8f00);
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 111, 0, 0.6);
        }
        .btn-secondary-custom {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 40px;
            color: var(--primary-color);
            position: relative;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .feature-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        .stats-box {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            color: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .review-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .reviewer-name {
            font-weight: 700;
            color: var(--primary-color);
        }
        .rating {
            color: #ffc107;
        }
        .game-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background: var(--light-color);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--secondary-color);
            color: white;
            text-decoration: none;
        }
        footer {
            background: linear-gradient(135deg, var(--dark-color), #0d1440);
            color: white;
            padding: 60px 0 20px;
        }
        .footer-links a {
            color: #e0e0e0;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: none;
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #b0b0b0;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 111, 0, 0.2) 0%, rgba(255, 111, 0, 0.2) 100%);
            background-repeat: no-repeat;
            background-size: 100% 30%;
            background-position: 0 90%;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
