:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #00a8ff;
            --text-dark: #2d3436;
            --text-light: #636e72;
            --bg-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #fff;
        }
        .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);
        }
        .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(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            position: relative;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        .content-section {
            padding: 80px 0;
        }
        .content-section:nth-child(even) {
            background-color: var(--bg-light);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 1.5rem;
        }
        .game-image:hover {
            transform: translateY(-5px);
        }
        .highlight-box {
            background: linear-gradient(135deg, #ffecd2, #fcb69f);
            border-left: 5px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 5px;
            margin: 2rem 0;
        }
        .fact-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }
        .fact-item:hover {
            transform: translateY(-5px);
        }
        .fact-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1rem;
        }
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .social-icon {
            font-size: 1.5rem;
            margin: 0 10px;
            color: white;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 50px 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
