* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f9f4ff;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background: linear-gradient(135deg, #6a1b9a, #8e24aa);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #ffeb3b;
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffeb3b;
            border-bottom: 2px solid #ffeb3b;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #6a1b9a;
            text-align: center;
            margin: 30px 0;
            font-size: 2.8rem;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #8e24aa;
            margin: 40px 0 20px;
            font-size: 2.2rem;
            border-left: 5px solid #8e24aa;
            padding-left: 15px;
        }
        h3 {
            color: #9c27b0;
            margin: 30px 0 15px;
            font-size: 1.7rem;
            padding-bottom: 5px;
            border-bottom: 1px dashed #9c27b0;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
        }
        .highlight {
            font-weight: bold;
            color: #6a1b9a;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 15px 8px;
            background-color: #4caf50;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: 0.3s;
            text-align: center;
            font-size: 1.1rem;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #03a9f4;
        }
        .btn-login {
            background-color: #ff5722;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #9c27b0;
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin: 15px 0;
            padding: 10px 0;
            border-bottom: 1px solid #f0e6ff;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .review {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #ffeb3b;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-weight: bold;
            color: #5d4037;
            font-size: 1.2rem;
            margin-bottom: 8px;
            display: block;
        }
        .strategies-section, .events-section, .community-section {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .footer {
            background-color: #2d2d2d;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 30px 0;
        }
        .game-types h4, .tags h4 {
            margin-bottom: 15px;
            color: #ffeb3b;
            font-size: 1.3rem;
        }
        .game-types a, .tags a {
            color: #e0e0e0;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 8px;
            transition: 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffeb3b;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #444;
            font-size: 1rem;
            color: #b0b0b0;
        }
        ul {
            margin-left: 35px;
            margin-bottom: 25px;
        }
        ul li {
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #6a1b9a, #8e24aa);
                padding: 25px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links li {
                margin: 15px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.1rem;
            }
            .btn {
                padding: 12px 22px;
                font-size: 1rem;
                margin: 10px 5px;
                display: block;
                width: 90%;
                margin-left: auto;
                margin-right: auto;
            }
            .stats-item {
                flex-direction: column;
                margin: 20px 0;
            }
            .stats-item span:last-child {
                margin-top: 5px;
                font-weight: bold;
            }
        }
