/* ===================================
   NEHİR DİYAR - Timeline-Driven Portfolio
   Video Editing Software Inspired Design
   =================================== */

/* Variables */
:root {
    --color-bg: #1a1a1a;
    --color-bg-deep: #141414;
    --color-surface: #212121;
    --color-panel: #252528;
    --color-border: #363640;
    --color-text: #e8e8e8;
    --color-text-dim: #8a8a8a;
    --color-accent: #00d4ff;
    --color-accent-alt: #ff3366;
    --color-ai: #a855f7;
    --color-success: #00ff88;

    --font-mono: 'JetBrains Mono', 'Consolas', monospace;
    --font-sans: 'Inter', -apple-system, sans-serif;

    --timeline-height: 60px;
    --nav-height: 60px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    padding-bottom: var(--timeline-height);
    position: relative;
}

/* Spotlight Effect - Radial gradient overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 60% at 50% 40%,
            rgba(40, 40, 45, 0.6) 0%,
            rgba(26, 26, 26, 0.9) 50%,
            rgba(20, 20, 20, 1) 100%);
    pointer-events: none;
    z-index: -2;
}

/* Film Grain Texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

/* Video Editor UI Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('video-editor-bg.png') center center / cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

/* ===================================
   PREMIERE PRO UI DECORATIONS
   =================================== */

