body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            background-color: #f5f5f5;
        }
        header {
            background-color: #1a1a2e;
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        nav ul {
            display: flex;
            list-style: none;
            padding: 0;
        }
        nav ul li {
            margin-left: 20px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: #4ecdc4;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        main {
            background-color: white;
            padding: 30px;
            margin-top: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #1a1a2e;
            font-size: 2.5em;
            margin-bottom: 20px;
            border-bottom: 2px solid #4ecdc4;
            padding-bottom: 10px;
        }
        h2 {
            color: #4ecdc4;
            font-size: 1.8em;
            margin: 30px 0 15px;
        }
        h3 {
            color: #166088;
            font-size: 1.4em;
            margin: 25px 0 10px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #ff6b6b;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin: 15px 5px 15px 0;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #ff5252;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 0 8px rgba(0,0,0,0.2);
        }
        .strategy-section {
            background-color: #f8f9fa;
            padding: 20px;
            border-left: 4px solid #4ecdc4;
            margin: 25px 0;
        }
        .community-section {
            background-color: #e9f7fe;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        .stats-box {
            background-color: #1a1a2e;
            color: white;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
        }
        .stats-box h3 {
            color: white;
            margin-top: 0;
        }
        .stats-number {
            font-size: 2.5em;
            font-weight: bold;
            color: #4ecdc4;
            margin: 10px 0;
        }
        footer {
            background-color: #1a1a2e;
            color: white;
            padding: 30px 0;
            margin-top: 30px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        .footer-links a {
            color: #4ecdc4;
            margin: 0 15px;
            text-decoration: none;
        }
        .tags {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #333;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9em;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                width: 100%;
                margin-top: 20px;
                flex-direction: column;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            main {
                padding: 20px;
            }
            h1 {
                font-size: 2em;
            }
            h2 {
                font-size: 1.5em;
            }
        }
