@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;
}

body {
    line-height: 1.6;
    background-color: aliceblue;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    padding: 1rem;
    background-image: linear-gradient(to right, blue, darkred);
    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: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

.cta-btn {
    padding: 10px 8px;
    background-image: linear-gradient(to left, red, darkorange);
    border-radius: 10px;
}

.cta-btn:hover {
    background-image: linear-gradient(to right, green, blue);
}

.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: blue;
        position: absolute;
        top: 80px;
        left: 0;
        text-align: center;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

.hero {
    padding: 2rem 1rem;
    background-color: aliceblue;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.banner {
    padding: 30px 24px;
    background-color: red;
    color: white;
    border-radius: 20px
}

.banner p {
    font-size: medium;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.win-rummy-logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.cta-button {
    padding: 10px 8px;
    background-color: #58dc0b;
    color: white;
    border-radius: 10px;
    font-size: large;
    font-weight: bold;
    text-decoration: none;
}

.cta-button:hover {
    background-color: blue;
}

.features {
    padding: 2rem 1rem;
    background-color: antiquewhite;
    color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature {
    margin-top: 30px;
    display: flex;
    gap: 2rem;
}

.feature-card {
    padding: 10px 8px;
    background-color: blue;
    color: white;
    border-radius: 20px;
    width: 30vw;
}

@media (max-width: 768px) {
    .feature {
        display: flex;
        flex-direction: column;
    }

    .feature-card {
        width: 90vw;
    }
}

.screenshorts {
    padding: 2rem 1rem;
    text-align: center;
}

.screenshort {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.screen {
    width: 250px;
    height: 500px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .screenshort {
        display: flex;
        flex-direction: column;
    }
}

.games {
    padding: 2rem 1rem;
    background-color: antiquewhite;
    text-align: center;
}

.game {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.game-card {
    padding: 20px 16px;
    background-color: red;
    color: white;
    border-radius: 20px;
}

.game-card img {
    width: 150px;
    height: 150px;
}

@media (max-width: 768px) {
    .game {
        display: flex;
        flex-direction: column;
    }

    .game-card {
        width: 90vw;
    }

    .game-card img {
        width: 300px;
        height: 300px;
    }
}

.faq {
    padding: 2rem 1rem;
    text-align: center;
}

.warning {
    padding: 2rem 1rem;
    background-color: antiquewhite;
    color: purple;
    font-size: medium;
    font-weight: bold;
    text-align: center;
}

footer {
    padding: 2rem 1rem;
    background-image: linear-gradient(to right, blue, darkred);
    color: white;
    text-align: center;
    font-size: large;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    footer {
        font-size: medium;
        align-items: start;
        text-align: start;
    }
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: white;
}

.privacy {
    padding: 2rem 1rem;
    background-color: aliceblue;
    font-size: medium;
}

.policy {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.policy li {
    margin-left: 1rem;
}