* {
    margin: 0;
    padding: 0;
}

/* ---------- HEADER ---------- */
header {
    /* width: 100%; */
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 25px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(97, 95, 95);
    line-height: 1.2;
    text-decoration: none;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    margin-top: 23px;
    color: rgb(92, 90, 90);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 1rem;
    text-align: center;
}



nav a:hover {
    color: #58e23c;
}

header button {
    background: #bd57ec;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

header button a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 600;
}

header button:hover {
    background-color: #e84118;
    transform: scale(1.05);
}

.menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: rgb(0, 0, 0);
}


@media (max-width: 900px) {
    header {
        /* width: 100%; */
        background-color: #ffffff;
        color: rgb(0, 0, 0);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 25px;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);

    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #f0f0f0;
        width: 100%;
        flex-direction: column;
        text-align: center;


    }


    nav.active {
        display: flex;
        width: auto;
        left: 80%;
        height: 100vh;
        border: dashed;
        border-width: 1px 2px;
        border-radius: 40px;
        -webkit-border-top-left-radius: 16px;
        -webkit-border-bottom-right-radius: 58px;
        -webkit-border-bottom-left-radius: 58px;
        -moz-border-radius-topleft: 16px;
        -moz-border-radius-bottomright: 58px;
        -moz-border-radius-bottomleft: 58px;
        border-top-left-radius: 16px;
        border-bottom-right-radius: 58px;
        border-bottom-left-radius: 58px;
    }


    .menu-btn {
        display: block;
    }

    .btn {
        margin-top: 11px;
    }

    .bt {
        display: none;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }


}

/* destop only css */
@media only screen and (min-width:1100px) and (max-width: 1920px) {

    header {
        background-color: #f1f1f1;
    }

    nav a:hover {
        color: #492c98;
        border-radius: 10px;
        margin: 10px;
    }

    .btn {
        display: none;
    }


}

/* laptop only css */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .btn {
        display: none;
    }

}







/* phone */
@media only screen and (min-width: 360px) and (max-width: 768px) {


    header {
        border-radius: 1% 99% 0% 100% / 72% 0% 100% 28%;
    }

}




/* footer */

/* footer */
footer {
    background: linear-gradient(120deg, #131212e4, #272626a7);
    color: #a5a1a1eb;
    font-family: 'Outfit', sans-serif;
    margin-top: 60px;
    padding: 40px 20px 10px;
    border-top: 3px solid #f8b500;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-center-f {
    display: flex;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-container h3,
.footer-container h4 {
    color: #c85000;
    margin-bottom: 15px;
}

.footer-container p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li {
    margin: 8px 0;
}

.footer-center ul li a {
    text-decoration: none;
    color: #72a6efbe;
    transition: color 0.3s ease;
}

.footer-center ul li a:hover {
    color: #c85000;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #f1c27d;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #b4adad;
}



@media (max-width: 768px) {
    footer {
        text-align: center;
        /* width: 100%; */
    }

    .footer-center-f {
        display: flex;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .poster-section {
        height: 50vh;
        background-size: 100%;
    }
}




/* 
    #installBtn:hover {
      background: linear-gradient(135deg, #ffb300, #ff7043);
      transform: scale(1.05);
      box-shadow: 0 6px 14px rgba(0,0,0,0.4);
    } */

@media (max-width:424px) {
    body {
        background-color: rgb(215 232 215);
    }

    .logo p {
        font-size: 1.4vh;
    }

    .regLink i {
        font-size: 1.2vh;
    }


    button {
        padding: 5px;
    }

    .mn .content h1 {
        font-size: 1.3rem;
    }
   .mn h4 {
    font-size: 1rem;
   }
}

.mn {
    margin-top: 10px;

}


/* /////////////////////////////////////////////////////////////////////////////////// */

@media only screen and (min-width:800px) {

    #body {
        display: none;
    }

}

@media (min-width: 350px) and (max-width: 800px) {

    #not-supported {
        display: none;
    }
}

@media (max-width:350px) {
    #body {
        display: none;
    }


}