:root {
    --bg-dark: #000000; /* Deepest black like Netflix */
    --bg-card: rgba(20, 20, 20, 0.85); /* Dark grey cards */
    --primary-color: #e50914; /* High-converting Action Red */
    --accent-color: #ff3333; /* Bright Red Accent */
    --text-main: #ffffff; 
    --text-muted: #b3b3b3;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

html {
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.highlight {
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: 0.3s ease;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 5%;
    border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}
.logo span {
    color: var(--primary-color);
}

.cta-btn-small {
    padding: 8px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px; /* Squarer buttons for 'streaming' vibe */
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.2s;
}

.cta-btn-small:hover {
    background: var(--accent-color);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

.cta-btn {
    display: inline-block;
    padding: 20px 45px;
    background: linear-gradient(90deg, #b80000, var(--primary-color));
    color: white;
    text-decoration: none;
    border-radius: 6px; /* Boxy */
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(229, 9, 20, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 25px rgba(229, 9, 20, 0.5), 0 0 20px var(--primary-color);
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.huge-pulse {
    font-size: 1.4rem;
    padding: 24px 50px;
    width: 100%;
    margin-top: 20px;
    animation: hugepulse 2s infinite;
}

@keyframes hugepulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.6); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(229, 9, 20, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.secondary {
    background: transparent;
    border: 2px solid var(--text-muted);
    box-shadow: none;
}
.secondary:hover {
    background: white;
    color: black;
    border-color: white;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 5%;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, var(--bg-dark) 2%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 25px;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 35px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.hero-list {
    list-style: none;
    margin-bottom: 45px;
}

.hero-list li {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-list .icon {
    width: 24px;
    color: var(--primary-color);
}

section {
    padding: 80px 5%;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.glass-panel {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 35px;
    transition: 0.3s;
}

.glass-panel:hover {
    border-color: rgba(229, 9, 20, 0.4);
    transform: translateY(-4px);
    background: rgba(30, 30, 30, 0.9);
}

.catalog {
    position: relative;
    z-index: 5;
    background: var(--bg-dark);
}

.carousel-container {
    margin-bottom: 55px;
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
}

.carousel-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.carousel {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.carousel:hover {
    animation-play-state: paused;
}

.carousel.reverse {
    animation: marquee-rev 40s linear infinite;
}

.carousel.reverse:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-rev {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.poster {
    min-width: 240px;
    height: 360px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.poster:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.9);
    z-index: 10;
    border: 2px solid var(--text-muted);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

.features {
    background: #080808;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
}

.bonuses {
    background: #111;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: var(--bg-dark);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.3s;
    cursor: pointer;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    border-color: var(--primary-color);
}

.bonus-img {
    height: 320px;
    overflow: hidden;
}

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

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

.hq-overlay {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-4deg);
    background: #FFD700;
    color: #fff;
    -webkit-text-stroke: 1.5px #000;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 5px 25px;
    border: 5px solid #000;
    box-shadow: 6px 6px 0 #000;
    z-index: 15;
    white-space: nowrap;
    transition: 0.3s;
}

.bonus-card:hover .hq-overlay {
    transform: translate(-50%, -50%) rotate(-4deg) scale(1.1);
}

.bonus-info {
    padding: 25px;
}

.bonus-tag {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
}

.bonus-info h3 {
    margin-bottom: 12px;
}

.bonus-info p {
    color: var(--text-muted);
}

.reviews-slider {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.review-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

.stars {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 25px;
}

.reviewer {
    color: white;
    font-weight: 700;
}

.pricing {
    padding-top: 60px;
    padding-bottom: 100px;
    background: #000;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center; /* so simple card stays smaller */
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    text-align: center;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    background: #111;
    border-radius: 12px;
}

.pricing-card.recommended {
    padding: 60px 40px;
    border: 3px solid var(--primary-color);
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(229, 9, 20, 0.3);
}

.pricing-card.recommended:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(229, 9, 20, 0.4);
}

/* Scarcity Bar */
.scarcity-bar {
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 25px;
    text-align: left;
}
.scarcity-bar p {
    font-size: 0.95rem;
    color: #ffd700;
    margin-bottom: 8px;
}
.scarcity-bar span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
}
.progress-bg {
    background: #222;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}
.progress-fill {
    background: #e50914;
    width: 90%;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 0 10px #e50914;
    animation: pulseProg 2s infinite;
}
@keyframes pulseProg {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.highlight-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 6px;
    background: var(--primary-color);
}

.glow-text {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.pricing-list {
    list-style: none;
    text-align: left;
    margin: 35px 0;
}

.pricing-card.recommended .pricing-list {
    margin: 25px 0;
}

.pricing-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.3rem;
}

.cross {
    color: #666;
    font-weight: 900;
    font-size: 1.1rem;
}

.price {
    margin-bottom: 35px;
}

.old-price {
    text-decoration: line-through;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: white;
}

.secure-text {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #888;
}

footer {
    background: #050505;
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links {
    margin: 35px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copy {
    color: #444;
    font-size: 0.95rem;
}


/* FAQ Section */
.faq {
    background: #080808;
    padding-top: 40px;
    padding-bottom: 80px;
}
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    margin-bottom: 15px;
    padding: 0;
    overflow: hidden;
}
.accordion-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    transition: 0.3s;
}
.accordion-header:hover {
    background: rgba(229, 9, 20, 0.1);
}
.accordion-header h3 {
    font-size: 1.2rem;
    margin: 0;
}
.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: transparent;
}
.accordion-content p {
    padding: 20px 30px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.accordion-item.active .accordion-content {
    max-height: 300px;
}
.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

/* Publishers Section */
.publishers {
    background: #050505;
    padding-top: 40px;
    padding-bottom: 80px;
}
.publishers-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.publishers-carousel {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: marquee-publishers 50s linear infinite;
    padding: 10px 0;
}
.publishers-carousel:hover {
    animation-play-state: paused;
}
.publishers-carousel.reverse {
    animation-direction: reverse;
}
@keyframes marquee-publishers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.publisher-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #e2e8f0;
    transition: 0.2s;
    white-space: nowrap;
    min-width: 200px;
}
.publisher-card:hover {
    border-color: var(--primary-color);
    background: rgba(229, 9, 20, 0.05);
    transform: translateY(-2px);
}
.publisher-card .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary-color);
}
.title-underline {
    height: 4px;
    background: var(--primary-color);
    width: 250px;
    margin: 5px auto 40px auto;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--primary-color);
}

/* Exit Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-popup-overlay.show {
    display: flex;
    opacity: 1;
}

.exit-popup-content {
    background: #0a0a0a;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    padding: 40px;
    transform: translateY(-50px);
    transition: transform 0.4s ease;
    box-shadow: 0 0 40px rgba(229, 9, 20, 0.4);
}

.exit-popup-overlay.show .exit-popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 2.5rem;
    color: #666;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
}

.close-popup:hover {
    color: white;
}

.exit-price {
    margin: 25px 0;
    padding: 20px;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 8px;
    border: 1px dashed var(--primary-color);
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    bottom: -120px;
    left: 20px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    z-index: 9990;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.sales-notification.show {
    bottom: 20px;
}

.buyer-img {
    background: var(--primary-color);
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; justify-content: center; align-items: center;
}

.buyer-info p {
    margin: 0; font-size: 0.9rem; line-height: 1.3; color: #ddd;
}

.buyer-info p strong {
    color: white;
}

.time-ago {
    font-size: 0.75rem !important; 
    color: var(--primary-color) !important; 
    font-weight: 700; 
    margin-top: 4px !important; 
}

.testimonials-carousel {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-publishers 40s linear infinite;
    padding: 10px 0;
}
.testimonials-carousel:hover {
    animation-play-state: paused;
}
.review-image {
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #111;
}
.review-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
}
.review-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.9);
    z-index: 10;
    border: 1px solid var(--primary-color);
}

.ribbon-wrapper {
    background: linear-gradient(90deg, #990000, var(--primary-color), #990000);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
    display: flex;
    white-space: nowrap;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    z-index: 20;
}
.ribbon-marquee {
    display: flex;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    animation: marquee-ribbon 15s linear infinite;
    text-shadow: 2px 2px 0 #000;
}
.ribbon-marquee span {
    padding-right: 50px;
}
@keyframes marquee-ribbon {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    /* Hero Adjustments */
    .hero { padding: 120px 5% 60px 5%; background-position: 70% center; }
    .hero h1 { font-size: 2.2rem; }
    .subtitle { font-size: 1.1rem; }
    .hero-content { align-items: center; text-align: center; }
    .hero-list li { justify-content: center; font-size: 0.95rem; text-align: center; }
    .cta-btn { font-size: 1rem; padding: 15px 30px; width: 100%; display: block; box-sizing: border-box; }
    
    /* Layout constraints to prevent overflow */
    .section-title { font-size: 1.9rem; }
    .section-desc { font-size: 1rem; padding: 0 10px; }
    section { padding: 50px 5%; }
    
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .bonus-grid { grid-template-columns: 1fr; gap: 20px; }
    
    /* Pricing Constraints */
    .pricing-container { flex-direction: column; width: 100%; }
    .pricing-card { min-width: 100%; width: 100%; box-sizing: border-box; padding: 30px 20px; }
    .pricing-card.recommended { transform: scale(1); margin-top: 20px; padding: 40px 20px; }
    .pricing-card.recommended:hover { transform: scale(1.02); }
    .new-price { font-size: 2.8rem; }
    
    /* Publishers */
    .publishers-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
    .publisher-card { font-size: 0.85rem; padding: 10px 12px; }
    
    /* Media/Posters */
    .poster { min-width: 130px; height: 200px; }
    .hq-overlay { font-size: 1.8rem; padding: 5px 15px; }

    /* Popups and Floating Elements */
    .exit-popup-content { padding: 25px 15px; }
    .exit-popup-content h2 { font-size: 1.4rem !important; }
    .exit-price .new-price { font-size: 2rem !important; }
    
    .sales-notification {
        left: 10px; right: 10px; width: auto; box-sizing: border-box;
        justify-content: center;
        bottom: -150px;
    }
    .sales-notification.show {
        bottom: 20px; /* Float natively at the bottom */
    }
}
