:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: rgba(26, 26, 26, 0.7);
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --red-normal: #e50914;
    --red-dark: #b20710;
    --red-gradient: linear-gradient(135deg, var(--red-dark) 0%, var(--red-normal) 100%);
    --shadow-red: 0 4px 20px rgba(229, 9, 20, 0.3);
    --border-glass: 1px solid rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Base */
html {
    font-size: 80%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-darker);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, backdrop-filter 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 175px;
    margin-bottom: 30px;
    animation: pulseLogo 2s infinite alternate;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(229, 9, 20, 0.2);
    border-top: 3px solid var(--red-normal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes pulseLogo {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(229, 9, 20, 0.4));
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--red-gradient);
    color: white;
}

.btn-primary:hover {
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--red-normal);
    border: 2px solid var(--red-normal);
}

.btn-outline-primary:hover {
    background: var(--red-normal);
    color: white;
    box-shadow: var(--shadow-red);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.shadow-red {
    box-shadow: var(--shadow-red);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 25px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    transition: var(--transition);
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--red-normal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--red-gradient);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.65);
    /* Zatamnjen video pozadina */
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title span {
    color: var(--red-normal);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin: 0 auto 0 auto;
    max-width: 600px;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-text-container {
    transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s ease;
    min-height: 260px;
    /* Fiksirano za najduži tekst kombinacije */
    margin-bottom: 25px;
    /* Odgovarajući estetski razmak gornjom marginom */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-text-container.blur-out {
    opacity: 0;
    filter: blur(15px);
    transform: scale(0.98);
}

.hero-socials {
    margin-top: 35px;
    display: flex;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    background: var(--red-gradient);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
    border-color: transparent;
}

.olx-icon {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Reviews Slider */
.reviews {
    padding: 80px 0;
    overflow: hidden;
    background: #080808;
}

.slider-wrapper {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.reviews-slider {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    flex-grow: 1;
    scroll-behavior: smooth;
    cursor: grab;
}

.reviews-slider:active {
    cursor: grabbing;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.slider-arrow {
    background: var(--red-gradient);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-red);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slider-arrow:hover {
    transform: scale(1.1);
}

.slider-arrow.left {
    margin-right: 15px;
}

.slider-arrow.right {
    margin-left: 15px;
}

.review-box {
    min-width: 280px;
    /* Smanjeno za 20% (sa 350px) */
    background: var(--bg-card);
    padding: 24px;
    /* Smanjeno za 20% (sa 30px) */
    border-radius: 16px;
    border: var(--border-glass);
    backdrop-filter: blur(10px);
    scroll-snap-align: center;
    transition: transform 0.3s;
}

.review-box:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.3);
}

.stars {
    color: #FFD700;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.comment {
    font-size: 0.9rem;
    /* Blago smanjeno da prati veličinu box-a */
    color: #ddd;
    margin-bottom: 16px;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Movies section */
.movies {
    padding: 80px 0;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.movie-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: var(--border-glass);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.movie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(229, 9, 20, 0.4);
}

.movie-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
}

.movie-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.movie-card:hover .movie-img-container img {
    transform: scale(1.05);
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    pointer-events: none;
}

.quality-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--red-normal);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.movie-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.movie-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.movie-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Styling for "Pogledaj film" button */
.btn-movie {
    background: var(--red-gradient);
    color: #fff;
    width: 100%;
    border-radius: 8px;
    text-align: center;
    border: none;
    font-weight: 600;
    padding: 12px;
}

.btn-movie:hover {
    background: #fff;
    color: var(--red-normal);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #050505;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: var(--border-glass);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);

}

.pricing-card.popular {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.9));
    border-color: rgba(229, 9, 20, 0.5);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow:
        0 10px 25px rgba(229, 9, 20, 0.15),
        0 20px 50px rgba(229, 9, 20, 0.25),
        0 0 20px rgba(229, 9, 20, 0.2);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--red-gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #e50914;
}