/* Audio Level Meters - Left Side */
.audio-meters-left {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.audio-meters-left::before,
.audio-meters-left::after {
    content: '';
    width: 8px;
    height: 200px;
    background: linear-gradient(to top,
            #00ff00 0%,
            #00ff00 60%,
            #ffff00 75%,
            #ff0000 100%);
    border-radius: 2px;
    animation: audioMeter 2s ease-in-out infinite;
}

.audio-meters-left::after {
    animation-delay: 0.3s;
}

/* Audio Level Meters - Right Side */
.audio-meters-right {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.audio-meters-right::before,
.audio-meters-right::after {
    content: '';
    width: 8px;
    height: 200px;
    background: linear-gradient(to top,
            #00ff00 0%,
            #00ff00 60%,
            #ffff00 75%,
            #ff0000 100%);
    border-radius: 2px;
    animation: audioMeter 2.5s ease-in-out infinite reverse;
}

@keyframes audioMeter {

    0%,
    100% {
        clip-path: inset(40% 0 0 0);
    }

    25% {
        clip-path: inset(20% 0 0 0);
    }

    50% {
        clip-path: inset(10% 0 0 0);
    }

    75% {
        clip-path: inset(30% 0 0 0);
    }
}

/* Section Divider - Premiere Pro Timeline */
.section-divider {
    display: none;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 180px;
    overflow: hidden;
    background: #323232;
    border-top: 1px solid #4a4a4a;
    border-bottom: 1px solid #4a4a4a;
    z-index: 10;
}

/* Playhead (Blue Line) */
.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #3399ff;
    z-index: 100;
    box-shadow: 0 0 4px rgba(51, 153, 255, 0.5);
    pointer-events: none;
}

/* Time Ruler Container */
.time-ruler {
    position: absolute;
    top: 0;
    left: 35px;
    width: 200%;
    height: 25px;
    z-index: 20;
    background: #323232;
    border-bottom: 1px solid #4a4a4a;
}

/* Time Ruler Ticks */
.time-ruler::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: repeating-linear-gradient(90deg,
            #888 0px, #888 1px,
            transparent 1px, transparent 10px);
    opacity: 0.5;
}

/* Time Ruler Numbers */
.time-ruler::after {
    content: '00:00:15:00        00:00:30:00        00:00:45:00        00:01:00:00';
    position: absolute;
    top: 2px;
    left: 5px;
    font-family: var(--font-mono);
    font-size: 9px;
    color: #edbf22;
    letter-spacing: 50px;
    white-space: nowrap;
    opacity: 0.8;
}

/* Track Labels Container (Left Sidebar) */
.bezier-graph {
    position: absolute;
    left: 0;
    top: 25px;
    width: 35px;
    height: calc(100% - 25px);
    background: #2a2a2a;
    border-right: 1px solid #4a4a4a;
    z-index: 30;
}

/* V1 Label */
.bezier-graph::before {
    content: 'V1';
    position: absolute;
    top: 15px;
    left: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: #6d6d6d;
}

/* A1 Label */
.bezier-graph::after {
    content: 'A1';
    position: absolute;
    top: 95px;
    left: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: #6d6d6d;
}

/* V1 Track (Video) */
.track-v1 {
    position: absolute;
    top: 35px;
    left: 0;
    width: 200%;
    height: 45px;
    background:
        repeating-linear-gradient(90deg,
            #3d9ea8 0px, #3d9ea8 120px,
            transparent 120px, transparent 122px,
            #3d9ea8 122px, #3d9ea8 250px,
            transparent 250px, transparent 252px,
            #3d9ea8 252px, #3d9ea8 400px,
            transparent 400px, transparent 402px);
    border-top: 1px solid #5ac8d4;
    border-bottom: 1px solid #2a2a2a;
    animation: trackScroll 40s linear infinite;
}

/* V2 Track (Overlay) */
.track-v2 {
    position: absolute;
    top: 85px;
    left: 0;
    width: 200%;
    height: 30px;
    background:
        repeating-linear-gradient(90deg,
            transparent 0px, transparent 150px,
            #c4387f 150px, #c4387f 220px,
            transparent 220px, transparent 350px,
            #7b4397 350px, #7b4397 420px,
            transparent 420px, transparent 500px);
    border-top: 1px solid #ff66b2;
    animation: trackScroll 40s linear infinite;
    z-index: 5;
    opacity: 0.9;
}

/* Video Track Scroll Animation */
@keyframes trackScroll {
    0% {
        transform: translateX(0);
    }

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

/* Audio Waveform Container (A1) */
.audio-waveform {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #2a2a2a;
    border-top: 1px solid #4a4a4a;
    display: flex;
    align-items: center;
    gap: 1px;
    padding-left: 36px;
    overflow: hidden;
}

/* Wave Bar Styles */
.wave-bar {
    width: 2px;
    background: #80ff80;
    flex-shrink: 0;
    border-radius: 0;
}

.wave-bar:nth-child(1) {
    height: 12px;
}

.wave-bar:nth-child(2) {
    height: 18px;
}

.wave-bar:nth-child(3) {
    height: 8px;
}

.wave-bar:nth-child(4) {
    height: 20px;
}

.wave-bar:nth-child(5) {
    height: 14px;
}

.wave-bar:nth-child(6) {
    height: 22px;
}

.wave-bar:nth-child(7) {
    height: 10px;
}

.wave-bar:nth-child(8) {
    height: 16px;
}

.wave-bar:nth-child(9) {
    height: 20px;
}

.wave-bar:nth-child(10) {
    height: 8px;
}

.wave-bar:nth-child(11) {
    height: 18px;
}

.wave-bar:nth-child(12) {
    height: 12px;
}

.wave-bar:nth-child(13) {
    height: 22px;
}

.wave-bar:nth-child(14) {
    height: 14px;
}

.wave-bar:nth-child(15) {
    height: 10px;
}

.wave-bar:nth-child(16) {
    height: 20px;
}

.wave-bar:nth-child(17) {
    height: 16px;
}

.wave-bar:nth-child(18) {
    height: 8px;
}

.wave-bar:nth-child(19) {
    height: 18px;
}

.wave-bar:nth-child(20) {
    height: 12px;
}

.wave-bar:nth-child(21) {
    height: 22px;
}

.wave-bar:nth-child(22) {
    height: 14px;
}

.wave-bar:nth-child(23) {
    height: 10px;
}

.wave-bar:nth-child(24) {
    height: 20px;
}

.wave-bar:nth-child(25) {
    height: 16px;
}

.wave-bar:nth-child(26) {
    height: 8px;
}

.wave-bar:nth-child(27) {
    height: 18px;
}

.wave-bar:nth-child(28) {
    height: 12px;
}

.wave-bar:nth-child(29) {
    height: 22px;
}

.wave-bar:nth-child(30) {
    height: 14px;
}

/* Lumetri Color Curves Background */
.lumetri-curves {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.08;
    pointer-events: none;
}

.lumetri-curves::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background:
        linear-gradient(45deg, transparent 48%, rgba(255, 0, 0, 0.3) 49%, rgba(255, 0, 0, 0.3) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 255, 0, 0.3) 49%, rgba(0, 255, 0, 0.3) 51%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(0, 0, 255, 0.3) 49%, rgba(0, 0, 255, 0.3) 51%, transparent 52%);
}

/* Vectorscope Background */
.vectorscope {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(100, 100, 110, 0.3);
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.vectorscope::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 0, 0, 0.5),
            rgba(255, 255, 0, 0.5),
            rgba(0, 255, 0, 0.5),
            rgba(0, 255, 255, 0.5),
            rgba(0, 0, 255, 0.5),
            rgba(255, 0, 255, 0.5),
            rgba(255, 0, 0, 0.5));
}

