@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Outfit:wght@400;600&display=swap');

:root {
    --bg: #0c0c0c;
    --yellow: #e2ff00; /* From Jesse's Site */
    --purple: #6c63ff;
    --glass: rgba(255, 255, 255, 0.03);
}

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

/* Texture Overlay */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.1; pointer-events: none; z-index: 100;
}

/* Nav Bar */
.top-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 40px; background: black; border-bottom: 2px solid var(--yellow);
}

.logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 24px; }
.logo span { color: var(--yellow); }

/* Hero Sticker */
.sticker-card {
    background: var(--glass);
    border: 2px solid white;
    padding: 30px;
    position: relative;
    box-shadow: 8px 8px 0px var(--purple);
    transform: rotate(-1deg);
    backdrop-filter: blur(10px);
}

.hero-sticker h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 8vw, 64px);
    line-height: 0.9; margin: 0;
}

/* The Tape Effect */
.tape {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    width: 120px; height: 35px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Photo Frame Style */
.photo-frame {
    border: 10px solid white;
    background: white;
    width: 250px;
    transform: rotate(3deg);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
    margin: 40px auto;
}

.placeholder-img {
    height: 250px; background: #222;
    display: flex; align-items: center; justify-content: center;
    font-size: 50px; color: var(--yellow); font-weight: bold;
}

.caption {
    color: black; text-align: center; font-weight: 800;
    padding: 10px; font-size: 14px;
}

/* Project Styling */
.marker-tag {
    background: var(--yellow); color: black;
    padding: 2px 10px; font-weight: 800; font-size: 12px;
    position: absolute; top: -10px; right: 10px;
}

.tilt-right { transform: rotate(2deg); box-shadow: -8px 8px 0px var(--yellow); }

.grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 30px; padding: 40px;
}

@media (max-width: 768px) { .grid { grid-template-columns: 1fr; } }
