:root {
    --neon-cyan: #00f3ff;
    --retro-orange: #ff8c00;
    --dark-bg: #050505;
}

body {
    background-color: var(--dark-bg);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Retro CRT Effect Overlay */
.scanline {
    width: 100%; height: 100%;
    position: fixed; top: 0; left: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
                linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 3px 100%;
    pointer-events: none; z-index: 10;
}

h1 {
    font-family: 'VT323', monospace;
    font-size: 4.5rem;
    line-height: 0.9;
    text-transform: uppercase;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 100px 10%;
    min-height: 90vh;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: #111;
    border: 12px solid #222;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 0 50px var(--neon-cyan);
    transform: rotate(5deg);
}

.camera-ui {
    background: #000;
    height: 100%;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.viewfinder {
    flex-grow: 1;
    border: 2px solid #333;
    background: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=300&q=80'); /* Sample Party Image */
    background-size: cover;
}

.date-stamp {
    color: var(--retro-orange);
    font-family: 'VT323';
    font-size: 24px;
    text-align: right;
}

/* Animation */
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-bottom {
    background: var(--neon-cyan);
    color: black;
    padding: 10px 0;
    font-family: 'VT323';
    font-size: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
}