:root {
            --primary-gold: #FFD700;
            --secondary-red: #FF5733;
            --accent-green: #28A745;
            --dark-blue: #1E3A8A;
            --light-bg: #FFF8E1;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: var(--light-bg);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-gold) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-gold) !important;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 0.5rem;
        }
        h2 {
            border-left: 5px solid var(--secondary-red);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--accent-green);
            margin-top: 2rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #555;
        }
        .content-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        .gold-highlight {
            background: linear-gradient(120deg, transparent 0%, #FFF9C4 50%, transparent 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 700;
        }
        .game-feature {
            background: #f8f9fa;
            border-left: 4px solid var(--primary-gold);
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 5px 5px 0;
        }
        .strategy-tip {
            background: #E8F5E9;
            border: 1px solid var(--accent-green);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .strategy-tip i {
            color: var(--accent-green);
            margin-right: 0.5rem;
        }
        .img-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin: 2rem 0;
            transition: transform 0.3s ease;
        }
        .img-container:hover {
            transform: scale(1.02);
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary-gold);
            color: #333;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--secondary-red);
            color: white;
            transform: translateY(-5px);
        }
        footer {
            background: linear-gradient(to right, var(--dark-blue), #2D3748);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .content-section p {
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
