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

:root {
    --netflix-red: #E50914;
    --netflix-black: #141414;
    --netflix-dark: #000000;
    --netflix-gray: #757575;
    --netflix-light-gray: #e5e5e5;
    --netflix-white: #ffffff;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: var(--netflix-dark);
    color: var(--netflix-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 430px;
    margin: 0 auto;
    background-color: var(--netflix-black);
    min-height: 100vh;
}

/* Cover Section */
.cover-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background-image: url('./img/cover_home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

/* Video Background */
.cover-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    z-index: -1;
}

/* Mobile optimization for video */
@media (max-width: 768px) {
    .cover-video {
        /* On mobile, ensure video covers the full area */
        min-width: 100vw;
        min-height: 100vh;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }

    .cover-section {
        /* Ensure proper mobile layout */
        min-height: 100vh;
        min-height: 100dvh;
        /* Dynamic viewport height for mobile browsers */
    }
}

/* Video loading state */
.cover-video:not([src]) {
    display: none;
}

/* Ensure content is above video */
.cover-section>*:not(.cover-video):not(.video-overlay) {
    position: relative;
    z-index: 1;
}

.netflix-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--netflix-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Bride & Groom Profiles */
.profiles-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.profile-card:hover {
    transform: scale(1.05);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: border 0.2s ease;
    position: relative;
}

.profile-avatar.groom {
    background-color: #1f4e79;
    /* Navy blue for groom */
}

.profile-avatar.bride {
    background-color: #d63384;
    /* Pink for bride */
}

.profile-card:hover .profile-avatar {
    border: 2px solid white;
}

.profile-face {
    position: relative;
    width: 100%;
    height: 100%;
}

.profile-eyes {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.eye {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.profile-smile {
    position: absolute;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 12px;
    border: 2px solid white;
    border-top: none;
    border-radius: 0 0 24px 24px;
}

.profile-eyelashes {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.eyelash {
    width: 1px;
    height: 4px;
    background-color: white;
}

.eyelash.left {
    transform: rotate(-15deg);
}

.eyelash.right {
    transform: rotate(15deg);
}

.profile-name {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 2px;
    transition: color 0.2s ease;
}

.profile-role {
    font-size: 0.75rem;
    color: var(--netflix-gray);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-card:hover .profile-name {
    color: var(--netflix-red);
}

.series-badge {
    background: var(--netflix-red);
    color: white;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.couple-names {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: -1px;
}

.guest-name {
    background: rgba(229, 9, 20, 0.9);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 20px 0;
    font-size: 1rem;
    text-align: center;
}

.play-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: black;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 30px;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 12px solid black;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Header Section */
.header-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
}

/* Video Background */
.header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Dark overlay on top of video */
.header-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.95));
    padding: 60px 20px 40px;
    color: white;
    z-index: 2;
    /* Ensure overlay is above video */
}

.netflix-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--netflix-red);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.header-content {
    max-width: 400px;
}

.series-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.series-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
    color: white;
}

.countdown-container {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(229, 9, 20, 0.9);
    padding: 12px 8px;
    border-radius: 6px;
    min-width: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 500;
}

/* Event Date Styling */
.event-date {
    margin-top: 20px;
    text-align: center;
    padding: 15px 20px;
    border-radius: 8px;
}

