/*
Theme Name: evprod-theme
Author: EV Production
Description: Modern, future-forward theme for EV Production unified site.
Version: 1.0
*/

/* ==========================
   VARIABLES & RESET
   ========================== */
:root {
    --primary: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    --secondary: linear-gradient(135deg, #ff006e 0%, #ff4d8d 100%);
    --accent: #00ffff;
    --dark-bg: #0a0e27;
    --card-bg: #1a1f3a;
    --text-light: #e0e6ff;
    --text-muted: #a0aac0;
    --border: #2a2f4a;
    --success: #00d977;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --spacing-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================
   TYPOGRAPHY
   ========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-unit);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    line-height: 1.8;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
}

/* ==========================
   NAVBAR
   ========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-brand .site-logo {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--accent);
    display: flex;
    gap: 0.25rem;
}

.navbar-brand strong {
    color: var(--accent);
}

.navbar-brand span {
    color: var(--text-light);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--accent);
}

/* ==========================
   HERO SECTION
   ========================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content h1 {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark-bg);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Gradient Orbs */
.hero-visual {
    position: relative;
    height: 400px;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 0;
    left: 50px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

/* ==========================
   PROJECTS GRID
   ========================== */
.projects-grid {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    background: var(--secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.project-card h3 {
    position: relative;
    z-index: 2;
}

.card-link {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    display: inline-block;
}

/* ==========================
   COLLEGE HUB
   ========================== */
.college-hub {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, rgba(255, 0, 110, 0.05) 0%, transparent 100%);
}

.college-hub .section-header.light {
    color: var(--text-light);
}

.college-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 3rem auto;
    align-items: center;
}

.college-text h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.ai-callout {
    background: var(--card-bg);
    border: 2px solid var(--success);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.ai-badge {
    display: inline-block;
    background: var(--success);
    color: var(--dark-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Code Window */
.code-window {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
}

.code-header {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.1));
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-family: 'Courier New', monospace;
}

.code-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--accent);
}

.code-body pre {
    margin: 0;
}

/* ==========================
   CTA SECTION
   ========================== */
.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.1));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-section h2 {
    margin-bottom: 2rem;
}

/* ==========================
   FOOTER
   ========================== */
.site-footer {
    background: rgba(10, 14, 39, 0.8);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-col h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================
   RESPONSIVE
   ========================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero, .college-intro {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

/* ==========================
   PAGE HEADER (Generic)
   ========================== */
.page-header {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.1), transparent 100%);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
}

/* ==========================
   COLLEGE PAGE
   ========================== */
.learning-modules {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.module-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.15);
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.module-card h3 {
    color: var(--text-light);
}

.ai-tutor {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05), rgba(255, 0, 110, 0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tutor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.ai-tutordiv h2 {
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    margin: 0.75rem 0;
    color: var(--text-light);
    font-weight: 500;
}

.ai-chat-window {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.1));
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    color: var(--accent);
}

.chat-messages {
    padding: 1.5rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    max-width: 80%;
}

.message.bot {
    background: rgba(0, 212, 255, 0.15);
    border-left: 3px solid var(--accent);
    align-self: flex-start;
}

.message.user {
    background: rgba(255, 0, 110, 0.15);
    border-left: 3px solid var(--secondary);
    align-self: flex-end;
}

.message p {
    margin: 0;
    color: var(--text-light);
}

/* ==========================
   PRIVACY POLICY PAGE
   ========================== */
.privacy-content {
    max-width: 900px;
    padding: 3rem 2rem;
    margin: 0 auto;
}

.privacy-article {
    line-height: 1.9;
}

.privacy-article h2 {
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-article h3 {
    color: var(--text-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-article section {
    margin-bottom: 2rem;
}

.privacy-article ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-article li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.contact-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1rem 0;
}

.contact-box p {
    margin: 0;
}

.contact-box a {
    color: var(--accent);
}

.policy-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-style: italic;
    color: var(--text-muted);
}

.max-width {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* ==========================
   FILM SECTION
   ========================== */
.project-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.film-highlight {
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid var(--secondary);
    position: relative;
}

.film-highlight:hover {
    border-color: #ff006e;
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.25) 0%, rgba(0, 212, 255, 0.1) 100%);
}

