:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #00b0ff;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #ffffff;
        }
        .logo-text {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
            border-bottom: 2px solid var(--secondary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(74, 20, 140, 0.85), rgba(0, 176, 255, 0.8)), url('https://via.placeholder.com/1920x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .content-section {
            padding: 40px 0;
        }
        .highlight-box {
            background-color: var(--bg-light);
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .key-feature {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .game-image {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .fact-box {
            background-color: #e3f2fd;
            border: 1px solid var(--accent-color);
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }
        .icon-bullet {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-heading {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 20px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--secondary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .logo-text {
                font-size: 1.6rem;
            }
        }
