body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #FFF9E6;
        }
        header {
            background-color: #FF6B35;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        h1 {
            color: #FF6B35;
            font-size: 2.2em;
            margin-bottom: 20px;
            border-bottom: 2px solid #FF6B35;
            padding-bottom: 10px;
        }
        h2 {
            color: #E63946;
            font-size: 1.8em;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h3 {
            color: #457B9D;
            font-size: 1.4em;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #FF6B35;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 15px 0;
            transition: all 0.3s ease;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #E63946;
            transform: translateY(-2px);
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            margin: 20px auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #FF6B35;
            color: white;
        }
        tr:nth-child(even) {
            background-color: #FFF3E0;
        }
        .player-quote {
            background-color: #FFF3E0;
            border-left: 5px solid #FF6B35;
            padding: 15px;
            margin: 20px 0;
            font-style: italic;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background-color: #E63946;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9em;
        }
        footer {
            margin-top: 50px;
            padding: 30px 0;
            border-top: 2px solid #FF6B35;
            text-align: center;
            font-size: 0.9em;
            color: #666;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            body {
                padding: 10px;
            }
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.5em;
            }
        }