.vectorscope::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Bezier Keyframe Graph */
.bezier-graph {
    position: absolute;
    width: 100%;
    height: 60px;
    opacity: 0.1;
    pointer-events: none;
    overflow: hidden;
}

.bezier-graph::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 50px,
            rgba(100, 100, 110, 0.3) 50px,
            rgba(100, 100, 110, 0.3) 51px),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 20px,
            rgba(100, 100, 110, 0.2) 20px,
            rgba(100, 100, 110, 0.2) 21px);
}

.bezier-graph::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 2px;
    background: var(--color-accent);
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    clip-path: path('M0,30 C50,30 100,10 150,10 S250,50 300,30 S400,10 450,30 S550,50 600,30');
}

/* Track Labels */
.track-label {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--color-text-dim);
    opacity: 0.4;
    letter-spacing: 1px;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   TIMELINE BAR (Persistent)
   =================================== */
.timeline-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--timeline-height);
    background: var(--color-panel);
    border-top: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1.5rem;
}

.timecode {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    min-width: 130px;
    text-align: center;
}

.timeline-track {
    flex: 1;
    height: 12px;
    background: var(--color-surface);
    border-radius: 6px;
    position: relative;
    overflow: visible;
    cursor: pointer;
    transition: height 0.2s, box-shadow 0.2s;
}

.timeline-track:hover {
    height: 16px;
    box-shadow: 0 0 15px rgba(30, 174, 219, 0.3);
}

.timeline-track:active {
    cursor: grabbing;
}

.timeline-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-ai));
    border-radius: 4px;
    transition: width 0.1s;
}

.timeline-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 16px;
    background: var(--color-border);
    border-radius: 2px;
}

.timeline-playhead {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 20px;
    background: var(--color-accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 10;
    transition: left 0.1s;
}

.timeline-sections {
    display: flex;
    gap: 1rem;
}

.timeline-sections .section-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-text-dim);
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
    transition: color 0.3s, background 0.3s;
}

.timeline-sections .section-label[data-active="true"] {
    color: var(--color-accent);
    background: rgba(0, 212, 255, 0.1);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 999;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--color-accent);
    font-size: 0.875rem;
}

.logo-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-dim);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-cta {
    color: var(--color-bg);
    background: var(--color-accent);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
}

