@font-face {
    font-family: "KapraNeuePro";
    font-style: normal;
    font-weight: 400;
    src: url(fonts/Kapra-Neue-Pro-Regular.otf) format("opentype"); }
  
@font-face {
    font-family: "KapraNeuePro";
    font-style: medium;
    font-weight: 600;
    src: url(fonts/Kapra-Neue-Pro-Medium.otf) format("opentype"); }
  
@font-face {
    font-family: "KapraNeuePro";
    font-style: bold;
    font-weight: 700;
    src: url(fonts/Kapra-Neue-Pro-Semi-Bold.otf) format("opentype"); }
  
@font-face {
    font-family: "KapraNeuePro";
    font-style: bold;
    font-weight: 900;
    src: url(fonts/Kapra-Neue-Pro-Bold.otf) format("opentype"); }

@font-face {
    font-family: "KapraNeuePro-light";
    font-weight: 100;
    src: url(fonts/Kapra-Neue-Pro-Thin-Exp-Rd.otf) format("opentype"); }


body {
    margin: 0;
    font-family: "KapraNeuePro", sans-serif;
    color: white;
    background-color: #000;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    background-color: #131313;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

main {
    text-align: center;
    position: relative;
}

.background-overlay {
    background: url('assets/TVCine-PLUS-bg-2 1.jpg') no-repeat center center/cover;
    padding: 50px 20px;
}

.top-text {
    font-weight: bold;
    font-size: 60px;
    margin: 0;
}

.text {
    font-size: 25px;
    font-family: "KapraNeuePro-light", sans-serif;
}

.text a {
    color: #fff;
}

.iframe-container {
    border: 1px solid #fff;
    display: inline-block;
    max-width: 1200px;
    width: 100%;
}

footer {
    background-color: #20212B;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 10px 0;
}


/* Media Queries for Mobile */
@media (max-width: 768px) {

    .iframe-container{
        padding: 0;
    }
    .top-text {
        font-size: 45px;
    }
    .text {
        font-size: 30px;
        font-weight: 400;
    }
    iframe {
        height: 1000px; /* Adjust the height for mobile */
        overflow: hidden; /* Prevent scrolling */
    }
}