body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #0a0e23;
            color: #e0e0e0;
        }
        header {
            background-color: #1a237e;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ffeb3b;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .game-buttons {
            margin: 20px 0;
            display: flex;
            gap: 15px;
        }
        .btn {
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s;
        }
        .download-btn {
            background-color: #4caf50;
            color: white;
        }
        .login-btn {
            background-color: #2196f3;
            color: white;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        h1 {
            color: #ffeb3b;
            border-bottom: 2px solid #4fc3f7;
            padding-bottom: 10px;
        }
        h2 {
            color: #4fc3f7;
            margin-top: 35px;
        }
        h3 {
            color: #90caf9;
            margin-top: 25px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .strategy-section {
            background-color: #12183a;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .player-review {
            background-color: #17204a;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
        }
        footer {
            margin-top: 50px;
            padding: 25px;
            background-color: #1a237e;
            border-radius: 8px;
            text-align: center;
        }
        .tag-container {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #3949ab;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            nav ul {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background-color: #1a237e;
                padding: 15px;
                flex-direction: column;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
        }
