:root {
            --primary-gold: #FFD700;
            --deep-red: #8B0000;
            --royal-blue: #00008B;
            --sand-beige: #F5F5DC;
            --forest-green: #228B22;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--sand-beige) 0%, #ffffff 100%);
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 900;
            font-size: 2rem;
            background: linear-gradient(45deg, var(--deep-red), var(--primary-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(139,0,0,0.8), rgba(139,0,0,0.9)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 30px 0;
            padding: 40px;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--deep-red);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        h2 {
            border-left: 5px solid var(--primary-gold);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        .key-feature {
            background: linear-gradient(135deg, var(--royal-blue), var(--forest-green));
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 20px 0;
            transition: all 0.3s ease;
        }
        .key-feature:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .game-image {
            border: 3px solid var(--primary-gold);
            border-radius: 10px;
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .strategy-tip {
            background: var(--sand-beige);
            border-left: 4px solid var(--forest-green);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--deep-red), var(--royal-blue));
            font-weight: 600;
        }
        footer {
            background: linear-gradient(135deg, var(--deep-red), #000);
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 25px;
                margin: 15px 0;
            }
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--primary-gold) 0%, var(--primary-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0 2px;
        }
        .cultural-note {
            background: rgba(255,215,0,0.1);
            border: 1px solid var(--primary-gold);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }
