```css
/* =========================
   GENERAL
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: linear-gradient(
        135deg,
        #080712,
        #15122B,
        #242044,
        #0B0A14
    );

    font-family: Georgia, serif;
    color: white;
}

hr {
    width: 70%;
    height: 2px;
    border: none;

    margin: 50px auto;

    background: linear-gradient(
        to right,
        transparent,
        #FFD166,
        transparent
    );
}


/* =========================
   HEADER
========================= */

header {
    text-align: center;
    padding-top: 40px;
}

header h1 {
    width: min(700px, 90%);
    margin: 0 auto 20px;
    padding: 20px;

    font-size: clamp(50px, 8vw, 90px);

    color: gold;

    background: linear-gradient(
        135deg,
        transparent,
        rgb(42, 42, 58),
        transparent
    );

    border: 1px solid #14131d;
    border-radius: 30px;

    transition: 0.4s;
}

header h1:hover {
    transform: scale(1.05);
}

header p {
    width: min(300px, 80%);
    margin: 0 auto;
    padding: 10px;

    color: gold;

    background-color: #15122B;

    border: 1px solid #14131d;
    border-radius: 70px;

    transition: 0.4s;
}

header p:hover {
    transform: scale(1.05);
}


/* =========================
   NAVIGATION
========================= */

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 70%;
    margin: 40px auto 5px;
    padding: 5px;

    gap: 10px;

    background: linear-gradient(
        135deg,
        #0B0A14,
        #17152B,
        #0B0A14
    );

    border-radius: 50px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.5);
}

nav a {
    padding: 12px 18px;

    color: gold;
    text-decoration: none;

    font-size: 17px;
    font-weight: bold;

    border-radius: 50px;

    transition: 0.3s ease;
}

nav a:hover {
    color: #FFD166;

    background-color:
        rgba(255, 209, 102, 0.08);

    transform: translateY(-3px);
}


/* =========================
   HERO
========================= */

.hero {
    text-align: center;
}

.hero h2 {
    width: 70%;
    margin: 40px auto;
    padding: 20px;

    font-size: clamp(35px, 5vw, 60px);

    color: gold;

    background: linear-gradient(
        135deg,
        transparent,
        rgb(42, 42, 58),
        transparent
    );

    border: 1px solid #14131d;
    border-radius: 30px;

    transition: 0.4s;
}

.hero h2:hover {
    transform: translateY(-4px);
}

.hero p {
    width: 50%;
    margin: 40px auto;
    padding: 20px;

    color: gold;

    line-height: 1.8;

    background-color: #0B0A14;

    border: 1px solid #14131d;
    border-radius: 30px;

    transition: 0.4s;
}

.hero p:hover {
    transform: scale(1.03);
}


/* =========================
   SECTION TITLES
========================= */

.section-title {
    width: min(400px, 80%);

    margin: 40px auto;
    padding: 25px;

    text-align: center;

    font-size: clamp(30px, 5vw, 50px);

    color: gold;

    background: linear-gradient(
        135deg,
        transparent,
        rgb(42, 42, 58),
        transparent
    );

    border: 1px solid black;
    border-radius: 60px;

    transition: 0.4s;
}

.section-title:hover {
    transform: scale(1.05);
}


/* =========================
   MOVIE CARDS
========================= */

.movies {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 25px;

    width: 90%;
    margin: 40px auto;
}

.movie-card {
    width: 250px;
    padding: 25px;

    text-align: center;

    background: linear-gradient(
        135deg,
        transparent,
        rgb(42, 42, 58),
        transparent
    );

    border: 1px solid black;
    border-radius: 40px;

    transition: 0.4s;
}

.movie-card h3 {
    margin-bottom: 20px;

    color: gold;
    font-size: 30px;
}

.movie-card p {
    margin: 10px 0;

    color: gold;
    font-size: 20px;
}

.movie-card:hover {
    transform: translateY(-10px) scale(1.05);
}


/* =========================
   TABLE
========================= */

table {
    width: 60%;
    margin: 40px auto;

    border-collapse: collapse;

    text-align: center;

    background-color: rgb(20, 20, 50);

    border-radius: 30px;
    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(6, 5, 78, 0.7);
}

.top {
    padding: 20px;

    color: gold;
    font-size: 35px;
}

th {
    padding: 18px;

    color: gold;

    background: linear-gradient(
        147deg,
        transparent,
        rgb(32, 32, 75),
        transparent
    );

    border-bottom: 2px solid goldenrod;
}

td {
    padding: 16px;

    color: gold;

    border: 1px solid rgb(119, 104, 218);
}

tr {
    transition: 0.3s;
}

tbody tr:hover {
    background-color: rgb(6, 5, 78);
}


/* =========================
   CATEGORIES
========================= */

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 50px;

    width: 80%;
    margin: 50px auto;
}

.category-card {
    width: 280px;

    padding: 30px;

    text-align: center;

    background: linear-gradient(
        145deg,
        rgb(32, 32, 50),
        rgb(48, 67, 131)
    );

    border: 2px solid gold;
    border-radius: 25px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.4);

    transition: 0.4s;
}

.category-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.6);
}

.category-card h3 {
    color: gold;
    font-size: 25px;
}

.category-card li {
    padding: 10px;
    margin: 5px 0;

    transition: 0.3s;
}

.category-card li:hover {
    color: gold;
    transform: translateX(8px);
}


/* =========================
   TRAILER
========================= */

.trailer-video {
    display: block;

    width: 70%;
    height: 400px;

    margin: 0 auto 40px;

    border: 2px solid gold;
    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5);
}


/* =========================
   FORM
========================= */

form {
    display: flex;
    flex-direction: column;

    width: min(600px, 90%);

    margin: 50px auto;
    padding: 45px;

    background: linear-gradient(
        135deg,
        transparent,
        rgb(145, 145, 209),
        transparent
    );

    border: 2px solid rgb(120, 120, 190);
    border-radius: 25px;

    box-shadow:
        0 15px 35px rgba(50, 50, 100, 0.25);
}

form > label {
    width: 80%;
    margin: 18px auto 8px;

    color: rgb(55, 55, 120);

    font-size: 20px;
    font-weight: bold;

    text-align: left;
}

form input,
form select,
textarea {
    width: 80%;

    margin: 5px auto 15px;
    padding: 13px;

    border: 2px solid rgb(120, 120, 190);
    border-radius: 12px;

    font-size: 16px;
    font-family: Arial, sans-serif;

    background-color: white;

    transition: 0.3s;
}

form input:focus,
form select:focus,
textarea:focus {
    outline: none;

    border-color: rgb(80, 80, 170);

    box-shadow:
        0 0 12px rgba(80, 80, 170, 0.35);
}

form h3 {
    width: 80%;
    margin: 25px auto 15px;

    color: rgb(55, 55, 120);

    font-size: 22px;

    text-align: left;
}


/* Options */

.option {
    display: flex;
    align-items: center;

    width: 75%;

    margin: 8px auto;
    padding: 12px 15px;

    border: 2px solid rgb(150, 150, 205);
    border-radius: 12px;

    background-color:
        rgba(255, 255, 255, 0.5);

    transition: 0.3s;
}

.option:hover {
    transform: scale(1.03);

    background-color:
        rgba(255, 255, 255, 0.8);

    box-shadow:
        0 5px 15px rgba(60, 60, 130, 0.2);
}

.option input {
    width: auto;

    margin: 0 12px 0 0;

    accent-color: rgb(80, 80, 170);

    transform: scale(1.2);
}

.option label {
    width: auto;

    margin: 0;
    padding: 0;

    color: rgb(45, 45, 80);

    font-size: 17px;
}


/* Textarea */

textarea {
    height: 120px;

    resize: vertical;
}

textarea::placeholder {
    color: rgb(140, 140, 170);
}


/* Buttons */

.form-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;

    margin-top: 20px;
}

button {
    padding: 12px 30px;

    border: none;
    border-radius: 12px;

    color: white;

    background-color: rgb(80, 80, 170);

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);

    background-color: rgb(65, 65, 150);

    box-shadow:
        0 8px 18px rgba(50, 50, 100, 0.25);
}

button[type="reset"] {
    background-color: rgb(140, 140, 175);
}

button[type="reset"]:hover {
    background-color: rgb(110, 110, 150);
}


/* =========================
   FAQ
========================= */

.questions {
    width: min(700px, 90%);

    margin: 40px auto;
    padding: 40px;

    background: linear-gradient(
        143deg,
        transparent,
        rgb(35, 45, 105),
        rgb(65, 75, 150),
        transparent
    );

    border: 2px solid rgb(212, 175, 55);
    border-radius: 40px;

    box-shadow:
        0 10px 25px rgba(20, 30, 80, 0.35);
}

.questions article {
    text-align: center;
}

.questions h3 {
    padding: 10px;

    color: white;

    font-size: 20px;

    border-radius: 20px;

    transition: 0.3s;
}

.questions h3:hover {
    color: rgb(255, 215, 80);

    background-color: rgb(25, 35, 90);

    transform: scale(1.03);
}

.questions p {
    padding: 10px;

    color: rgb(255, 215, 80);

    font-size: 17px;
}


/* =========================
   MOVIE TIPS
========================= */

.tips {
    width: min(500px, 85%);

    margin: 40px auto;
    padding: 25px;

    background: linear-gradient(
        135deg,
        rgb(25, 35, 85),
        rgb(50, 65, 135)
    );

    border: 2px solid rgb(212, 175, 55);
    border-radius: 25px;

    box-shadow:
        0 10px 25px rgba(20, 30, 80, 0.35);
}

.tips li {
    margin: 12px 0;

    color: rgb(255, 215, 80);

    font-size: 17px;
    font-weight: bold;

    transition: 0.3s;
}

.tips li:hover {
    color: white;
    transform: translateX(8px);
}


/* =========================
   FOOTER
========================= */

footer {
    margin-top: 60px;
    padding: 25px;

    text-align: center;

    color: rgb(255, 215, 80);

    font-size: 16px;
    font-weight: bold;

    background: linear-gradient(
        135deg,
        rgb(18, 28, 70),
        rgb(40, 55, 120),
        rgb(18, 28, 70)
    );

    border-top: 2px solid rgb(212, 175, 55);
    border-bottom: 2px solid rgb(212, 175, 55);
}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {

    nav {
        width: 90%;
        border-radius: 25px;
    }

    nav a {
        padding: 10px 12px;
        font-size: 15px;
    }

    .hero h2 {
        width: 90%;
    }

    .hero p {
        width: 85%;
    }

    table {
        width: 90%;
        font-size: 14px;
    }

    th,
    td {
        padding: 10px 5px;
    }

    .trailer-video {
        width: 90%;
        height: 300px;
    }

    form {
        padding: 25px;
    }

    form input,
    form select,
    textarea {
        width: 90%;
    }

    form > label,
    form h3 {
        width: 90%;
    }

    .option {
        width: 90%;
    }
}


@media (max-width: 500px) {

    hr {
        width: 85%;
    }

    nav {
        gap: 5px;
    }

    nav a {
        font-size: 13px;
        padding: 8px 10px;
    }

    .movie-card {
        width: 90%;
    }

    table {
        font-size: 12px;
    }

    .top {
        font-size: 25px;
    }

    .trailer-video {
        height: 220px;
    }

    form {
        width: 95%;
        padding: 20px 10px;
    }

    .form-buttons {
        flex-direction: column;
        align-items: center;
    }

    button {
        width: 150px;
    }
}
```
/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    body {
        width: 100%;
        overflow-x: hidden;
    }

    hr {
        width: 85%;
        margin: 35px auto;
    }


    /* HEADER */

    header {
        padding-top: 25px;
    }

    header h1 {
        width: 90%;
        font-size: 48px;
        padding: 18px 10px;
    }

    header p {
        width: 80%;
        font-size: 14px;
    }


    /* NAVIGATION */

    nav {
        width: 92%;
        padding: 8px;
        gap: 5px;
        border-radius: 25px;
    }

    nav a {
        padding: 9px 10px;
        font-size: 13px;
    }


    /* HERO */

    .hero h2 {
        width: 90%;
        font-size: 35px;
        padding: 18px 12px;
    }

    .hero p {
        width: 88%;
        font-size: 15px;
        line-height: 1.7;
        padding: 15px;
    }


    /* SECTION TITLES */

    .section-title {
        width: 85%;
        font-size: 30px;
        padding: 20px 12px;
    }


    /* MOVIES */

    .movies {
        width: 90%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .movie-card {
        width: 90%;
        max-width: 320px;
        padding: 22px;
    }

    .movie-card h3 {
        font-size: 26px;
    }

    .movie-card p {
        font-size: 17px;
    }


    /* TABLE */

    table {
        width: 92%;
        font-size: 12px;
    }

    th {
        padding: 10px 5px;
        font-size: 12px;
    }

    td {
        padding: 10px 5px;
        font-size: 12px;
    }

    .top {
        font-size: 26px;
    }


    /* CATEGORIES */

    .categories {
        width: 90%;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .category-card {
        width: 90%;
        max-width: 320px;
        padding: 25px;
    }


    /* TRAILER */

    .trailer-video {
        width: 90%;
        height: 230px;
        margin-bottom: 30px;
    }


    /* FORM */

    form {
        width: 92%;
        padding: 25px 15px;
    }

    form > label,
    form h3 {
        width: 90%;
        font-size: 17px;
    }

    form input,
    form select,
    textarea {
        width: 90%;
        font-size: 15px;
    }

    .option {
        width: 90%;
    }

    .option label {
        font-size: 15px;
    }


    /* BUTTONS */

    .form-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    button {
        width: 160px;
    }


    /* FAQ */

    .questions {
        width: 90%;
        padding: 20px 15px;
    }

    .questions h3 {
        font-size: 17px;
    }

    .questions p {
        font-size: 15px;
        line-height: 1.6;
    }


    /* MOVIE TIPS */

    .tips {
        width: 90%;
        padding: 20px;
    }

    .tips li {
        font-size: 15px;
        line-height: 1.6;
    }


    /* FOOTER */

    footer {
        padding: 20px 10px;
        font-size: 14px;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 400px) {

    header h1 {
        font-size: 38px;
    }

    header p {
        font-size: 12px;
    }

    nav a {
        padding: 7px 8px;
        font-size: 11px;
    }

    .hero h2 {
        font-size: 29px;
    }

    .hero p {
        font-size: 14px;
    }

    .section-title {
        font-size: 26px;
    }

    .movie-card {
        width: 95%;
    }

    table {
        width: 96%;
        font-size: 10px;
    }

    th,
    td {
        padding: 8px 3px;
        font-size: 10px;
    }

    .trailer-video {
        width: 95%;
        height: 200px;
    }

    form {
        width: 96%;
        padding: 20px 8px;
    }

    form input,
    form select,
    textarea {
        width: 92%;
    }

    .questions {
        width: 95%;
    }

    .tips {
        width: 95%;
    }
}
