:root {
            --primary-color: #ff6b35;
            --secondary-color: #1e88e5;
            --accent-color: #ffd54f;
            --text-dark: #2d3748;
            --text-light: #718096;
            --bg-light: #f7fafc;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .main-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-top: 20px;
            margin-bottom: 20px;
            overflow: hidden;
        }
        .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-transform: uppercase;
            letter-spacing: 1px;
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-color), #e64a19);
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 107, 53, 0.6);
        }
        .btn-secondary-custom {
            background: linear-gradient(45deg, var(--secondary-color), #1565c0);
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
        }
        .btn-secondary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(30, 136, 229, 0.6);
        }
        .content-section {
            padding: 40px 0;
        }
        h1, h2, h3 {
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.5rem;
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 214, 79, 0.2);
            padding: 15px;
            border-left: 4px solid var(--accent-color);
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .feature-box {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background: var(--bg-light);
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid #cbd5e0;
        }
        .tag:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        .stats-box {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 10px 0;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        .stats-label {
            font-size: 1rem;
            color: var(--text-light);
        }
        footer {
            background: var(--text-dark);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            font-weight: 700;
        }
        .footer-links a {
            color: #cbd5e0;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid #4a5568;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
