:root {
            --primary-gold: #FFD700;
            --deep-purple: #4B0082;
            --royal-blue: #4169E1;
            --forest-green: #228B22;
            --crimson-red: #DC143C;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .hero-section {
            background: linear-gradient(rgba(75, 0, 130, 0.8), rgba(65, 105, 225, 0.9)), url('https://via.placeholder.com/1600x900') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-size: 3.5rem;
            font-weight: bold;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            color: var(--primary-gold);
            margin-bottom: 20px;
        }
        .nav-custom {
            background: var(--deep-purple) !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-gold) !important;
            transform: translateY(-2px);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin: 30px 0;
        }
        h1, h2, h3 {
            color: var(--deep-purple);
            margin-bottom: 25px;
            font-weight: 700;
        }
        h1 {
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 15px;
            font-size: 2.8rem;
        }
        h2 {
            border-left: 5px solid var(--royal-blue);
            padding-left: 15px;
            margin-top: 40px;
            font-size: 2.2rem;
        }
        h3 {
            color: var(--forest-green);
            font-size: 1.8rem;
            margin-top: 30px;
        }
        .key-feature {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 20px 0;
            transition: transform 0.3s ease;
        }
        .key-feature:hover {
            transform: translateY(-5px);
        }
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary-gold);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            margin: 25px 0;
            width: 100%;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--primary-gold) 0%, var(--primary-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 40%;
            background-position: 0 90%;
            font-weight: 700;
            padding: 0 5px;
        }
        .quest-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .quest-table th {
            background: var(--deep-purple);
            color: white;
            padding: 15px;
        }
        .strategy-tip {
            border-left: 4px solid var(--crimson-red);
            background: #fff5f5;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        footer {
            background: var(--deep-purple);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 25px;
            }
        }