.nav-cta:hover {
    background: #00b8e0;
    color: var(--color-bg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-text);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premiere Timeline Silhouette */
.premiere-timeline {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    height: 180px;
    opacity: 0.15;
    pointer-events: none;
}

.timeline-tracks {
    position: relative;
    height: 100%;
    padding: 0 5%;
}

.track {
    position: relative;
    height: 30px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.video-track {
    background: rgba(97, 87, 255, 0.3);
    border: 1px solid rgba(97, 87, 255, 0.5);
}

.video-track.v2 {
    background: rgba(0, 156, 255, 0.3);
    border: 1px solid rgba(0, 156, 255, 0.5);
}

.audio-track {
    background: rgba(46, 204, 113, 0.3);
    border: 1px solid rgba(46, 204, 113, 0.5);
    height: 25px;
}

.audio-track.a2 {
    background: rgba(46, 204, 113, 0.2);
}

.clip {
    position: absolute;
    top: 3px;
    bottom: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.audio-wave {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 60%;
    transform: translateY(-50%);
    background: repeating-linear-gradient(90deg,
            transparent 0px,
            transparent 2px,
            rgba(46, 204, 113, 0.4) 2px,
            rgba(46, 204, 113, 0.4) 3px,
            transparent 3px,
            transparent 6px);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0,10 Q5,5 10,10 T20,10 T30,10 T40,10 T50,10 T60,10 T70,10 T80,10 T90,10 T100,10' stroke='white' fill='none' stroke-width='15'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0,10 Q5,5 10,10 T20,10 T30,10 T40,10 T50,10 T60,10 T70,10 T80,10 T90,10 T100,10' stroke='white' fill='none' stroke-width='15'/%3E%3C/svg%3E");
}

.timeline-ruler {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 15px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.1) 0px,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px,
            transparent 50px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-playhead-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45%;
    width: 2px;
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
}

/* Lens Effect */
.lens-container {
    position: relative;
    width: 400px;
    height: 400px;
    opacity: 0.3;
}

.lens-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lens-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--color-border);
}

.lens-ring:nth-child(1) {
    width: 85%;
    height: 85%;
}

.lens-ring:nth-child(2) {
    width: 70%;
    height: 70%;
}

.lens-ring:nth-child(3) {
    width: 55%;
    height: 55%;
}

.lens-iris {
    position: relative;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    border-radius: 50%;
    animation: irisGlow 3s ease-in-out infinite;
}

@keyframes irisGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.lens-reflection {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 20%;
    height: 20%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(5px);
}

/* Scanlines & Noise */
.scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px);
    pointer-events: none;
}

.noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.meta-item {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-icon {
    color: var(--color-accent-alt);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Glitch Text */
.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    margin-bottom: 1.5rem;
}

.glitch-text {
    position: relative;
}

.glitch-text .glitch-layer {
    display: block;
}

.glitch-text .glitch-layer:nth-child(1) {
    position: relative;
    z-index: 3;
}

.glitch-text .glitch-layer:nth-child(2),
.glitch-text .glitch-layer:nth-child(3) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

.glitch-text:hover .glitch-layer:nth-child(2) {
    color: var(--color-accent);
    animation: glitch1 0.3s infinite;
    opacity: 0.8;
}

.glitch-text:hover .glitch-layer:nth-child(3) {
    color: var(--color-accent-alt);
    animation: glitch2 0.3s infinite;
    opacity: 0.8;
}

@keyframes glitch1 {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-3px, 3px);
    }

    40% {
        transform: translate(3px, -3px);
    }

    60% {
        transform: translate(-3px, -3px);
    }

    80% {
        transform: translate(3px, 3px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes glitch2 {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(3px, -3px);
    }

    40% {
        transform: translate(-3px, 3px);
    }

    60% {
        transform: translate(3px, 3px);
    }

    80% {
        transform: translate(-3px, -3px);
    }

    100% {
        transform: translate(0);
    }
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.typing-text::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--color-accent);
    margin-left: 2px;
    animation: cursorBlink 0.8s infinite;
}

@keyframes cursorBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-tags .tag {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-text-dim);
    padding: 0.5rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hint-text {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
}

