:root {
            --primary-gold: #FFD700;
            --deep-purple: #4B0082;
            --rich-red: #DC143C;
            --forest-green: #228B22;
            --sand-beige: #F5F5DC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #333;
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--deep-purple), var(--primary-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-custom {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-bottom: 3px solid var(--primary-gold);
        }
        .nav-link {
            color: var(--deep-purple) !important;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 5px;
            margin: 0 5px;
        }
        .nav-link:hover {
            background-color: var(--primary-gold);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(75, 0, 130, 0.8), rgba(220, 20, 60, 0.7)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--deep-purple);
            margin-bottom: 20px;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 15px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--rich-red);
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--forest-green);
            margin-top: 30px;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-gold);
            margin: 20px 0;
        }
        .game-feature {
            background: var(--sand-beige);
            padding: 25px;
            border-radius: 10px;
            margin: 20px 0;
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        .game-feature:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transform: scale(1.02);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--deep-purple);
            margin-bottom: 15px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin: 20px 0;
        }
        img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            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.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--rich-red);
            transform: translateY(-5px);
        }
        footer {
            background: var(--deep-purple);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-links a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 25px;
            }
        }
