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

* {
    padding: 0;
    margin: 0;
    font-family: "Rubik", sans-serif;
}

body {
    background-color: black;
    min-height: 100vh;
    color: white;
}

.main {
    background-image: url(Assets/Images/background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
}

.main .box {
    height: 100vh;
    width: 100%;
    opacity: 0.75;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
}

nav {
    display: flex;
    max-width: 75vw;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

nav img {
    color: rgb(219, 0, 0);
    height: auto;
    width: 145px;
    position: relative;
    z-index: 10;
}

nav button {
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.hero {
    font-family: "Inter", sans-serif;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    position: relative;
    gap: 23px;
    padding: 0 30px;
}

.hero> :nth-child(1) {
    font-weight: 700;
    font-size: 58px;
    text-align: center;
}

.hero> :nth-child(2) {
    font-weight: 460;
    font-size: 22px;
    text-align: center;
}

.hero> :nth-child(3) {
    font-weight: 350;
    font-size: 14px;
    text-align: center;
}

.seperation {
    height: 7px;
    background-color: rgb(55, 55, 55);
}

.btn {
    padding: 3px 8px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

.btn-red-sm {
    background-color: rgb(227, 9, 19);
    color: white;
    padding: 8px 16px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-red-sm:hover {
    background-color: rgb(174, 6, 16);
    transition: 0.3s;
}

.btn-red {
    background-color: rgb(227, 9, 19);
    color: white;
    padding: 14px 22px;
    border: 1px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.btn-red:hover {
    background-color: rgb(174, 6, 16);
    transition: 0.3s;
}

.main input {
    background-color: rgb(22, 22, 22, 0.8);
    color: white;
    padding: 16px 24px;
    font-weight: 400;
    font-size: 16px;
    border: 0.1px solid rgb(201, 201, 201);
    border-radius: 4px;
    width: 300px;
}

.main input::placeholder {
    color: rgb(210, 210, 210);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.curve {
    position: relative;
    height: 30px;
    background: linear-gradient(to right, #e50914, #db0510);
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
}

@media (min-width: 768px) and (max-width: 1024px) {
    nav {
        max-width: 90vw;
    }
    .hero> :nth-child(1) {
        font-size: 45px;
    }
    .hero> :nth-child(2) {
        font-size: 20px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .main input {
        width: 260px;
    }
}

@media (min-width: 500px) and (max-width: 768px) {
    nav {
        padding: 0 20px;
        max-width: 100%;
    }
    nav img {
        width: 120px;
    }
    .hero> :nth-child(1) {
        font-size: 32px;
    }
    .hero> :nth-child(2) {
        font-size: 18px;
    }
    .hero> :nth-child(3) {
        font-size: 13px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .main input {
        width: 90%;
    }
    .btn-red {
        width: 90%;
        font-size: 18px;
        padding: 12px;
    }
}

@media (min-width: 320px) and (max-width: 500px) {
    nav img {
        width: 100px;
    }
    .hero {
        gap: 15px;
        padding: 0 15px;
    }
    .hero> :nth-child(1) {
        font-size: 24px;
    }
    .hero> :nth-child(2) {
        font-size: 16px;
    }
    .hero> :nth-child(3) {
        font-size: 12px;
    }
    .main input {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }
    .btn-red {
        font-size: 10px;
        padding: 6px;
    }
}

.trending {
    padding: 50px 13%;
    color: white;
}

.trending h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.trending-row {
    display: flex;
    gap: 50px;
    overflow-x: auto;
    scroll-behavior: smooth;
    counter-reset: trend;
}

.trending-row::-webkit-scrollbar {
    display: none;
}

.trending-card {
    position: relative;
    counter-increment: trend;
    flex: 0 0 auto;
    width: 160px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.trending-card img {
    width: 100%;
    border-radius: 8px;
    display: block;
    z-index: 1;
}

.trending-card::before {
  content: counter(trend);
  position: absolute;
  top: 140px;
  left: -11px;
  color: black;
  font-weight: bold;
  font-size: 90px;
  padding: 4px 10px;
  border-radius: 8px;
  -webkit-text-stroke: 2px white;
  pointer-events: none;
  z-index: 2;
}

.trending-card img:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
    cursor: pointer;
}


@media (min-width: 768px) and (max-width: 1024px) {
    .trending-row {
        padding: 40px 8%;
    }
    .trending h2 {
        font-size: 22px;
    }
    .trending-row {
        gap: 30px;
    }
    .trending-card {
        width: 140px;
    }
}

@media (min-width: 500px) and (max-width: 768px) {
    .trending-row {
        padding: 30px 5%;
    }
    .trending h2 {
        font-size: 20px;
        align-items: center;
    }
    .trending-row {
        gap: 20px;
    }
    .trending-card {
        width: 120px;
    }
}

@media (min-width: 320px) and (max-width: 500px) {
    .trending-row {
        padding: 20px 4%;
    }
    .trending h2 {
        font-size: 18px;
        align-items: center;
    }
    .trending-row {
        gap: 15px;
    }
    .trending-card {
        width: 100px;
    }
}

.reason {
    margin: 50px auto;
    max-width: 1000px;
    color: white;
    padding: 0px 13%;

}

.reason h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.reason-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.reason-card {
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    height: 270px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(
    180deg, 
    #0F1631 0%,     
    #2B0F3C 50%,
    #210C24 100%    
  );
}

.reason-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
    color: white;
}

.reason-card p {
    padding-top: 10px;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .reason {
        padding: 0 8%;
    }
    .reason h2 {
        font-size: 22px;
    }
    .reason-card {
        width: 220px;
        height: auto;
    }
}

@media (min-width: 500px) and (max-width: 768px) {
    .reason {
        padding: 0 5%;
    }
    .reason h2 {
        font-size: 20px;
    }
    .reason-row {
        justify-content: center;
    }
    .reason-card {
        width: 45%; 
        height: auto;
    }
}

@media (min-width: 320px) and (max-width: 500px) {
    .reason {
        padding: 0 4%;
    }    
    .reason h2 {
        font-size: 18px;
    }
    .reason-row {
        flex-direction: column;
        align-items: center;
    }
    .reason-card {
        width: 100%; 
        height: auto;
    }
    .reason-card h3 {
        font-size: 20px;
    }
    .reason-card p {
        font-size: 14px;
    }
}

.faq {
    margin: 50px auto;
    max-width: 1000px;
    padding: 0px 13%;
    color: white;
}

.faq h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.faqbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(53, 52, 52);
    padding: 20px;
    max-width: 75vw;
    margin: 10px auto;
    cursor: pointer;
}

.faqbox:hover {
    background-color: rgb(80, 78, 78);
    transition: 0.3s;
}

.faqbox span {
    font-size: 20px;
    font-weight: 400;
}

.signup span {
    font-size: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 20px 0px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .faq {
        padding: 0 8%;
    }
    .faq h2 {
        font-size: 22px;
    }
    .faqbox {
        max-width: 90%;
        padding: 18px;
    }
    .faqbox span {
        font-size: 18px;
    }
}

@media (min-width: 500px) and (max-width: 768px) {
    .faq {
        padding: 0 5%;
    }
    .faq h2 {
        font-size: 20px;
    }
    .faqbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        max-width: 100%;
        padding: 15px;
    }
    .faqbox span {
        font-size: 16px;
    }
    .signup span {
        font-size: 14px;
    }
}

@media (min-width: 320px) and (max-width: 500px) {
    .faq {
        padding: 0 4%;
    }
    .faq h2 {
        font-size: 18px;
    }
    .faqbox {
        padding: 12px;
    }
    .faqbox span {
        font-size: 15px;
    }
    .signup span {
        font-size: 13px;
        text-align: center;
    }
}

footer {
    color: rgb(203, 202, 202);
    max-width: 78vw;
    margin: auto;
    padding: 0px 13%;
}


.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

footer .questions {
    padding: 34px 0px;
    text-decoration: underline;
}

.footer a {
    font-size: 14px;
    color: rgb(203, 202, 202);
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

#language {
    background-color: rgb(22, 22, 22);
    color: white;
    padding: 7px;
    border-radius: 3px;
    width: 130px;
    margin-top: 10px;
    font-size: 14px;
    border: 0.1px solid rgb(201, 201, 201);
}

.copyright {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: rgb(181, 179, 179);
}

.recaptcha {
    margin-top: 30px;
    margin-bottom: 160px;
    padding-bottom: 90px;
    font-size: 13px;
    color: rgb(106, 106, 106);
}

.recaptcha a {
    color: rgb(94, 141, 191);
    text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer {
        grid-template-columns: 1fr 1fr;
    }
    footer {
        padding: 0px 8%;
    }
}

@media (min-width: 500px) and (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
    }
    .footer-item {
        margin-bottom: 20px;
    }
    footer {
        max-width: 95vw;
        padding: 0px 5%;
    }
    .copyright, 
    .recaptcha {
        font-size: 12px;
        text-align: center;
    }
    #language {
        width: 100%;
    }
}