.date-label {
    font-size: 0.9rem;
    color: var(--netflix-gray, #999);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.date-value {
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

.time-value {
    font-size: 1.1rem;
    color: var(--netflix-red, #e50914);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Main Section */
/* Main Section */
.main-section {
    background: var(--netflix-black);
    padding: 40px 20px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
}

.episode-card {
    background: var(--netflix-dark);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.episode-card:hover {
    transform: scale(1.02);
}

.episode-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #333, #111);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--netflix-gray);
    overflow: hidden;
}

/* Image styling to work with your existing thumbnail container */
.episode-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Custom styling for groom photo */
.groom-photo {
    object-fit: cover;
    object-position: center center;
    /* You can adjust this: center, top, bottom, left, right, or specific percentages like "center 30%" */
    /* Additional positioning options you can uncomment and adjust: */
    object-position: center 40%;
    /* Focus on upper portion */
    /* object-position: center 80%; */
    /* Focus on lower portion */
    /* object-position: 30% center; */
    /* Focus on left side */
    /* object-position: 70% center; */
    /* Focus on right side */
}

/* Custom styling for bride photo */
.bride-photo {
    object-fit: cover;
    object-position: center center;
    /* You can adjust this: center, top, bottom, left, right, or specific percentages like "center 30%" */
    /* Additional positioning options you can uncomment and adjust: */
    object-position: center 20%;
    /* Focus on upper portion */
    /* object-position: center 80%; */
    /* Focus on lower portion */
    /* object-position: 30% center; */
    /* Focus on left side */
    /* object-position: 70% center; */
    /* Focus on right side */
}

.episode-info {
    padding: 15px;
}

.episode-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.episode-description {
    color: var(--netflix-light-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* .main-section {
    background: var(--netflix-black);
    padding: 40px 20px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.episode-card {
    background: var(--netflix-dark);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.episode-card:hover {
    transform: scale(1.02);
}

.episode-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #333, #111);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--netflix-gray);
}

.episode-info {
    padding: 15px;
}

.episode-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.episode-description {
    color: var(--netflix-light-gray);
    font-size: 0.9rem;
    line-height: 1.4;
} */

/* Event Details */
.event-section {
    background: #1a1a1a;
    padding: 30px 20px;
    margin: 20px 0;
    border-radius: 8px;
}

/* Event Image Container */
.event-image-container {
    width: 100%;
    height: 200px;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.event-badge {
    display: inline-block;
    background: var(--netflix-red);
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.event-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.event-details {
    color: var(--netflix-light-gray);
    line-height: 1.6;
}

.event-details p {
    margin-bottom: 8px;
}

.map-button {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--netflix-white);
    color: var(--netflix-white);
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.map-button:hover {
    background: var(--netflix-white);
    color: var(--netflix-black);
}

/* Love Story Timeline */
.timeline {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0;
    position: relative;
}

.timeline-item-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-photo {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Timeline photo positioning options */
.timeline-image.position-top {
    object-position: center top;
}

.timeline-image.position-bottom {
    object-position: center bottom;
}

.timeline-image.position-left {
    object-position: left center;
}

.timeline-image.position-right {
    object-position: right center;
}

.timeline-image.position-top-left {
    object-position: left top;
}

.timeline-image.position-top-right {
    object-position: right top;
}

.timeline-image.position-bottom-left {
    object-position: left bottom;
}

.timeline-image.position-bottom-right {
    object-position: right bottom;
}

/* Custom positioning with percentages */
.timeline-image.position-custom-1 {
    object-position: center 20%;
}

.timeline-image.position-custom-2 {
    object-position: center 30%;
}

.timeline-image.position-custom-3 {
    object-position: center 70%;
}

.timeline-image.position-custom-4 {
    object-position: center 80%;
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-content-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.timeline-episode {
    color: var(--netflix-white);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}


.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--netflix-white);
}

.timeline-description {
    color: var(--netflix-light-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #333, #111);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--netflix-gray);
    font-size: 0.8rem;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* RSVP Section */
.rsvp-section {
    padding: 30px 20px;
    background: #1a1a1a;
    margin: 20px 0;
    border-radius: 8px;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    background: var(--netflix-dark);
    border: 1px solid #333;
    color: white;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--netflix-red);
}

.submit-button {
    background: var(--netflix-red);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #f40612;
    transform: translateY(-2px);
}

/* Gift Section */
.gift-section {
    text-align: center;
    padding: 30px 20px;
}

.bank-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.bank-name {
    color: var(--netflix-red);
    font-weight: 600;
    margin-bottom: 10px;
}

.account-number {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 0;
    letter-spacing: 1px;
}

.copy-button {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--netflix-white);
    color: var(--netflix-white);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background: var(--netflix-white);
    color: var(--netflix-black);
}

/* Footer */
.footer {
    background: var(--netflix-dark);
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--netflix-red);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.thank-you {
    color: var(--netflix-light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Menu */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 100%;
    max-width: 430px;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
    border-top: 1px solid #333;
    transition: transform 0.4s ease-in-out;
}

/* Show navigation when not on cover */
.bottom-nav.show {
    transform: translateX(-50%) translateY(0);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--netflix-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px;
}

.nav-item:hover,
.nav-item.active {
    color: var(--netflix-white);
}

.nav-icon {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.nav-label {
    font-size: 0.7rem;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Audio Player */
/* Audio Player */
.audio-player {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 390px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.audio-player.hidden {
    transform: translateX(-50%) translateY(150px);
}

.audio-player.minimized {
    width: auto;
    max-width: none;
    padding: 8px;
    gap: 8px;
    bottom: 70px;
    left: 20px;
    transform: translateX(0);
    border-radius: 25px;
}

.audio-player.minimized .audio-info,
.audio-player.minimized .volume-control {
    display: none;
}

.minimize-btn {
    background: none;
    border: none;
    color: var(--netflix-gray);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.minimize-btn:hover {
    color: white;
}

.minimize-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.audio-player.minimized .minimize-btn {
    display: none;
}

.play-pause-btn {
    width: 40px;
    height: 40px;
    background: var(--netflix-red);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-pause-btn:hover {
    background: #f40612;
    transform: scale(1.1);
}

.play-pause-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.audio-info {
    flex: 1;
    min-width: 0;
}

.audio-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.audio-progress-container {
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.audio-progress {
    height: 100%;
    background: var(--netflix-red);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.audio-time {
    font-size: 0.75rem;
    color: var(--netflix-gray);
    margin-top: 4px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-btn {
    background: none;
    border: none;
    color: var(--netflix-gray);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.volume-btn:hover {
    color: white;
}

.volume-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.volume-slider {
    width: 60px;
    height: 4px;
    appearance: none;
    background: #333;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.audio-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(229, 9, 20, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.audio-toggle:hover {
    background: var(--netflix-red);
    transform: scale(1.1);
}

.audio-toggle svg {
    width: 20px;
    height: 20px;
    fill: white;
}

@media (max-width: 480px) {

    /* Audio Player */
    .volume-control {
        display: none;
    }

    .audio-player {
        width: calc(100% - 20px);
        padding: 10px;
    }

    /* Bride & Groom Profiles */
    .profiles-container {
        gap: 20px;
    }

    .profile-avatar {
        width: 70px;
        height: 70px;
    }

    /* Timeline responsive adjustments */
    .timeline {
        padding: 15px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-item-header {
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
    }

    .timeline-photo {
        width: 80px;
        height: 60px;
        flex-shrink: 0;
    }

    .timeline-content {
        flex: 1;
        text-align: left;
    }

    .timeline-content-header {
        gap: 5px;
    }

    .timeline-episode {
        font-size: 0.8rem;
    }


    .timeline-title {
        font-size: 0.9rem;
    }

    .timeline-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Header Section */
    .netflix-brand {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .series-title,
    .series-subtitle {
        font-size: 2rem;
    }

    .header-overlay {
        padding: 40px 15px 30px;
    }

    .countdown-container {
        gap: 10px;
    }

    .countdown-item {
        min-width: 50px;
        padding: 10px 6px;
    }

    .countdown-number {
        font-size: 1.4rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .event-date {
        margin-top: 15px;
        padding: 12px 15px;
    }

    .date-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .date-value {
        font-size: 1.1rem;
    }

    .time-value {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {

    .series-title,
    .series-subtitle {
        font-size: 1.8rem;
    }

    .countdown-container {
        gap: 8px;
    }

    .countdown-item {
        min-width: 45px;
        padding: 8px 4px;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .event-date {
        padding: 10px 12px;
    }

    .date-value {
        font-size: 1rem;
    }

    .time-value {
        font-size: 0.9rem;
    }
}

/* Medium screen responsive timeline */
@media (min-width: 481px) and (max-width: 767px) {
    .timeline-photo {
        width: 100px;
        height: 70px;
    }

    .timeline-episode {
        font-size: 0.9rem;
    }


    .timeline-title {
        font-size: 1rem;
    }

    .timeline-description {
        font-size: 0.85rem;
    }
}

/* Large screen responsive timeline */
@media (min-width: 768px) {
    .timeline-photo {
        width: 120px;
        height: 80px;
    }

    .timeline-episode {
        font-size: 1rem;
    }


    .timeline-title {
        font-size: 1.1rem;
    }

    .timeline-description {
        font-size: 0.9rem;
    }
}