:root {
            --primary-gold: #FFD700;
            --deep-purple: #4B0082;
            --royal-blue: #000080;
            --emerald-green: #008000;
            --sunset-orange: #FF4500;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--deep-purple), var(--royal-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--deep-purple), var(--royal-blue));
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem !important;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            border-radius: 5px;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(75, 0, 130, 0.8), rgba(0, 0, 128, 0.9)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--deep-purple);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--sunset-orange);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--royal-blue);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .key-term {
            font-weight: bold;
            color: var(--deep-purple);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin: 1.5rem 0;
            transition: transform 0.3s ease;
            width: 100%;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .feature-list {
            list-style-type: none;
            padding-left: 0;
        }
        .feature-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 2rem;
        }
        .feature-list li:before {
            content: "⚡";
            position: absolute;
            left: 0;
            color: var(--sunset-orange);
        }
        .quote-box {
            background: linear-gradient(135deg, #fef9e7, #fef5e7);
            border-left: 5px solid var(--primary-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        .stat-box {
            background: linear-gradient(135deg, var(--royal-blue), var(--deep-purple));
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin: 1.5rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
        }
        .footer {
            background: linear-gradient(90deg, var(--deep-purple), var(--royal-blue));
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .logo-text {
                font-size: 1.8rem;
            }
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--deep-purple);
            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.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--royal-blue);
            transform: translateY(-5px);
            color: white;
        }
