* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

/* <===== Header CSS =====> */

main {
    width: 100%;
    min-height: auto;
    background-color: black;
    padding: 0px 30px;
    z-index: -5;
}

.menu {
    width: 100%;
    width: 100%;
    min-height: auto;
    background-color: black;
}

.menu-bar {
    width: 100%;
    height: 55px;
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5px;
}

.logo {
    width: 112px;
    height: 55px;
    background: url('img/logo/Netflix_Logo_PMS.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: default;
    z-index: 3;
}

.s-link {
    color: black;
    text-decoration: none;
    background-color: white;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 12px;
    z-index: 2;
    transition: .3s;
}

.s-link:hover {
    background-color: rgb(202, 202, 202);
    transition: .3s;
}

.s-link:active {
    background-color: rgb(148, 148, 148);
    transition: .1s;
}

/* <===== Main CSS =====> */

.detail-s::before {
    content: "";
    position: absolute;
    background: url('img/bg/PK-en-20250414-TRIFECTA-perspective_c4c798c6-946a-4e1b-97d6-3e2cbf7ac1d5_small.jpg');
    background-position: center;
    background-size: cover;
    opacity: 30%;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    z-index: -3;
}

.detail-s {
    position: relative;
    color: white;
    width: 100%;
    height: 400px;
    box-shadow: 0px 0px 50px rgba(255, 0, 0, 0.4);
    border-radius: 15px;
    /* border: 2px solid blue; */
    z-index: 1;
}

.detail {
    width: 100%;
    height: 400px;
    padding: 0px 55px;
}

.detail span {
    margin-top: 70px;
    width: 550px;
    font-size: 40px;
    font-weight: 900;
    transform: scale(0.8, 1);
    transform-origin: left;
    display: inline-block;
    line-height: 50px;
}

.detail p {
    font-weight: 550;
    transform-origin: left;
    line-height: 40px;
}

.detail .h3 {
    font-size: 12px;
    font-weight: 550;
    transform-origin: left;
    line-height: 40px;
}

.e-form {
    display: flex;
    align-items: center;
}

.e-form input {
    width: 400px;
    max-width: 100%;
    height: 45px;
    background-color: rgba(92, 92, 92, 0.815);
    color: white;
    margin: 10px 0px;
    border: none;
    border-radius: 50px;
    padding: 0px 15px;
}

input::placeholder {
    color: rgb(170, 170, 170);
    opacity: 1;
}

.e-form button {
    width: 150px;
    max-width: 100%;
    height: 45px;
    background-color: rgb(229, 9, 20);
    color: white;
    font-weight: 700;
    font-size: 15px;
    margin: 0px 6px;
    border: none;
    border-radius: 50px;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.e-form button:hover {
    background-color: rgba(229, 9, 20, 0.8);
    transition: 0.3s;
}

.svg3 {
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
    margin-left: 5px;
}

.t-text {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    text-decoration: none;
}

.t-text a {
    color: rgb(196, 196, 196);
    text-decoration: none;
    padding: 5px 10px;
    cursor: default;
    transition: 0.3s;
}

.t-text a:hover {
    color: white;
    text-shadow: 0px 0px 15px rgb(255, 255, 255);
    transition: 0.3s;
}

.parent-container {
    align-items: center;
    margin-bottom: 50px;
}

.t-box {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 25px;
    justify-content: center;
}

.t-link {
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.t-link:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.t-img {
    width: 100%;
    border-radius: 12px;
    transition: 0.2s ease-out;
    box-shadow: 0px 0px 15px rgb(88, 0, 88);
}

.t-num {
    position: absolute;
    margin-top: 3px;
    margin-left: -15px;
    color: rgba(0, 0, 0, 0.9);
    font-size: 40px;
    font-weight: 800;
    transform: scaleY(1.2);
    text-shadow:
        -1.2px -1.2px 0 rgba(255, 255, 255, 0.8),
        1.2px -1.2px 0 rgba(255, 255, 255, 0.8),
        -1.2px 1.2px 0 rgba(255, 255, 255, 0.8),
        1.2px 1.2px 0 rgba(255, 255, 255, 0.8);
    font-family: Arial, Helvetica, sans-serif;
    z-index: 6;
}

.last-container {
    padding: 0px 5px 30px 5px;
    max-width: 1000px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #757575;
}

.last-container .h33 {
    font-size: 12px;
    font-weight: 400;
}

.top-section {
    text-align: center;
    color: white;
}

.email-signup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.email-signup input {
    width: 300px;
    max-width: 100%;
    padding: 15px;
    background-color: rgba(92, 92, 92, 0.815);
    color: white;
    margin: 10px 0px;
    border: none;
    border-radius: 50px;
}

.email-signup button {
    width: 150px;
    max-width: 100%;
    height: 45px;
    background-color: rgb(229, 9, 20);
    color: white;
    font-weight: 700;
    font-size: 15px;
    margin: 0px 6px;
    border: none;
    border-radius: 50px;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.email-signup button:hover {
    background-color: rgba(229, 9, 20, 0.8);
    transition: 0.3s;
}

.svg33 {
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
    margin-left: 5px;
}

/* <===== Footer CSS =====> */
footer {
    padding: 30px 0px;
}

.footer-question {
    font-size: 12px;
}

.footer-question a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-question a:hover {
    /* text-decoration: none; */
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.footer-links a {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    /* text-decoration: none; */
    font-size: 12px;
    align-items: center;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    text-align: left;
}

.language-select {
    margin-top: 20px;
    display: inline-block;
    background: #000;
    color: rgba(255, 255, 255, 0.7);
    padding: 3px 10px;
    border: 1px solid #333;
    border-radius: 50px;
    font-size: 12px;
    cursor: default;
}

.netflix-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-top: 20px;
    cursor: default;
}