body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #0a0e2a;
            color: #e0e0e0;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: #1a237e;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ffeb3b;
            text-shadow: 2px 2px 4px #000;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #ffeb3b;
            border-bottom: 2px solid #4fc3f7;
            padding-bottom: 10px;
        }
        h2 {
            color: #4fc3f7;
            margin-top: 30px;
        }
        h3 {
            color: #90caf9;
        }
        .cta-button {
            display: inline-block;
            padding: 12px 25px;
            background-color: #ff5722;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            margin: 10px 0;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .cta-button:hover {
            background-color: #e64a19;
        }
        .game-image {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th, td {
            border: 1px solid #444;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #1a237e;
        }
        .tag-cloud {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background-color: #303f9f;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
        }
        footer {
            margin-top: 50px;
            padding: 20px;
            background-color: #1a237e;
            border-radius: 8px;
            text-align: center;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 80px;
                left: 0;
                background-color: #1a237e;
                padding: 20px;
            }
            nav ul.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            header {
                flex-direction: column;
                align-items: flex-start;
            }
        }
