/*
Theme Name:   GeneratePress Child - Movie Landing
Theme URI:    https://generatepress.com
Description:  A completely independent, premium cinematic child theme for GeneratePress. Features standalone custom templates for Home Page, Single Post Page, Regular Page, and Archives with a modern dark-mode glassmorphism aesthetic.
Author:       Antigravity
Author URI:   https://generatepress.com
Template:     generatepress
Version:      1.0.0
Text Domain:  generatepress-child
*/

/* ==========================================================================
   1. CORE DESIGN SYSTEM & VARIABLES (INDEPENDENT THEME ENGINE)
   ========================================================================== */
:root {
    /* HSL Cinema Dark Palette */
    --bg-primary: #0a0c10;
    --bg-secondary: #12161f;
    --bg-tertiary: #1b2130;
    --bg-glass: rgba(18, 22, 31, 0.75);
    --bg-glass-hover: rgba(27, 33, 48, 0.85);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(229, 9, 20, 0.4);
    
    /* Vibrant Accents */
    --accent-red: #e50914;
    --accent-red-hover: #f6121d;
    --accent-gold: #f5c518;
    --accent-cyan: #00f2fe;
    --accent-purple: #8a2387;
    --gradient-hero: linear-gradient(135deg, rgba(229, 9, 20, 0.8) 0%, rgba(138, 35, 135, 0.8) 100%);
    --gradient-card: linear-gradient(180deg, rgba(27, 33, 48, 0.4) 0%, rgba(18, 22, 31, 0.9) 100%);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Text Colors */
    --text-main: #f5f6f8;
    --text-muted: #949db0;
    --text-dim: #646d80;
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px rgba(229, 9, 20, 0.35);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   2. BASE RESET & GLOBAL STANDALONE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.generatepress-child-theme {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   3. GLASSMORPHIC STANDALONE NAVBAR
   ========================================================================== */
.cinema-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: all var(--transition-smooth);
}

.cinema-header.scrolled {
    background: rgba(10, 12, 16, 0.92);
    box-shadow: var(--shadow-md);
}

.cinema-header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cinema-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.cinema-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-hero);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}

.cinema-logo span {
    background: linear-gradient(90deg, #fff 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation Links */
.cinema-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.cinema-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.cinema-nav a:hover,
.cinema-nav a.active {
    color: #fff;
}

.cinema-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width var(--transition-smooth);
    border-radius: var(--radius-full);
}

.cinema-nav a:hover::after,
.cinema-nav a.active::after {
    width: 100%;
}

/* Header Actions */
.cinema-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cinema-search-btn {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.cinema-search-btn:hover {
    border-color: var(--accent-red);
    color: #fff;
    background: rgba(229, 9, 20, 0.1);
}

.btn-primary {
    background: var(--accent-red);
    color: #fff;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(229, 9, 20, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border-glass);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   4. STANDALONE HOMEPAGE TEMPLATE (front-page.php)
   ========================================================================== */
.cinema-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cinema-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--bg-primary) 5%, rgba(10, 12, 16, 0.75) 50%, rgba(10, 12, 16, 0.9) 100%),
                radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.cinema-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

.cinema-hero-text {
    max-width: 680px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(229, 9, 20, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(229, 9, 20, 0.3);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.cinema-hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #d1d6e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cinema-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.meta-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.cinema-hero-excerpt {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.cinema-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Filter Tabs */
.cinema-filter-section {
    max-width: 1320px;
    margin: -3rem auto 2rem auto;
    position: relative;
    z-index: 10;
    padding: 0 2rem;
}

.cinema-filter-bar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 0.6rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.filter-pill {
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

/* ==========================================================================
   5. CINEMATIC GRID & CARDS (Home, Archive, Related)
   ========================================================================== */
.cinema-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: '';
    width: 6px;
    height: 28px;
    background: var(--accent-red);
    border-radius: var(--radius-full);
}

.cinema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.movie-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    group: "card";
}

.movie-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg);
}

.card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-bounce);
}

.movie-card:hover .card-media img {
    transform: scale(1.07);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-genre {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--accent-red);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.card-title a:hover {
    color: var(--accent-red);
}

.card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-glass);
    padding-top: 1rem;
    font-size: 0.85rem;
}

