:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #2ecc71;
            --dark-color: #2c3e50;
            --light-color: #ecf0f1;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            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);
            overflow: hidden;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .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);
        }
        .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(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
            border-bottom: 5px solid var(--primary-color);
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            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: var(--dark-color);
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background: #1a252f;
            transform: translateY(-3px);
        }
        .section-title {
            color: var(--dark-color);
            font-weight: 800;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .content-section {
            padding: 60px 0;
        }
        .content-section:nth-child(even) {
            background-color: #f8f9fa;
        }
        .feature-box {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--primary-color);
        }
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .highlight-text {
            background: linear-gradient(120deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background: #e9ecef;
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        .stat-box {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
        }
        .footer a {
            color: var(--light-color);
            transition: all 0.3s ease;
        }
        .footer a:hover {
            color: var(--primary-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;
            opacity: 0.7;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
        }
