@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    color: #313127;
    min-height: 100vh;
    font-size: 20px;
    line-height: 32px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

/* Header Styles */
.wm-header {
    background: #ffffff;
    backdrop-filter: blur(10px);
    padding: 36px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.wm-header-container {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.wm-logo {
    display: flex;
    align-items: center;
    gap: 10px 40px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #313127;
}

.wm-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.wm-nav-link {
    color: #3A3C4E;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.wm-nav-link:hover {
    color: #316BFF;
}

.wm-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.wm-mobile-menu-bar {
    width: 25px;
    height: 3px;
    background: #316BFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.wm-mobile-menu-toggle.wm-active .wm-mobile-menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.wm-mobile-menu-toggle.wm-active .wm-mobile-menu-bar:nth-child(2) {
    opacity: 0;
}

.wm-mobile-menu-toggle.wm-active .wm-mobile-menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -6px);
}

.wm-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.wm-mobile-nav.wm-active {
    display: flex;
    animation: wm-slideDown 0.3s ease-out;
}

@keyframes wm-slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wm-mobile-nav-link {
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: color 0.3s ease;
    color: #313127;
}

.wm-mobile-nav-link:last-child {
    border-bottom: none;
}

.wm-mobile-nav-link:hover {
    color: #316BFF;
}

/* Hero Section */
.wm-hero {
    background-color: #DEF1FF;
    background-image: url(../images/wm-hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 20px;
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wm-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.wm-hero-title {
    font-size: 72px;
    line-height: 82px;
    font-weight: 700;
    margin-bottom: 42px;
}

.wm-hero-description {
    margin-bottom: 42px;
}

.wm-download-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 270px;
    width: 100%;
}

.wm-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Games Section */
.wm-games {
    max-width: 1320px;
    margin: 0 auto;
    padding: 100px 20px 50px;
}

.wm-game-card {
    border-radius: 20px;
    padding: 60px 70px;
    margin-bottom: 40px;
    background: #DEF1FF;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 70px;
    overflow: hidden;
    transition: 0.3s !important;
}

.wm-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.wm-game-card:last-child {
    margin-bottom: 0;
}

.wm-game-image {
    border-radius: 20px;
    overflow: hidden;
}

.wm-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wm-game-content {
    align-content: center;
}

/* Games mini Section */

.wm-mini-games {
    max-width: 1320px;
    margin: 0 auto;
    padding: 50px 20px 50px;
}

.wm-mini-games-grid {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 20px;
}

.wm-mini-game-image {
    overflow: hidden;
    border-radius: 20px;
}

.wm-mini-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wm-mini-game-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* Reviews Section */

.wm-reviews {
    max-width: 1530px;
    margin: 0 auto;
    padding: 100px 20px 150px;
}

.wm-reviews-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 900;
    padding-bottom: 42px;
    border-bottom: 1px solid #0000001F;
}

.wm-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}

.wm-review-list {
    list-style: none;
    font-style: italic;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 42px;
}

.wm-review-text {
    color: #3A3C4E;
    line-height: 1.5;
    font-style: italic;
}

.wm-review-image {
    border-radius: 32px;
    overflow: hidden;
}

.wm-review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.wm-footer {
    background: #DEF1FF;
    padding: 38px 20px;
}

.wm-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.wm-footer-info h3 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
    color: #316BFF;
    margin-bottom: 20px;
}

.wm-footer-info-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wm-footer-info-nav a {
    text-decoration: none;
    color: #3A3C4E;
}

.wm-footer-item {
    display: flex;
    align-items: center;
}

.wm-footer-item img {
    margin-right: 10px;
}

.wm-page-material {
    max-width: 1320px;
    margin: 0 auto;
    padding: 100px 20px 50px;
}

.wm-info-container h1 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.wm-info-container h2 {
    font-size: 32px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.wm-info-container h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.wm-info-container ul {
    padding-left: 24px;
}

.wm-info-container p {
    margin-bottom: 20px;
}

.wm-info-container a {
    text-decoration: none;
    color: #316BFF;
    font-weight: 700;
}


/* Mobile Responsiveness */
@media (max-width: 1024px) {
    body {
        font-size: 18px;
        line-height: 34px;
    }

    .wm-logo {
        gap: 20px;
        font-size: 18px;
        line-height: 26px;
    }

    .wm-game-card {
        padding: 40px;
        gap: 40px;
    }

    .wm-reviews {
        padding: 40px 20px 80px;
    }

    .wm-reviews-grid {
        gap: 40px;
    }

    .wm-reviews-title {
        padding-bottom: 24px;
    }

    .wm-review-list {
        margin-top: 24px;
    }

    .wm-footer-info h3 {
        font-size: 28px;
        line-height: 38px;
    }

    .wm-download-btn {
        max-width: 220px;
    }
}




@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 28px;
    }

    .wm-header {
        position: relative;
        padding: 24px 0;
    }

    .wm-header-container {
        padding: 0 15px;
    }

    .wm-nav {
        display: none;
    }

    .wm-mobile-menu-toggle {
        display: flex;
    }

    .wm-hero {
        padding: 60px 20px 60px;
        height: auto;
    }

    .wm-hero-title {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 24px;
    }

    .wm-games {
        padding: 60px 20px 40px;
    }

    .wm-mini-games {
        padding: 60px 20px 40px;
    }

    .wm-game-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
        text-align: center;
    }

    .wm-mini-games-grid {
        grid-template-columns: 1fr;
    }

    .wm-mini-game-card {
        text-align: center;
        align-items: center;
    }

    .wm-reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .wm-reviews-title {
        font-size: 32px;
        line-height: 42px;
    }

    .wm-footer-container {
        gap: 40px;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .wm-footer-info-nav {
        text-align: center;
        align-items: center;
    }

    .wm-page-material {
        padding: 50px 20px 40px;
    }

    .wm-info-container h1 {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 24px;
    }

    .wm-info-container h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .wm-info-container h3 {
        font-size: 18px;
        line-height: 26px;
    }
}