/* ========== IMPORTS & RESET ========== */
/* Import header styles */
@import url('../../header.css');

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

body {
    font-family: 'Poppins', sans-serif;
    background: #0A0A0A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 90px;
}

/* ========== LOADING SCREEN ========== */
.film-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.film-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.film-reel-loader {
    width: 100px;
    height: 100px;
    border: 8px solid #333;
    border-radius: 50%;
    border-top: 8px solid #C85300;
    animation: filmReelSpin 1.5s linear infinite;
    position: relative;
}

.film-reel-loader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #C85300;
}

@keyframes filmReelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 30px;
    font-size: 1rem;
    color: #8B4513;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ========== PROJECT OPENING CREDITS ========== */
.project-opening {
    min-height: 80vh;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(40, 24, 13, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 3px solid #333;
}

.opening-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 3;
    opacity: 0;
    animation: creditsRollUp 2s ease-out 1s forwards;
}

@keyframes creditsRollUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-to-projects {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInSlide 1s ease-out 2s forwards;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.back-to-projects a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    border: 1px solid rgba(200, 83, 0, 0.3);
    border-radius: 25px;
    background: rgba(200, 83, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.back-to-projects a:hover {
    color: #FFFFFF;
    border-color: #C85300;
    background: rgba(200, 83, 0, 0.2);
    transform: translateX(-5px);
}

.main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.project-subtitle {
    font-size: 1.3rem;
    color: #D46E25;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.production-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #CCCCCC;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.separator {
    color: #C85300;
    font-weight: bold;
}

/* Background shapes */
.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(200, 83, 0, 0.1), rgba(212, 110, 37, 0.05));
    border-radius: 50%;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Cinematic effects */
.opening-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="1" stitchTiles="stitch"/><feComponentTransfer><feFuncA type="discrete" tableValues="0 .5 0 .5 0 .5"/></feComponentTransfer></filter></defs><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
    animation: grainMove 0.5s linear infinite;
}

@keyframes grainMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.3) 70%);
}

/* ========== DIRECTOR'S BRIEF ========== */
.directors-brief {
    padding: 100px 0;
    background: #1A1A1A;
    position: relative;
}

.brief-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: #FFFFFF;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #C85300, #D46E25);
}

.brief-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.brief-story {
    background: linear-gradient(145deg, #222222, #2d2d2d);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #C85300;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brief-subtitle {
    font-size: 1.3rem;
    color: #D46E25;
    margin-bottom: 15px;
    font-weight: 600;
}

.brief-story p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #CCCCCC;
}

.prototype-showcase {
    margin-top: 30px;
    text-align: center;
}

.prototype-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #C85300, #D46E25);
    color: #FFFFFF;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(200, 83, 0, 0.3);
}

.prototype-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 83, 0, 0.5);
}

.prototype-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.production-details-card {
    background: #323233;
    border-radius: 12px;
    border: 3px solid #3f3f3f;
    overflow: hidden;
    height: fit-content;
}

.detail-frame {
    position: relative;
}

.film-strip-detail {
    background: #0A0A0A;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.perforation {
    width: 8px;
    height: 8px;
    background: #C85300;
    border-radius: 50%;
}

.details-content {
    padding: 30px;
}

.detail-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    color: #D46E25;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 500;
}

.tools-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tool-tag {
    background: rgba(200, 83, 0, 0.2);
    color: #D46E25;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(200, 83, 0, 0.3);
}

/* ========== FILM SCENES ========== */
.film-scene {
    padding: 80px 0;
    background: #1F1F1F;
    border-bottom: 1px solid #333;
}

.film-scene:nth-child(even) {
    background: #232323;
}

.scene-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.scene-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: #C85300;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.scene-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.scene-decoration {
    display: flex;
    justify-content: center;
}

.film-strip-mini {
    width: 80px;
    height: 10px;
    background: linear-gradient(90deg, #C85300, #D46E25);
    border-radius: 5px;
    position: relative;
}

.film-strip-mini::before,
.film-strip-mini::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #0A0A0A;
    border-radius: 50%;
    transform: translateY(-50%);
}

.film-strip-mini::before {
    left: 10px;
}

.film-strip-mini::after {
    right: 10px;
}

