/* --- VARIABLES --- */
:root {
    --bg-dark: #0a0a0a;
    --panel-bg: #121212;
    --razor-red: #ff3b3b;
    --razor-glow: rgba(255, 59, 59, 0.5);
    --purple: #9d00ff;
    --teal: #00ffd5;
    --text-white: #e0e0e0;
    --text-gray: #888;
}

body { font-family: 'Manrope', sans-serif; background-color: var(--bg-dark); color: var(--text-white); }
.font-header { font-family: 'Bebas Neue', cursive; letter-spacing: 1px; }

/* --- BACKGROUND --- */
.film-grain {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml,...'); /* Simulating noise via CSS or image */
    opacity: 0.05; pointer-events: none; z-index: -1;
}
.lens-flare {
    position: fixed; top: -50%; right: -20%; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.15) 0%, transparent 60%);
    z-index: -2;
}

/* --- HERO --- */
.video-hero { padding: 120px 0 100px; margin-top: 50px; position: relative; }
.badge-rec {
    color: red; font-weight: bold; border: 1px solid red; padding: 5px 15px; display: inline-block;
    border-radius: 4px; font-family: monospace; margin-bottom: 20px; text-transform: uppercase;
}
.rec-dot { width: 10px; height: 10px; background: red; border-radius: 50%; display: inline-block; animation: blink 1s infinite; margin-right: 5px; }
@keyframes blink { 50% { opacity: 0; } }

.text-razor { color: var(--razor-red); text-shadow: 0 0 15px var(--razor-red); }

.btn-razor {
    background: var(--razor-red); color: white; padding: 12px 35px; border-radius: 4px; font-weight: 700; text-decoration: none; border: none; transition: 0.3s;
}
.btn-razor:hover { transform: translateY(-3px); box-shadow: 0 0 30px var(--razor-red); color: white; }

.btn-outline-razor {
    border: 2px solid var(--razor-red); color: var(--razor-red); padding: 12px 35px; border-radius: 4px; font-weight: 700; text-decoration: none; transition: 0.3s;
}
.btn-outline-razor:hover { background: var(--razor-red); color: white; }

/* 3D PLAY BUTTON */
.play-container { position: relative; width: 300px; height: 300px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.play-circle {
    width: 100px; height: 100px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--bg-dark); font-size: 2.5rem; padding-left: 10px; z-index: 2; box-shadow: 0 0 50px rgba(255,255,255,0.2);
    transition: 0.3s;
}
.play-container:hover .play-circle { transform: scale(1.1); color: var(--razor-red); }

.wave { position: absolute; border: 2px solid rgba(255,255,255,0.1); border-radius: 50%; }
.w1 { width: 100%; height: 100%; animation: ripple 2s infinite; }
.w2 { width: 70%; height: 70%; animation: ripple 2s infinite 0.5s; }
@keyframes ripple { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

.float-item {
    position: absolute; width: 50px; height: 50px; background: #222; border: 1px solid #444; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: var(--text-white); animation: float 4s infinite ease-in-out;
}
.item-1 { top: 0; left: 20px; }
.item-2 { bottom: 20px; right: 20px; animation-delay: 1s; }
.item-3 { top: 50%; left: -20px; animation-delay: 2s; }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* --- EDITOR LAB --- */
.editor-console { background: #1a1a1a; border-radius: 8px; border: 1px solid #333; overflow: hidden; max-width: 900px; margin: 0 auto; }
.preview-monitor { height: 300px; background: black; position: relative; display: flex; align-items: center; justify-content: center; }
.screen-bg { width: 100%; height: 100%; background: url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?w=500&q=80') center/cover; transition: 0.3s; }
.overlay-ui { position: absolute; bottom: 10px; right: 10px; font-family: monospace; font-size: 0.8rem; color: var(--razor-red); }

.timeline-toolbar { background: #222; padding: 10px 20px; display: flex; gap: 10px; border-bottom: 1px solid #333; align-items: center; }
.tool-btn { background: #333; color: #ccc; border: none; padding: 5px 15px; border-radius: 4px; font-size: 0.8rem; cursor: pointer; transition: 0.2s; }
.tool-btn:hover, .tool-btn.active { background: var(--razor-red); color: white; }

.timeline-area { padding: 20px; background: #151515; position: relative; height: 150px; overflow-x: auto; }
.track-row { height: 40px; background: #222; margin-bottom: 5px; position: relative; border-radius: 4px; display: flex; align-items: center; }
.track-label { font-size: 0.7rem; color: #555; margin-bottom: 2px; }
.clip { height: 36px; border-radius: 4px; display: flex; align-items: center; padding: 0 10px; font-size: 0.75rem; overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,0.1); }
.clip-main { width: 100%; background: #2c3e50; color: #00d2ff; }
.clip-audio { width: 100%; background: #1b2631; color: #27ae60; }
.playhead { position: absolute; top: 0; left: 50%; height: 100%; width: 2px; background: red; z-index: 5; }

/* Filter Classes */
.sepia-look { filter: sepia(0.8) contrast(1.2); }
.bw-look { filter: grayscale(1) contrast(1.5); }
.vibrant-look { filter: saturate(2) contrast(1.1); }

/* --- DAVINCI SECTION --- */
.bg-panel { background: #161616; border-top: 1px solid #333; }
.text-gradient-davinci { background: linear-gradient(to right, #ff0055, #ffcc00, #00d4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.border-davinci { border: 1px solid #333; border-radius: 12px; }

.color-wheels { display: flex; justify-content: center; gap: 15px; }
.wheel { width: 80px; height: 80px; border-radius: 50%; border: 3px solid #444; position: relative; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: #666; font-weight: bold; }
.wheel::before { content: ''; width: 10px; height: 10px; background: white; border-radius: 50%; position: absolute; top: 20%; left: 30%; box-shadow: 0 0 5px white; }
.shadow { background: radial-gradient(circle, #222, #000); }
.mid { background: radial-gradient(circle, #444, #222); }
.highlight { background: radial-gradient(circle, #666, #444); }

.f-item { display: flex; gap: 15px; margin-bottom: 20px; }
.f-item i { font-size: 1.5rem; background: #222; padding: 10px; border-radius: 8px; height: 45px; }

/* --- TOOLS --- */
.tool-card { background: #1a1a1a; padding: 30px; border-radius: 12px; transition: 0.3s; height: 100%; border: 1px solid transparent; }
.tool-card:hover { transform: translateY(-5px); }
.border-pr:hover { border-color: #9d00ff; }
.border-dv:hover { border-color: #ffcc00; }
.border-ae:hover { border-color: #0000ff; }

.icon-circle { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 20px; font-weight: bold; color: #fff; }
.bg-pr { background: #9d00ff; } .bg-dv { background: linear-gradient(135deg, #ff0055, #ffcc00, #00d4ff); } .bg-ae { background: #000055; color: #dcb6ff; }

/* --- CAREER --- */
.job-pill { background: #222; padding: 8px 15px; border-radius: 20px; font-size: 0.9rem; color: #ccc; border: 1px solid #333; margin: 5px; display: inline-block; }
.bg-darker { background: #080808; }