body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            background-color: #f5f0e6;
        }
        header {
            background: linear-gradient(135deg, #8a2be2, #ff6b6b);
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 0 0 10px 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .mobile-menu {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        nav a:hover {
            text-decoration: underline;
            transform: translateY(-2px);
        }
        h1 {
            color: #4a148c;
            border-bottom: 3px solid #ff6b6b;
            padding-bottom: 10px;
            margin-bottom: 25px;
        }
        h2 {
            color: #7b1fa2;
            margin: 30px 0 15px;
            border-left: 4px solid #ff8a65;
            padding-left: 10px;
        }
        h3 {
            color: #8e24aa;
            margin: 25px 0 10px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin: 10px 0;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .download-btn {
            background: linear-gradient(45deg, #4caf50, #2e7d32);
        }
        .login-btn {
            background: linear-gradient(45deg, #2196f3, #0d47a1);
        }
        .game-image {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 25px auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .strategy-section {
            background: #fff9f9;
            border-left: 4px solid #ff6b6b;
            padding: 15px 20px;
            margin: 20px 0;
        }
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            border-radius: 10px 10px 0 0;
        }
        .tags {
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .tag {
            background: #e0e0e0;
            color: #333;
            padding: 5px 10px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .tag:hover {
            background: #bdbdbd;
        }
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 10px;
                margin-top: 15px;
            }
            nav.active {
                display: flex;
            }
            .logo {
                font-size: 2rem;
            }
            body {
                padding: 0 15px;
            }
        }