/* ==========================
   CINEMATIC HOMEPAGE STYLES
   ========================== */

/* Cinematic Hero Section */
.cinematic-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Background Elements */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fog-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(100, 100, 100, 0.1) 0%, transparent 70%);
    animation: drift 20s infinite linear;
}

.fog-1 {
    top: -50%;
    left: -50%;
    animation-duration: 25s;
}

.fog-2 {
    top: -30%;
    left: -30%;
    animation-duration: 35s;
    animation-direction: reverse;
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 100vh;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
    transform-origin: top center;
    animation: beam-sweep 8s infinite ease-in-out;
}

.beam-1 {
    left: 20%;
    animation-delay: 0s;
}

.beam-2 {
    left: 50%;
    animation-delay: 2s;
}

.beam-3 {
    left: 80%;
    animation-delay: 4s;
}

.camera-rig {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(100,100,100,0.2)" stroke-width="2"/><line x1="50" y1="10" x2="50" y2="90" stroke="rgba(100,100,100,0.2)" stroke-width="1"/><line x1="10" y1="50" x2="90" y2="50" stroke="rgba(100,100,100,0.2)" stroke-width="1"/></svg>') no-repeat center;
    opacity: 0.3;
    animation: rig-float 6s infinite ease-in-out;
}

.holographic-screen {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 150px;
    height: 100px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 5px;
    animation: hologram-flicker 4s infinite;
}

.reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
    transform: skewY(-5deg);
    animation: reflection-shimmer 10s infinite;
}

/* Frame Breaker - VR Headset */
.frame-breaker {
    position: absolute;
    top: 50%;
    right: -100px;
    z-index: 10;
    transform: translateY(-50%);
}

.vr-headset {
    width: 200px;
    height: 120px;
    background: linear-gradient(45deg, #333, #666);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

.vr-headset::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 255, 0.5);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
    animation: title-glow 4s infinite alternate;
}

.hero-tagline {
    font-size: 2.5rem;
    font-weight: 300;
    color: #b0b0b0;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.hero-subtext {
    font-size: 1.5rem;
    color: #888;
    letter-spacing: 0.2em;
}

.hero-subtext span {
    position: relative;
}

.hero-subtext span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #ff006e);
    animation: underline-sweep 3s infinite;
}

/* Floating Panels Section */
.floating-panels {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.panel-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.glass-panel {
    position: relative;
    width: 350px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    display: block;
    text-decoration: none;
    color: inherit;
}

.glass-panel:hover {
    transform: perspective(1000px) rotateX(-5deg) rotateY(5deg) scale(1.05);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 100px rgba(0, 212, 255, 0.3);
}

.panel-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.3), rgba(255, 0, 110, 0.3), rgba(255, 215, 0, 0.3));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.glass-panel:hover .panel-glow {
    opacity: 1;
}

.panel-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-video {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.panel-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.glass-panel:hover .panel-thumbnail {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-panel:hover .video-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.glass-panel h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.glass-panel p {
    font-size: 1rem;
    color: #b0b0b0;
    text-align: center;
    margin: 0;
}

/* Animations */
@keyframes drift {
    0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
}

@keyframes beam-sweep {
    0%, 100% { transform: scaleY(0.5) rotate(0deg); opacity: 0.3; }
    50% { transform: scaleY(1) rotate(5deg); opacity: 0.8; }
}

@keyframes rig-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes hologram-flicker {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes reflection-shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes title-glow {
    0% { text-shadow: 0 0 50px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 0 0 80px rgba(255, 255, 255, 0.5), 0 0 120px rgba(0, 212, 255, 0.3); }
}

@keyframes underline-sweep {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .panel-container {
        gap: 2rem;
    }

    .glass-panel {
        width: 300px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-subtext {
        font-size: 1.2rem;
    }

    .panel-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .glass-panel {
        width: 100%;
        max-width: 350px;
        height: 400px;
    }

    .frame-breaker {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .cinematic-hero {
        height: 90vh;
    }
}