* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a237e;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        h1 {
            color: #1a237e;
            margin: 30px 0;
            font-size: 2.2rem;
            text-align: center;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 10px;
        }
        h2 {
            color: #1a237e;
            margin: 40px 0 20px;
            font-size: 1.8rem;
            border-left: 4px solid #ffd700;
            padding-left: 15px;
        }
        h3 {
            color: #3f51b5;
            margin: 30px 0 15px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #d32f2f;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 15px 10px 15px 0;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #b71c1c;
        }
        .btn-download {
            background-color: #4caf50;
        }
        .btn-download:hover {
            background-color: #388e3c;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        ul {
            margin: 20px 0 20px 40px;
        }
        li {
            margin-bottom: 10px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        .stats-table th, .stats-table td {
            border: 1px solid #ddd;
            padding: 15px;
            text-align: left;
        }
        .stats-table th {
            background-color: #1a237e;
            color: white;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
        }
        .game-types a, .tags a {
            color: #bbb;
            text-decoration: none;
            display: inline-block;
            margin: 0 10px 10px 0;
            transition: color 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #bbb;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a237e;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .stats-table th, .stats-table td {
                padding: 10px;
                font-size: 0.9rem;
            }
        }