.hint-arrow {
    color: var(--color-accent);
    animation: bounce 2s infinite;
    margin-top: 0.5rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ===================================
   SECTION COMMONS
   =================================== */
.section-header {
    margin-bottom: 3rem;
}

.section-meta {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    color: var(--color-text-dim);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
}

/* ===================================
   TIMELINE SECTION
   =================================== */
.timeline-section {
    padding: 5rem 4rem;
    min-height: auto;
    position: relative;
    z-index: 1;
}

.timeline-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 3rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.timeline-wrapper::-webkit-scrollbar {
    height: 8px;
}

.timeline-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.timeline-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

.timeline-track-visual {
    display: flex;
    gap: 5rem;
    padding: 3rem 2rem;
    min-width: max-content;
}

.keyframe {
    width: 350px;
    flex-shrink: 0;
}

.keyframe-marker {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.marker-diamond {
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    transform: rotate(45deg);
    box-shadow: 0 0 20px var(--color-accent);
}

.marker-diamond.ai {
    background: var(--color-ai);
    box-shadow: 0 0 20px var(--color-ai);
}

.keyframe-content {
    background: rgba(35, 35, 40, 0.95);
    border: 1px solid rgba(80, 80, 90, 0.5);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.keyframe-video {
    height: 120px;
    background: var(--color-panel);
    position: relative;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-surface), var(--color-panel));
}

.video-placeholder.ai {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), var(--color-panel));
}

/* Waveform Animation */
.waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
}

.waveform::before,
.waveform::after {
    content: '';
    display: block;
    width: 4px;
    background: var(--color-accent);
    animation: wave 1s ease-in-out infinite;
}

.waveform::before {
    height: 20px;
    animation-delay: 0.1s;
}

.waveform::after {
    height: 30px;
    animation-delay: 0.2s;
}

.waveform.ai::before,
.waveform.ai::after {
    background: var(--color-ai);
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

.keyframe-info {
    padding: 1.75rem;
    background: rgba(30, 30, 35, 0.8);
}

.keyframe-timecode {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.keyframe-timecode.ai {
    color: var(--color-ai);
}

.keyframe-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: #ffffff;
}

.keyframe-desc {
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.keyframe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.keyframe-tags span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    padding: 0.35rem 0.85rem;
    background: rgba(50, 50, 60, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: #b0b0b0;
}

.keyframe-tags.ai span {
    border-color: rgba(168, 85, 247, 0.4);
    color: var(--color-ai);
    background: rgba(168, 85, 247, 0.1);
}

/* ===================================
   BIN SECTION
   =================================== */
.bin-section {
    padding: 5rem 2rem;
    min-height: auto;
    background: var(--color-surface);
}

.bin-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background: var(--color-panel);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.bin-sidebar {
    background: var(--color-surface);
    padding: 1.5rem;
    border-right: 1px solid var(--color-border);
}

.folder-tree {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.folder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.folder:hover {
    background: var(--color-panel);
}

.folder.active {
    background: rgba(0, 212, 255, 0.1);
}

.folder.active .folder-name {
    color: var(--color-accent);
}

.folder-icon {
    font-size: 1rem;
}

.folder-name {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

.bin-content {
    padding: 1.5rem;
}

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

.asset-grid.hidden {
    display: none;
}

.asset-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    transition: border-color 0.3s, transform 0.3s;
}

.asset-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.asset-item.ai:hover {
    border-color: var(--color-ai);
}

.asset-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-panel);
    border-radius: 8px;
    flex-shrink: 0;
}

.asset-icon img {
    width: 28px;
    height: 28px;
}

.asset-icon .icon-text {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-text-dim);
}