.price span {
    font-size: 2rem;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features {
    list-style: none;
    margin-bottom: 40px;
}

.features li {
    margin-bottom: 15px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li i {
    color: var(--red-normal);
}

/* Channels Slider */
.channels-slider-section {
    width: 100%;
    background-color: #030303;
    /* a slightly darker or matching darker color for contrast */
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.channels-slider-section::before,
.channels-slider-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.channels-slider-section::before {
    left: 0;
    background: linear-gradient(to right, #030303 0%, rgba(3, 3, 3, 0) 100%);
}

.channels-slider-section::after {
    right: 0;
    background: linear-gradient(to left, #030303 0%, rgba(3, 3, 3, 0) 100%);
}

.channels-slider {
    width: 100vw;
    position: relative;
    left: 49%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.channels-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-channels 35s linear infinite;
}

.channels-slider-track:hover {
    animation-play-state: paused;
}

.channels-slider-track img {
    height: 45px;
    /* Limit height to make them look uniform */
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin: 0 40px;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.channels-slider-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes scroll-channels {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Payment Methods */
.payment {
    padding: 80px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.payment-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border-radius: 16px;
    border: var(--border-glass);
    transition: var(--transition);
}

.payment-card:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(229, 9, 20, 0.3);
}

.payment-icon {
    font-size: 3rem;
    color: var(--red-normal);
    margin-bottom: 20px;
}

.payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.payment-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Form */
.contact {
    padding: 100px 0 120px;
    background: #080808;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 10px;
    border-left: 4px solid var(--red-normal);
    width: fit-content;
}

.info-item i {
    color: var(--red-normal);
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: var(--border-glass);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red-normal);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
}

.form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    display: none;
}

.form-status.success {
    color: #4caf50;
    display: block;
}

.form-status.error {
    color: var(--red-normal);
    display: block;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-logo img {
    height: 28px;
    margin-bottom: 20px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-logo img:hover {
    opacity: 1;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* Modal Styles */
.movie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.movie-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    border: var(--border-glass);
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.movie-modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.3s;
}

.close-modal:hover {
    background: var(--red-normal);
}

.modal-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.modal-img-wrapper:hover .play-icon-overlay {
    background: rgba(0, 0, 0, 0.2);
    color: var(--red-normal);
    text-shadow: 0 0 15px var(--red-dark);
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.modal-body p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Pricing Modal Updates */
.package-corner-logo {
    position: absolute;
    top: 25px;
    left: 25px;
    height: 50px;
    max-width: 150px;
    object-fit: contain;
    z-index: 10;

    /* Okvir / Background */
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    /* Isti border-radius kao modal-content */
    padding: 10px 15px;
    backdrop-filter: blur(10px);
}

#pricingModalFeatures {
    margin-bottom: 25px;
}

#pricingModalFeatures ul {
    list-style: none;
    padding: 0;
}

#pricingModalFeatures ul li {
    margin-bottom: 12px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

#pricingModalFeatures ul li i {
    color: var(--red-normal);
}

.pricing-previews {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.preview-img {
    width: calc(33.333% - 10px);
    aspect-ratio: 1;
    /* Make them square thumbnails */
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.preview-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 3px solid var(--red-normal);
}

.pricing-note strong {
    color: white;
}

/* Fullscreen Viewer */
.fullscreen-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.fullscreen-viewer.active {
    opacity: 1;
    pointer-events: all;
}

.fullscreen-viewer img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fullscreen-viewer.active img {
    transform: scale(1);
}

.close-viewer {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 3010;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.close-viewer:hover {
    color: var(--red-normal);
    background: rgba(255, 255, 255, 0.1);
}




/* Back to Top */
.return-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--red-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow-red);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    text-decoration: none;
}

.return-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.return-to-top:hover {
    transform: translateY(-5px);
    background: #fff;
    color: var(--red-normal);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: scale(1) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    #nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }

    #nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-btn {
        display: none;
    }

    .hero-video {
        transform: scale(1.4);
        /* Zoom in to eliminate letterboxed black bars on vertical mobile */
        transform-origin: center center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .pricing-grid,
    .payment-grid,
    .movies-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Fade Blur Animation */
.reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), filter 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, filter, transform;
}

.reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}