* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #121212;
    color: white;
}

a {
    text-decoration: none;
    color: white;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    z-index: 10;
}

.nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: white;
}

.logo span {
    color: #e61616;
}

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-nav a {
    font-size: 15px;
    color: white;
}

.landing-page {
    width: 100%;
    min-height: 100vh;
}

.hero-section {
    width: 100%;
    min-height: 100vh;
    background-image: url("../img/bigscreen.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
    margin-top: 40px;
}


.button-group {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-block;
    padding: 16px 34px;
    font-size: 20px;
    border-radius: 6px;
    min-width: 220px;
    text-align: center;
}

.primary-btn {
    background-color: #b22222;
    color: white;
}

.secondary-btn {
    background-color: rgba(20, 20, 20, 0.9);
    color: white;
    border: 1px solid white;
}


.movies-page {
    width: 100%;
    min-height: 100vh;
    background-color: #121212;
    padding: 120px 40px 60px 40px;
}

.movies-section {
    max-width: 1200px;
    margin: 0 auto;
}

.movies-title {
    font-size: 40px;
    margin-bottom: 30px;
    color: white;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.movie-card {
    background-color: #1e1e1e;
    border-radius: 6px;
    overflow: hidden;
}

.movie-poster {
    aspect-ratio: 2 / 3;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.movie-info {
    padding: 18px;
}

.movie-info h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.movie-info p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 10px;
}

.movie-info span {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

.movie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.details-btn,
.cart-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 15px;
    color: white;
}

.details-btn {
    background-color: #b22222;
}

.cart-btn {
    background-color: #222;
    border: 1px solid white;
}

/* =========================
   PRODUCT PAGE
========================= */

.product-page {
    width: 100%;
    min-height: 100vh;
    background-color: #121212;
    padding: 140px 40px 60px 40px;
}

.product-section {
    max-width: 1200px;
    margin: 0 auto;
}

.product-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    align-items: start;
}

.product-left iframe {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: 6px;
}

.product-right {
    background-color: #1e1e1e;
    padding: 25px;
    border-radius: 6px;
}

.product-right h1 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.product-right p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #dddddd;
}

.product-right h2 {
    font-size: 32px;
    margin: 20px 0;
}

.product-description {
    margin-top: 15px;
}

.product-buttons {
    margin-top: 20px;
}

.product-buttons .details-btn {
    display: block;
    width: 100%;
    text-align: center;
}

.cart-page {
    width: 100%;
    min-height: 100vh;
    background-color: #121212;
    padding: 140px 40px 60px 40px;
}

.cart-section {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-title {
    font-size: 40px;
    margin-bottom: 30px;
    color: white;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    background-color: #1e1e1e;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-poster {
    width: 140px;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    flex-shrink: 0;
}

.cart-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cart-info p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #dddddd;
}

.cart-price {
    font-size: 20px;
    color: white;
}

.cart-summary {
    background-color: #1e1e1e;
    border-radius: 6px;
    padding: 20px;
    height: fit-content;
}

.cart-summary h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cart-summary p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #dddddd;
}


.checkout-page {
    width: 100%;
    min-height: 100vh;
    background-color: #121212;
    padding: 140px 40px 60px 40px;
}

.checkout-section {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-title {
    font-size: 40px;
    margin-bottom: 30px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.checkout-form-box {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 6px;
}

.checkout-form-box h2 {
    margin-bottom: 20px;
}

.checkout-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.checkout-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
}


.checkout-summary {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 6px;
    height: fit-content;
}

.checkout-summary h2 {
    margin-bottom: 20px;
}

.checkout-summary p {
    font-size: 20px;
    margin-bottom: 20px;
}

.account-page {
    width: 100%;
    min-height: 100vh;
    background-color: #121212;
    padding: 140px 20px 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.account-section {
    width: 100%;
    max-width: 500px;
}

.account-box {
    background-color: #1e1e1e;
    padding: 25px;
    border-radius: 6px;
}

.account-box h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.account-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.account-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
}

.account-text {
    margin-top: 50px;
    font-size: 18px;
    text-align: center;
}

.account-text a {
    color: #e61616;
}

.account-message {
    color: #ff6b6b;
    margin-bottom: 15px;
    text-align: center;
}

.orders-page {
    width: 100%;
    min-height: 100vh;
    background-color: #121212;
    padding: 140px 40px 60px 40px;
}

.orders-section {
    max-width: 900px;
    margin: 0 auto;
}

.orders-title {
    font-size: 40px;
    margin-bottom: 30px;
}

.order-box {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.order-box h2 {
    margin-bottom: 10px;
}

.order-box p {
    margin-bottom: 8px;
    color: #dddddd;
}

.order-items {
    margin-top: 15px;
}

.account-message {
    color: #ff6b6b;
    margin-bottom: 15px;
    text-align: center;
}