.asset-icon.ai-tool {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.asset-icon .icon-text.glow {
    color: var(--color-ai);
    text-shadow: 0 0 10px var(--color-ai);
}

.asset-icon.strategy {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.asset-icon.strategy .icon-text {
    color: var(--color-success);
}

.asset-icon.edius {
    background: rgba(0, 100, 255, 0.1);
    border: 1px solid rgba(0, 100, 255, 0.3);
}

.asset-icon.edius .icon-text {
    color: #0064ff;
}

.asset-icon.capcut {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.asset-icon.capcut .icon-text {
    color: var(--color-text);
}

.asset-icon.finalcut {
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.asset-icon.finalcut .icon-text {
    color: #ff00ff;
}

.asset-info {
    flex: 1;
    min-width: 0;
}

.asset-name {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text);
    display: block;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.asset-meta {
    font-size: 0.625rem;
    color: var(--color-text-dim);
}

.asset-waveform {
    width: 60px;
    height: 24px;
    background: linear-gradient(90deg,
            var(--color-accent) 2px, transparent 2px,
            transparent 6px, var(--color-accent) 6px, var(--color-accent) 8px, transparent 8px,
            transparent 12px, var(--color-accent) 12px, var(--color-accent) 14px, transparent 14px);
    background-size: 16px 100%;
    opacity: 0.3;
}

.asset-waveform.ai {
    background: linear-gradient(90deg,
            var(--color-ai) 2px, transparent 2px,
            transparent 6px, var(--color-ai) 6px, var(--color-ai) 8px, transparent 8px,
            transparent 12px, var(--color-ai) 12px, var(--color-ai) 14px, transparent 14px);
    background-size: 16px 100%;
}

/* ===================================
   RENDER SECTION
   =================================== */
.render-section {
    padding: 5rem 2rem;
    min-height: auto;
}

.source-monitor {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.monitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--color-panel);
    border-bottom: 1px solid var(--color-border);
}

.monitor-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

.monitor-controls {
    display: flex;
    gap: 1rem;
}

.control {
    font-size: 0.875rem;
    color: var(--color-text-dim);
    cursor: pointer;
    transition: color 0.3s;
}

.control:hover {
    color: var(--color-text);
}

.control.play {
    color: var(--color-accent);
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background: rgba(30, 30, 30, 0.8);
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

/* Timeline Ruler - Cetvel Çizgisi */
.video-gallery::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 20px;
    bottom: 20px;
    border-left: 1px dashed rgba(100, 100, 110, 0.5);
    pointer-events: none;
}

/* Tüm Videolar Eşit Boyut */
.gallery-item.horizontal {
    grid-column: span 1;
}

.gallery-item.horizontal .video-frame {
    aspect-ratio: 16 / 9;
}

/* Dikey Videolar (Kısa İçerik) */
.gallery-item.vertical {
    grid-column: span 1;
}

.gallery-item.vertical .video-frame {
    aspect-ratio: 16 / 9;
}

.gallery-item {
    background: var(--color-surface);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.gallery-item:hover .video-frame img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .video-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 2rem;
    color: white;
}

.video-meta {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
}

.duration {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
}

.video-info {
    padding: 1rem;
}

.video-name {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text);
    display: block;
    margin-bottom: 0.25rem;
}

.video-type {
    font-size: 0.625rem;
    color: var(--color-text-dim);
}

/* Reels */
.reels-section {
    max-width: 1400px;
    margin: 4rem auto 0;
}

.reels-title {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
}

.reels-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.reels-grid::-webkit-scrollbar {
    height: 6px;
}

.reels-grid::-webkit-scrollbar-track {
    background: var(--color-surface);
    border-radius: 3px;
}

.reels-grid::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

.reels-grid::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

.reel-item {
    text-align: center;
    flex-shrink: 0;
    width: 140px;
    scroll-snap-align: start;
}

.reel-frame {
    aspect-ratio: 9 / 16;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: border-color 0.3s;
    width: 100%;
}

.reel-item:hover .reel-frame {
    border-color: var(--color-accent);
}

.reel-placeholder {
    opacity: 0.5;
}

.reel-name {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    color: var(--color-text-dim);
}

/* ===================================
   CREDITS SECTION (CLIENT ROSTER)
   =================================== */
.credits-section {
    padding: 6rem 0;
    overflow: hidden;
    background: var(--color-bg);
}

.credits-section .section-header {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.credits-section .section-header.center {
    text-align: center;
}

.credits-marquee {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.credits-marquee:hover .marquee-track {
    animation-play-state: paused;
}

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

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

.marquee-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 0 2.5rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
    gap: 0.5rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.logo-item img {
    max-width: 160px;
    max-height: 70px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.4s ease;
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Inline SVG logos */
.logo-svg-inline {
    width: 140px;
    height: 50px;
    color: #e50914;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.logo-item:hover .logo-svg-inline {
    opacity: 1;
    transform: scale(1.1);
}

.logo-item.netflix .logo-svg-inline {
    color: #e50914;
}

.logo-item.sephora .logo-svg-inline {
    color: #000000;
}

.logo-item.gov img {
    max-width: 70px;
    max-height: 70px;
    filter: none;
    /* Government logos keep original colors */
    opacity: 0.9;
}

/* Invert specific logos for dark background */
.logo-item.invert-logo img {
    filter: invert(1) brightness(1.2);
}

/* Bigger logos */
.logo-item.big-logo img {
    max-width: 200px;
    max-height: 80px;
}

.logo-name {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.logo-item:hover .logo-name {
    opacity: 1;
}

/* Brand text logos */
.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.netflix-text {
    font-family: 'Bebas Neue', Impact, sans-serif;
    color: #e50914;
    font-size: 1.8rem;
}

.sephora-text {
    font-family: Georgia, serif;
    color: #ffffff;
    letter-spacing: 0.2em;
}

.logo-item:hover .brand-text {
    opacity: 1;
    transform: scale(1.1);
}

/* Make dark logos visible on dark background */
.logo-item img {
    filter: brightness(1.2);
}

/* Brand hover colors */
.logo-item.netflix:hover .logo-svg {
    color: #e50914;
}

.logo-item.sephora:hover .logo-svg {
    color: #ffffff;
}

.logo-item.lcwaikiki:hover .logo-svg {
    color: #e4002b;
}

.logo-item.turktelekom:hover .logo-svg {
    color: #00a0df;
}

.logo-item.vakifbank:hover .logo-svg {
    color: #ffd700;
}

.logo-item.watsons:hover .logo-svg {
    color: #00a859;
}

.logo-item.kahvedunyasi:hover .logo-svg {
    color: #8b4513;
}

.logo-item.microgrup:hover .logo-svg {
    color: #ffffff;
}

.logo-item.gov:hover .logo-svg {
    color: #c8102e;
}

.logo-item.netflix:hover .logo-name {
    color: #e50914;
}

.logo-item.gov:hover .logo-name {
    color: #c8102e;
}

.logo-item.text-logo {
    min-width: 180px;
}

.logo-item.text-logo span {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #ffffff;
    opacity: 0.6;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.logo-item.text-logo:hover span {
    color: var(--color-text);
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Brand-specific colors on hover */
.logo-item.netflix:hover span {
    color: #e50914;
    text-shadow: 0 0 30px rgba(229, 9, 20, 0.5);
}

.logo-item.sephora:hover span {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.logo-item.lcwaikiki:hover span {
    color: #e4002b;
    text-shadow: 0 0 30px rgba(228, 0, 43, 0.5);
}

.logo-item.turktelekom:hover span {
    color: #00a0df;
    text-shadow: 0 0 30px rgba(0, 160, 223, 0.5);
}

.logo-item.vakifbank:hover span {
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.logo-item.watsons:hover span {
    color: #00a859;
    text-shadow: 0 0 30px rgba(0, 168, 89, 0.5);
}

.logo-item.kahvedunyasi:hover span {
    color: #8b4513;
    text-shadow: 0 0 30px rgba(139, 69, 19, 0.5);
}

.logo-item.gov:hover span {
    color: #c8102e;
    text-shadow: 0 0 30px rgba(200, 16, 46, 0.5);
}

/* Film Strip Effect */
.credits-film-strip {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.film-holes {
    display: flex;
    gap: 20px;
    padding: 10px 40px;
    background: var(--color-surface);
    border-radius: 4px;
}

.film-holes::before,
.film-holes::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--color-bg);
    border-radius: 2px;
}

.film-holes::before {
    box-shadow:
        20px 0 0 var(--color-bg),
        40px 0 0 var(--color-bg),
        60px 0 0 var(--color-bg),
        80px 0 0 var(--color-bg),
        100px 0 0 var(--color-bg);
}

.film-holes::after {
    box-shadow:
        -20px 0 0 var(--color-bg),
        -40px 0 0 var(--color-bg),
        -60px 0 0 var(--color-bg),
        -80px 0 0 var(--color-bg),
        -100px 0 0 var(--color-bg);
}

/* ===================================
   EXPORT SECTION (FOOTER)
   =================================== */
.export-section {
    padding: 6rem 2rem 8rem;
    background: var(--color-panel);
    border-top: 1px solid var(--color-border);
}

.export-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   EMPLOYMENT SECTION
   =================================== */
.employment-section {
    padding: 6rem 4rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(20, 20, 20, 1) 100%);
}

.employment-container {
    max-width: 800px;
    margin: 0 auto;
}

.employment-timeline {
    position: relative;
    padding-left: 2rem;
}

.job-item {
    position: relative;
    padding-bottom: 3rem;
}

.job-item:last-child {
    padding-bottom: 0;
}

.job-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.job-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
    border: 2px solid var(--color-surface);
    z-index: 1;
}

.job-item.current .job-dot {
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
}

.job-line {
    width: 2px;
    flex-grow: 1;
    background: var(--color-border);
    margin-top: 0.5rem;
    min-height: 100%;
    position: absolute;
    top: 16px;
    left: 5px;
    height: calc(100% + 1rem);
}

.job-item:last-child .job-line {
    display: none;
}

.job-content {
    background: var(--color-panel);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.3s;
}

.job-content:hover {
    border-color: var(--color-accent);
    transform: translateX(5px);
}

.job-item.current .job-content {
    border-color: var(--color-accent);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.job-company {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.job-badge {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-bg);
    background: var(--color-accent);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.job-role {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.job-duration {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-dim);
    margin-bottom: 1rem;
}

.job-description {
    font-size: 0.875rem;
    color: var(--color-text-dim);
    line-height: 1.6;
    margin: 0;
}

.export-header {
    margin-bottom: 3rem;
}

.export-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.status-icon {
    width: 24px;
    height: 24px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--color-bg);
}

.status-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-success);
}

.export-progress {
    height: 4px;
    background: var(--color-surface);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--color-success);
    transition: width 1s var(--ease-out);
}

.progress-bar.complete {
    width: 100%;
}

.export-summary {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.export-title {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
}

.item-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.contact-export {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.export-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-panel);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    transition: border-color 0.3s, transform 0.3s;
    overflow: hidden;
    flex-wrap: wrap;
    max-width: 100%;
}

.export-link:hover {
    border-color: var(--color-accent);
    transform: translateX(5px);
}

.link-icon {
    font-size: 1.25rem;
}

.link-path {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    color: var(--color-text-dim);
}

.link-value {
    font-size: 0.875rem;
    color: var(--color-text);
    margin-left: auto;
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
}

.export-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
}

.copyright {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

.tagline {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .bin-container {
        grid-template-columns: 1fr;
    }

    .bin-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .folder-tree {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline-bar {
        flex-wrap: wrap;
        height: auto;
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .timeline-sections {
        display: none;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .video-gallery {
        grid-template-columns: 1fr;
    }

    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .export-footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ===================================
   VIDEO MODAL
   =================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10000;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 51, 102, 0.8);
    border-color: rgba(255, 51, 102, 1);
    transform: scale(1.1);
}

.modal-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}