@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: rgb(124, 227, 103);
}

.navbar {
    padding: 1rem;
    background-image: linear-gradient(to right, red, gold, blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    font-size: large;
    font-weight: bold;
    color: white;
}

.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, gold, rgb(234, 3, 3));
    border-radius: 10px;
}

.cta-btn:hover {
    background-image: linear-gradient(to left, rgb(65, 24, 161), gold);
}

.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;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

.hero {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero p {
    margin-top: 10px;
    font-size: medium;
    font-weight: 500;
}

.cta {
    margin-top: 20px;
    padding: 50px 80px;
    background-color: rgb(255, 94, 0);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.teenpati-logo {
    width: 100px;
    height: 100px;
}

.cta h2 {
    margin-top: 10px;
    color: white;
}

.cta p {
    color: white;
    font-size: large;
    font-weight: bold;
}

.cta-button {
    margin-top: 10px;
    padding: 10px 8px;
    text-decoration: none;
    background-color: rgb(84, 6, 218);
    color: white;
    border-radius: 10px;
}

.cta-button:hover {
    background-color: rgb(7, 226, 22);
}

.about {
    padding: 2rem 1rem;
    background-color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about p {
    margin-top: 10px;
    font-size: medium;
    font-weight: 500;
    text-align: center;
}

.cards {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.card {
    padding: 10px 8px;
    background-color: rebeccapurple;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    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 {
    display: flex;
    gap: 2rem;
    margin-top: 20px;
}

.screen {
    width: 400px;
    border-radius: 25px;
}

@media (max-width: 768px) {
    .screenshorts {
        display: flex;
        flex-direction: column;
    }

    .screenshort {
        display: flex;
        flex-direction: column;
    }

    .screen {
        width: 300px;
        height: 300px;
        border: 25px;
    }
}

.games {
    padding: 2rem 1rem;
    background-color: rgb(114, 182, 214);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.games p {
    margin-top: 10px;
    font-size: medium;
    font-weight: 500;
    text-align: center;
}

.game {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.games-card {
    padding: 50px 20px;
    border-radius: 20px;
    background-color: azure;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 40vw;
    max-height: 40vh;
    text-wrap-mode: wrap;
    width: 600px;
}

.games-card h3 {
    margin-top: 10px;
}

.games-card img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .games-card {
        max-width: 80vw;
        width: 1200px;
    }
}

.contact {
    padding: 2rem 1rem;
    background-color: rgb(84, 201, 224);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact p {
    margin-top: 10px;
    font-size: medium;
    font-weight: 500;
    text-align: center;
}

.form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form input {
    padding: 10px 8px;
    border-radius: 10px;
    width: 30vw;
}

.form textarea {
    padding: 10px 8px;
    border-radius: 10px;
    width: 30vw;
}

.form button {
    padding: 10px 8px;
    background-color: green;
    color: white;
    border-radius: 10px;
    font-size: large;
    font-weight: bold;
}

form button:hover {
    background-color: rgb(32, 226, 32);
}

@media (max-width: 768px) {
    .form input {
        padding: 10px 8px;
        border-radius: 10px;
        width: 70vw;
    }

    .form textarea {
        padding: 10px 8px;
        border-radius: 10px;
        width: 70vw;
    }
}

.faq {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faqs {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.faqs p {
    margin-top: 20px;
    font-size: medium;
    font-weight: 500;
}

.warning {
    padding: 2rem 1rem;
    background-color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(228, 25, 25);
}

.warning p {
    margin-top: 20px;
    font-size: medium;
    font-weight: 500;
}

footer {
    padding: 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    font-size: medium;
    font-weight: 500;
}