:root {
            --primary-gold: #FFD700;
            --deep-blue: #1a237e;
            --rich-red: #b71c1c;
            --earth-brown: #5d4037;
            --cream-white: #f5f5f5;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, var(--cream-white) 0%, #e0e0e0 100%);
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            color: var(--deep-blue);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, var(--primary-gold), var(--rich-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
        }
        .logo-text:hover {
            transform: scale(1.05);
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--deep-blue) 0%, var(--earth-brown) 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 10px 15px !important;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(93, 64, 55, 0.8)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .content-section {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--deep-blue);
            margin-bottom: 20px;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--rich-red);
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--earth-brown);
            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: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 20px;
            border-radius: 8px;
            margin: 15px 0;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }
        .game-feature:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            margin: 20px 0;
        }
        .img-fluid:hover {
            transform: scale(1.02);
        }
        footer {
            background: linear-gradient(90deg, var(--deep-blue) 0%, var(--earth-brown) 100%);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--rich-red);
            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(--primary-gold);
            color: var(--deep-blue);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .logo-text {
                font-size: 1.8rem;
            }
        }