.scene-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== CINEMA SECTIONS ========== */
.cinema-section {
    margin-bottom: 60px;
}

.cinema-subtitle {
    font-size: 1.8rem;
    color: #D46E25;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

/* Challenge Grid */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.challenge-card {
    background: linear-gradient(145deg, #2A2A2A, #1A1A1A);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #3f3f3f;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.challenge-card:hover {
    transform: translateY(-5px);
    border-color: #C85300;
    box-shadow: 0 15px 30px rgba(200, 83, 0, 0.2);
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C85300, #D46E25);
}

.challenge-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 83, 0, 0.2);
    border: 2px solid #C85300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #D46E25;
}

.challenge-card h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.challenge-card p {
    color: #CCCCCC;
    line-height: 1.6;
}

/* Audience Showcase */
.audience-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.audience-card {
    background: linear-gradient(145deg, #2A2A2A, #1A1A1A);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #3f3f3f;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audience-card.primary {
    border-color: #C85300;
}

.audience-card.secondary {
    border-color: #D46E25;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.audience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C85300, #D46E25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.audience-info h4 {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.audience-info p {
    color: #CCCCCC;
    line-height: 1.7;
}

/* ========== SOLUTION SECTIONS ========== */
.solution-spotlight {
    margin-bottom: 60px;
    background: linear-gradient(145deg, #1A1A1A, #232323);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #3f3f3f;
}

.solution-title {
    font-size: 1.8rem;
    color: #D46E25;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

/* Architecture Flow */
.architecture-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.flow-step {
    background: linear-gradient(145deg, #2A2A2A, #1A1A1A);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px solid #3f3f3f;
    transition: all 0.3s ease;
    min-width: 180px;
}

.flow-step:hover {
    border-color: #C85300;
    transform: translateY(-3px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C85300, #D46E25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    color: #FFFFFF;
}

.flow-step h4 {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 600;
}

.flow-step p {
    color: #CCCCCC;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #C85300;
    font-weight: bold;
}

/* Design Elements */
.design-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.element-card {
    background: linear-gradient(145deg, #2A2A2A, #1A1A1A);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid #3f3f3f;
    transition: all 0.3s ease;
}

.element-card:hover {
    border-color: #C85300;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 83, 0, 0.2);
}

.element-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 83, 0, 0.2);
    border: 2px solid #C85300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #D46E25;
}

.element-card h4 {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-weight: 600;
}

.element-list {
    list-style: none;
    padding: 0;
}

.element-list li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: #CCCCCC;
    line-height: 1.6;
    font-size: 0.9rem;
}

.element-list li::before {
    content: '▶';
    color: #C85300;
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 0.8rem;
}

/* ========== FEATURES SHOWCASE ========== */
.features-showcase {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-reel {
    position: relative;
}

.feature-frame {
    background: linear-gradient(145deg, #2A2A2A, #1A1A1A);
    border: 3px solid #3f3f3f;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-frame:hover {
    border-color: #C85300;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 83, 0, 0.2);
}

.feature-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C85300, #D46E25);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 83, 0, 0.2);
    border: 2px solid #C85300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #D46E25;
}

.feature-frame h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0 8px 20px;
    position: relative;
    color: #CCCCCC;
    line-height: 1.6;
}

.feature-list li::before {
    content: '▶';
    color: #C85300;
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 0.8rem;
}

/* ========== DEMO SECTIONS ========== */
.demo-showcase {
    margin-bottom: 60px;
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.demo-container.mobile {
    max-width: 400px;
}

.demo-frame {
    background: #323233;
    border: 6px solid #3f3f3f;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.demo-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    border-color: #C85300;
}

.demo-header {
    background: #2A2A2A;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #3f3f3f;
}

.demo-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.recording-dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #555;
    border-radius: 50%;
    animation: dotBlink 2s infinite;
}

.dot.active {
    background: #C85300;
    animation: dotActive 1s infinite;
}

.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes dotActive {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.demo-content {
    padding: 25px;
    background: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Live Access Section */
.live-access {
    margin-top: 60px;
    text-align: center;
}

.access-frame {
    background: linear-gradient(145deg, #1A1A1A, #232323);
    border-radius: 15px;
    padding: 50px;
    border: 2px solid #3f3f3f;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.access-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C85300, #D46E25);
}

.access-content {
    position: relative;
    z-index: 2;
}

.access-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C85300, #D46E25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: #FFFFFF;
}

.access-frame h4 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 600;
}

.access-frame p {
    color: #CCCCCC;
    margin-bottom: 30px;
    line-height: 1.7;
}

.access-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #C85300, #D46E25);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(200, 83, 0, 0.3);
}

.access-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 83, 0, 0.5);
}

/* ========== ACHIEVEMENTS SECTIONS ========== */
.achievements-presentation {
    text-align: center;
    margin-bottom: 60px;
}

.achievements-title {
    font-size: 1.8rem;
    color: #D46E25;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
}

.achievements-cinema-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.achievement-card {
    background: linear-gradient(145deg, #2A2A2A, #1A1A1A);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #3f3f3f;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    border-color: #C85300;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 83, 0, 0.2);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C85300, #D46E25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.achievement-card h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.achievement-card p {
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

/* Learnings Section */
.learnings-section {
    margin-top: 60px;
}

.learnings-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.learning-spotlight {
    background: linear-gradient(145deg, #1A1A1A, #232323);
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid #C85300;
    transition: all 0.3s ease;
}

.learning-spotlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.spotlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C85300, #D46E25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #FFFFFF;
}

.learning-spotlight h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.learning-spotlight p {
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

/* ========== END CREDITS SECTION ========== */
.end-credits {
    padding: 100px 0;
    background: #29292b;
    position: relative;
}

.end-credits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.02) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 60px 60px, 100px 100px;
    animation: creditsGrain 10s infinite linear;
    pointer-events: none;
    opacity: 0.3;
}

@keyframes creditsGrain {
    0% { background-position: 0 0, 30px 50px; }
    100% { background-position: 60px 60px, 130px 150px; }
}

.credits-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    color: #CCCCCC;
    margin-bottom: 60px;
    font-size: 1rem;
}

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

.credit-card {
    background: #323233;
    border: 3px solid #3f3f3f;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.credit-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: #C85300;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7), 0 0 30px rgba(200, 83, 0, 0.4);
}

.credit-poster {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #1A1A1A;
}

.credit-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.4s ease;
}

