:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #ffab00;
            --text-light: #f8f9fa;
            --text-dark: #212529;
            --bg-light: #ffffff;
            --bg-dark: #1a237e;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .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: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(74, 20, 140, 0.8), rgba(26, 35, 126, 0.9)), url('https://via.placeholder.com/1920x600') center/cover no-repeat;
            color: var(--text-light);
            padding: 100px 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: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
        }
        .btn-primary-custom:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
        }
        .btn-secondary-custom {
            background: transparent;
            border: 2px solid var(--text-light);
            color: var(--text-light);
            padding: 10px 28px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background: var(--text-light);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .content-section {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            margin: 25px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-text {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 20px;
            border-left: 5px solid var(--secondary-color);
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
            font-weight: 500;
        }
        .stat-box {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: var(--bg-light);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            background: #e3f2fd;
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .footer {
            background: var(--bg-dark);
            color: var(--text-light);
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-heading {
            color: var(--accent-color);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-link {
            color: #bdbdbd;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }
        .footer-link:hover {
            color: var(--accent-color);
            text-decoration: none;
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid #424242;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #9e9e9e;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .content-section {
                padding: 25px;
            }
        }
