@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    background-color: aliceblue;
}

i {
    margin-left: 5px;
    margin-right: 5px;
}

.navbar {
    padding: 1rem;
    background-image: linear-gradient(to right, rgb(139, 65, 0), rgb(139, 0, 95),rgb(0, 90, 128));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: large;
    font-weight: bold;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 15px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-btn {
    padding: 10px 8px;
    background-color: rgb(139, 0, 0);
    border-radius: 10px;
}

.cta-btn:hover {
    background-color: green;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: navy;
        position: absolute;
        top: 80px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

.home {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner {
    margin-top: 20px;
    padding: 30px 24px;
    background-color: rgb(139, 0, 118);
    border-radius: 20px;
    width: 25vw;
    color: white;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.m77-game-logo {
    width: 200px;
    height: 200px;
    border-radius: 55px;
    margin-bottom: 10px;
}

.cta-button {
    margin-top: 20px;
    text-decoration: none;
    color: white;
    padding: 10px 8px;
    background-color: rgb(255, 0, 0);
    border-radius: 10px;
}

.cta-button:hover {
    background-color: green;
}

@media (max-width: 768px) {
    .banner {
        width: 90vw;
    }
}

.features {
    padding: 2rem 1rem;
    background-color: antiquewhite;
    text-align: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cards {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.card {
    padding: 40px 32px;
    background-color: rgb(60, 0, 255);
    border-radius: 20px;
    color: white;
}

@media (max-width: 768px) {
    .cards {
        flex-direction: column;
    }
}

.screenshorts {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.screenshort {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.screen {
    width: 300px;
    height: 600px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .screenshort {
        flex-direction: column;
    }
}

.games {
    padding: 2rem 1rem;
    background-color: antiquewhite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.game {
    margin-top: 20px;
    display: flex;
    gap: 1rem;
}

.game-card {
    padding: 20px 16px;
    background-color: blueviolet;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.game-card img {
    width: 170px;
    height: 170px;
    border-radius: 35px;
}

@media (max-width: 768px) {
    .game {
        flex-direction: column;
    }

    .game-card {
        width: 90vw;
    }
}

.faq {
    padding: 2rem 1rem;
    text-align: center;
    font-weight: 600;
}

footer {
    padding: 2rem 1rem;
    background-image: linear-gradient(to left, rgb(139, 42, 0), rgb(134, 0, 139),rgb(128, 0, 77));
    font-size: large;
    font-weight: bold;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: white;
}

.privacy {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.terms {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}