.credit-poster img.loaded {
    opacity: 1;
    animation: posterReveal 1.2s ease-out;
}

@keyframes posterReveal {
    0% { 
        opacity: 0;
        transform: scale(1.1);
        filter: blur(5px);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
    }
}

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

.credit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(200, 83, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.credit-card:hover .credit-overlay {
    opacity: 1;
}

.view-credit {
    padding: 10px 20px;
    background: #FFFFFF;
    color: #C85300;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-credit:hover {
    background: #D46E25;
    color: #FFFFFF;
    transform: scale(1.05);
}

.credit-info {
    padding: 25px;
}

.credit-info h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.credit-type {
    font-size: 0.8rem;
    color: #C85300;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.credit-description {
    font-size: 0.9rem;
    color: #CCCCCC;
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(180deg, #070707 0%, #000000 100%);
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(200, 83, 0, 0.3);
    box-shadow: 0 -4px 20px rgba(200, 83, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.02) 1px, transparent 1px), 
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    animation: filmGrain 6s infinite;
    pointer-events: none;
    opacity: 0.3;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(200, 83, 0, 0.4) 25%,
        rgba(212, 110, 37, 0.6) 50%, 
        rgba(200, 83, 0, 0.4) 75%,
        transparent 100%);
    animation: subtleGlow 8s ease-in-out infinite;
}

@keyframes filmGrain {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, 80px 80px; }
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-section {
    margin-bottom: 60px;
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.cta-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #CCCCCC;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-divider {
    width: calc(100% - 40px);
    max-width: 1160px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #333, transparent);
    margin: 0 auto 40px auto;
}

.copyright {
    text-align: center;
}

.copyright-frame {
    display: inline-block;
    position: relative;
    padding: 12px 30px;
    background: #29292b;
    border: 1px solid #3f3f3f;
    border-radius: 6px;
}

.film-edge {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
    background-image: repeating-linear-gradient(0deg, 
        #3f3f3f 0px, #3f3f3f 3px, 
        transparent 3px, transparent 6px);
}

.film-edge.left {
    left: 0;
    border-radius: 6px 0 0 6px;
}

