/* ronri.xyz - Graffiti Logic Wall */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --concrete: #2A2A30;
    --concrete-mid: #3A3A42;
    --steel-gray: #8A8A92;
    --light-gray: #EAEAEA;
    --off-white: #F0F0F0;
    --neon-cyan: #00E5FF;
    --hot-pink: #FF1493;
    --spray-yellow: #FFE135;
}
body {
    background: var(--concrete);
    color: var(--off-white);
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    overflow-x: hidden;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.01) 0px, transparent 1px, transparent 3px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.01) 0px, transparent 1px, transparent 3px);
}

/* Wall Blocks */
.wall-block {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 3rem;
    position: relative;
}
.rotate-left { transform: rotate(-1deg); }
.rotate-right { transform: rotate(1.5deg); }

/* Graffiti Typography */
.graffiti-title {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--neon-cyan);
    text-shadow: 3px 3px 0 rgba(0,229,255,0.2);
    position: relative;
}
.graffiti-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20%;
    width: 3px;
    height: 20px;
    background: var(--neon-cyan);
    opacity: 0.4;
    animation: drip 2s ease-in infinite;
}
@keyframes drip {
    0% { height: 0; opacity: 0.6; }
    100% { height: 30px; opacity: 0; }
}

.wall-sub {
    font-size: 1rem;
    color: var(--steel-gray);
    margin-top: 1rem;
}

.graffiti-heading {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--spray-yellow);
    margin-bottom: 1.5rem;
}
.graffiti-heading.accent-pink { color: var(--hot-pink); }

.wall-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--light-gray);
    max-width: 600px;
}

/* Logic Overlay */
.logic-overlay {
    display: block;
    font-family: 'Fira Code', monospace;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    opacity: 0.25;
    margin-top: 2rem;
    transform: rotate(-2deg);
}

/* Stencil Dividers */
.stencil-divider {
    max-width: 800px;
    margin: 0 auto;
    height: 2px;
    border-top: 3px dashed var(--steel-gray);
    opacity: 0.15;
}

/* Footer */
#footer {
    text-align: center;
    padding: 4rem 2rem;
}
.footer-text {
    font-family: 'Permanent Marker', cursive;
    font-size: 0.85rem;
    color: var(--steel-gray);
    opacity: 0.3;
}

@media (max-width: 600px) {
    .wall-block { padding: 3rem 2rem; }
    .rotate-left, .rotate-right { transform: none; }
}