.read-more-link {
    color: var(--accent-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.read-more-link:hover {
    gap: 0.65rem;
}

/* ==========================================================================
   6. STANDALONE SINGLE POST PAGE (single.php)
   ========================================================================== */
.single-hero-banner {
    position: relative;
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

.single-hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(229, 9, 20, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.single-hero-content {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.breadcrumb-nav a:hover {
    color: var(--accent-red);
}

.single-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.single-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-info img {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: 2px solid var(--accent-red);
}

.single-layout-wrapper {
    max-width: 1320px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
}

@media (max-width: 1024px) {
    .single-layout-wrapper {
        grid-template-columns: 1fr;
    }
}

.single-main-article {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.article-body-content {
    font-size: 1.12rem;
    line-height: 1.85;
    color: #e2e6f0;
}

.article-body-content p {
    margin-bottom: 1.75rem;
}

.article-body-content h2,
.article-body-content h3 {
    margin: 2.5rem 0 1.25rem 0;
    color: #fff;
}

.article-body-content blockquote {
    background: var(--bg-tertiary);
    border-left: 4px solid var(--accent-red);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-main);
}

.article-footer-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}

.tag-badge {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.tag-badge:hover {
    background: var(--accent-red);
    color: #fff;
}

/* Author Card */
.single-author-box {
    margin-top: 3rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.single-author-box img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
}

/* Standalone Sidebar */
.cinema-sidebar .widget {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.cinema-sidebar .widget-title {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-glass);
    color: #fff;
}

/* ==========================================================================
   7. STANDALONE REGULAR PAGE TEMPLATE (page.php)
   ========================================================================== */
.page-hero-banner {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-glass);
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-content-wrapper {
    max-width: 960px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.page-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
}

/* ==========================================================================
   8. STANDALONE FOOTER (footer.php)
   ========================================================================== */
.cinema-footer {
    margin-top: auto;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding-top: 4rem;
}

.footer-top-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem 4rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
}

.footer-widget h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 0.75rem;
}

.footer-widget ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-widget ul li a:hover {
    color: var(--accent-red);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 1.75rem 2rem;
    background: var(--bg-primary);
}

.footer-bottom-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ==========================================================================
   9. COMMENTS & PAGINATION STANDALONE STYLES
   ========================================================================== */
.cinema-comments-section {
    margin-top: 3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.comment-list {
    list-style: none;
    margin: 2rem 0;
}

.comment-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-numbers {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-weight: 600;
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--accent-red);
    color: #fff;
    border-color: var(--accent-red);
}

/* ==========================================================================
   10. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 768px) {
    .cinema-hero-title {
        font-size: 2.5rem;
    }
    .cinema-header-container {
        padding: 1rem;
    }
    .cinema-nav {
        display: none;
    }
    .single-main-article {
        padding: 1.5rem;
    }
    .single-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   11. CINEVERSE MOVIE LANDING PAGE TEMPLATE (PIXEL-PERFECT 100% IMAGE MATCH)
   ========================================================================== */
.cineverse-landing-wrapper {
    width: 100%;
    background-color: var(--bg-primary);
    color: var(--text-main);
    position: relative;
    overflow-x: hidden;
}

.cineverse-hero-section {
    min-height: calc(100vh - 80px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
    padding: 6rem 1.5rem 8rem;
}

.cineverse-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,12,16,0.65) 0%, rgba(10,12,16,0.3) 25%, rgba(10,12,16,0.85) 75%, #0a0c10 100%),
                radial-gradient(circle at 50% 40%, rgba(10,12,16,0.35) 0%, rgba(10,12,16,0.9) 100%);
    z-index: 1;
}

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

.cineverse-subtitle-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cineverse-subtitle-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: #e50914;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cineverse-subtitle-line {
    width: 40px;
    height: 2px;
    background: #e50914;
    margin-top: 8px;
    border-radius: var(--radius-full);
}

.cineverse-main-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7.8vw, 6.8rem);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin: 0 0 1.8rem 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.title-white {
    color: #f5f6f8;
}

.title-red {
    color: #e50914;
    text-shadow: 0 0 35px rgba(229, 9, 20, 0.45), 0 4px 30px rgba(0, 0, 0, 0.8);
}

.cineverse-description {
    font-family: var(--font-body);
    font-size: clamp(1.08rem, 1.6vw, 1.25rem);
    font-weight: 400;
    color: #cbd2e0;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.cineverse-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.cineverse-watch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.9rem;
    background: linear-gradient(90deg, #f6121d 0%, #d80b16 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    box-shadow: 0 0 35px rgba(229, 9, 20, 0.65), 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.cineverse-watch-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 50px rgba(229, 9, 20, 0.85), 0 15px 35px rgba(0, 0, 0, 0.7);
    background: linear-gradient(90deg, #ff1a26 0%, #e50914 100%);
    color: #fff;
}

.cineverse-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #fff;
    color: #e50914;
    border-radius: 50%;
    padding-left: 2px;
}

.cineverse-guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #949db0;
    font-size: 0.92rem;
    font-weight: 500;
}

.cineverse-guarantee-badge svg {
    color: #cbd2e0;
}

.cineverse-features-section {
    position: relative;
    z-index: 5;
    background: #0a0c10;
    padding: 3.5rem 2rem 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cineverse-features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.cineverse-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    transition: transform var(--transition-smooth);
}

.cineverse-feature-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.cineverse-feature-icon {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 12px rgba(229, 9, 20, 0.4));
    transition: transform 0.3s ease;
}

.cineverse-feature-card:hover .cineverse-feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 18px rgba(229, 9, 20, 0.7));
}

.cineverse-feature-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0 0 0.6rem 0;
}

.cineverse-feature-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #949db0;
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

.cineverse-minimal-footer {
    background: #0a0c10;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.cineverse-footer-content {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #646d80;
    letter-spacing: 0.3px;
}

@media (max-width: 992px) {
    .cineverse-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    .cineverse-feature-card:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .cineverse-hero-section {
        padding: 4rem 1rem 6rem;
    }
    .cineverse-main-title {
        font-size: 2.8rem;
    }
    .cineverse-features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