.film-edge.right {
    right: 0;
    border-radius: 0 6px 6px 0;
}

.copyright-text {
    font-size: 0.9rem;
    color: #C85300;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.designer-name {
    color: #D46E25;
    font-weight: 600;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .brief-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .challenge-grid,
    .audience-showcase,
    .design-elements,
    .features-grid,
    .achievements-cinema-grid,
    .learnings-showcase {
        grid-template-columns: 1fr;
    }
    
    .architecture-flow {
        flex-direction: column;
        gap: 15px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .credits-roll {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 75px;
    }
    
    .scene-content,
    .brief-content,
    .credits-content {
        padding: 0 20px;
    }
    
    .main-title {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    
    .project-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .production-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .scene-title {
        font-size: 2rem;
    }
    
    .cinema-subtitle,
    .solution-title,
    .achievements-title {
        font-size: 1.5rem;
    }
    
    .demo-container {
        max-width: 100%;
    }
    
    .demo-container.mobile {
        max-width: 300px;
    }
    
    .access-frame {
        padding: 30px;
    }
    
    .credits-roll {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .credits-content,
    .footer-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }
    
    .opening-content,
    .scene-content,
    .brief-content,
    .credits-content {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }
    
    .project-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .scene-title {
        font-size: 1.8rem;
    }
    
    .brief-story,
    .challenge-card,
    .audience-card,
    .element-card,
    .feature-frame,
    .achievement-card,
    .learning-spotlight {
        padding: 20px;
    }
    
    .demo-frame {
        padding: 15px;
    }
    
    .demo-container.mobile {
        max-width: 250px;
    }
    
    .access-frame {
        padding: 25px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        padding: 0 20px;
    }
}

/* ========== LOADING STATES & ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

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

/* ========== ACCESSIBILITY IMPROVEMENTS ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for better accessibility */
.cta-button:focus,
.prototype-link:focus,
.access-button:focus,
.view-credit:focus {
    outline: 2px solid #C85300;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .brief-subtitle,
    .detail-label,
    .cinema-subtitle,
    .solution-title,
    .achievements-title {
        color: #FFB366;
    }
    
    .cta-button,
    .prototype-link,
    .access-button,
    .view-credit {
        border: 2px solid currentColor;
    }
}

/* Dark mode preference (default) */
@media (prefers-color-scheme: dark) {
    body {
        background: #0A0A0A;
        color: #FFFFFF;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .film-loader,
    .theater-header,
    .cinema-mobile-nav,
    .opening-effects,
    .cta-button {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        padding-top: 0 !important;
    }
    
    .main-title,
    .scene-title,
    .section-title {
        color: black !important;
    }
    
    .brief-subtitle,
    .detail-label,
    .cinema-subtitle,
    .solution-title,
    .achievements-title {
        color: #8B4513 !important;
    }
}

/* ========== PERFORMANCE OPTIMIZATIONS ========== */
.demo-video {
    content-visibility: auto;
    contain-intrinsic-size: 1px 400px;
}

/* GPU acceleration for animations */
.film-reel-loader,
.recording-dots .dot {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Optimized hover states */
@media (hover: hover) {
    .challenge-card:hover,
    .audience-card:hover,
    .element-card:hover,
    .feature-frame:hover,
    .achievement-card:hover,
    .learning-spotlight:hover,
    .credit-card:hover {
        will-change: transform, box-shadow;
    }
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #C85300, #D46E25);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #D46E25, #C85300);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #C85300 #1A1A1A;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #C85300 0%, #D46E25 50%, #FF8C00 100%);
    border-radius: 10px;
    border: 2px solid #0A0A0A;
    box-shadow: 0 0 10px rgba(200, 83, 0, 0.5);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #D46E25 0%, #FF8C00 50%, #FFA500 100%);
    box-shadow: 0 0 15px rgba(200, 83, 0, 0.8);
    transform: scale(1.1);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(45deg, #B8460F 0%, #C85300 50%, #D46E25 100%);
}

::-webkit-scrollbar-corner {
    background: #0A0A0A;
}

/* Firefox scrollbar support */
html {
    scrollbar-width: thin;
    scrollbar-color: #C85300 #0A0A0A;
    scroll-behavior: smooth;
}