body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #FF4500; text-align: center; }
        h2 { color: #FF6347; border-bottom: 2px solid #FF4500; padding-bottom: 5px; }
        h3 { color: #FF8C00; }
        .logo { font-size: 28px; font-weight: bold; color: #FF4500; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .nav { background: #333; padding: 10px; position: relative; }
        .nav-links { display: flex; justify-content: center; }
        .nav-links a { color: white; padding: 10px 15px; text-decoration: none; }
        .mobile-toggle { display: none; position: absolute; right: 20px; top: 10px; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
        }
        .btn { display: inline-block; background: #FF4500; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .game-stats { background: #f5f5f5; padding: 15px; border-radius: 8px; }
        .footer { text-align: center; padding: 20px; background: #333; color: white; margin-top: 30px; }
