: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: 800;
            font-size: 1.8rem;
            color: var(--deep-red) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(139,0,0,0.8), rgba(0,0,139,0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            color: var(--deep-red);
            border-left: 5px solid var(--primary-gold);
            padding-left: 15px;
            margin: 40px 0 20px 0;
        }
        .content-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255,215,0,0.2);
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 15px;
        }
        .keyword-highlight {
            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;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin: 20px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .timeline-item {
            border-left: 3px solid var(--primary-gold);
            padding-left: 25px;
            margin-bottom: 30px;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 13px;
            height: 13px;
            background: var(--deep-red);
            border-radius: 50%;
        }
        footer {
            background: linear-gradient(135deg, var(--deep-red) 0%, var(--royal-blue) 100%);
            color: white;
            padding: 40px 0 20px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .content-card {
                padding: 20px;
            }
        }
