
/* GLOBAL BRANDING */
body { background-color: #1a1a1a; color: #e0e0e0; font-family: 'Courier New', Courier, monospace; line-height: 1.6; padding: 20px; max-width: 880px; margin: auto; }
h1, h2 { color: #ff4500; text-transform: uppercase; border-bottom: 2px solid #ff4500; }
nav { margin-bottom: 40px; padding: 10px; border: 1px dashed #555; text-align: center; }
nav a { color: #00ffcc; margin: 0 15px; text-decoration: none; font-weight: bold; }
.content-box { background: #262626; padding: 25px; border-left: 5px solid #ff4500; margin-bottom: 30px; }
.recipe-meta { font-style: italic; color: #888; margin-bottom: 20px; }
blockquote { border-left: 3px solid #00ffcc; padding-left: 15px; font-style: italic; color: #00ffcc; }

.recipe-hero {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    border: 10px solid #fff; /* The Polaroid Border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: rotate(-1deg); /* Slight tilt for that chaotic energy */
}

.image-caption {
    text-align: center;
    font-size: 0.9em;
    color: #ff4500;
    font-style: italic;
    margin-top: -20px;
    margin-bottom: 40px;
}

/* THE GLITCH EFFECT */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(62px, 9999px, 42px, 0); }
    40% { clip: rect(10px, 9999px, 86px, 0); }
    60% { clip: rect(57px, 9999px, 5px, 0); }
    80% { clip: rect(24px, 9999px, 67px, 0); }
    100% { clip: rect(89px, 9999px, 33px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(15px, 9999px, 56px, 0); }
    100% { clip: rect(45px, 9999px, 12px, 0); }
}

.legal-disclaimer {
    background: #111;
    padding: 15px;
    border: 1px solid #333;
    text-align: justify;
    text-transform: uppercase;
}
