/* ============================================
   corePHP April Fools 2026 — Shared GeoCities Theme
   "Someone deployed the 1997 backup"
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

:root {
    --neon-green: #00FF00;
    --hot-pink: #FF00FF;
    --cyan: #00FFFF;
    --yellow: #FFFF00;
    --orange: #FF6600;
    --red: #FF0000;
    --blue: #3333FF;
    --link-blue: #0099FF;
    --bg-dark: #0a0a2e;
    --core-red: #960000;
    --teal: #00b4d8;
    --gold: #FFD700;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg-dark);
    color: var(--neon-green);
    font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', cursive;
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: 35px;
}

/* ===== STARFIELD ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(1px 1px at 5% 15%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 12% 80%, #ffffaa, transparent),
        radial-gradient(1px 1px at 18% 45%, #fff, transparent),
        radial-gradient(1px 1px at 25% 10%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 32% 65%, #aaffff, transparent),
        radial-gradient(1px 1px at 38% 30%, #fff, transparent),
        radial-gradient(1px 1px at 45% 85%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 52% 20%, #ffaaff, transparent),
        radial-gradient(1px 1px at 58% 55%, #fff, transparent),
        radial-gradient(1px 1px at 65% 5%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 72% 75%, #aaffaa, transparent),
        radial-gradient(1px 1px at 78% 40%, #fff, transparent),
        radial-gradient(1px 1px at 85% 90%, #fff, transparent),
        radial-gradient(1px 1px at 92% 25%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 98% 60%, #ffffcc, transparent),
        radial-gradient(1px 1px at 8% 70%, #fff, transparent),
        radial-gradient(1px 1px at 42% 50%, #fff, transparent),
        radial-gradient(1px 1px at 68% 35%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 88% 12%, #ccccff, transparent),
        radial-gradient(1px 1px at 55% 95%, #fff, transparent);
    background-color: var(--bg-dark);
    z-index: -1;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle { 0% { opacity: .75; } 100% { opacity: 1; } }

/* ===== INCIDENT BANNER ===== */
.incident-banner {
    background: var(--core-red);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    border-bottom: 2px dashed var(--yellow);
    position: relative;
    z-index: 100;
}
.incident-banner a { color: var(--yellow); cursor: pointer; }

/* ===== MARQUEE ===== */
.marquee-bar {
    background: linear-gradient(90deg, #ff0000, #ff7700, #ffff00, #00ff00, #0000ff, #8b00ff, #ff0000);
    background-size: 200% 100%;
    animation: rainbow 3s linear infinite;
    padding: 6px 0;
    border: 2px solid var(--yellow);
    margin: 8px 0;
    overflow: hidden;
}
@keyframes rainbow { to { background-position: 200% 50%; } }
.marquee-bar marquee {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 2px 2px 0 #000;
}

/* ===== CONTAINER ===== */
.container { max-width: 820px; margin: 0 auto; padding: 8px; }

/* ===== HEADER ===== */
.site-header {
    text-align: center;
    padding: 24px 16px;
    border: 3px ridge #666699;
    background: linear-gradient(180deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    margin-bottom: 8px;
}
.header-stars {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 4px;
    animation: sparkle-stars 1s ease-in-out infinite alternate;
}
@keyframes sparkle-stars {
    0% { opacity: .5; text-shadow: 0 0 4px var(--gold); }
    100% { opacity: 1; text-shadow: 0 0 12px var(--gold), 0 0 24px var(--orange); }
}
.site-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 32px;
    color: var(--core-red);
    text-shadow: 3px 3px 0 #ff4444, -1px -1px 0 var(--orange), 0 0 20px rgba(150,0,0,.6);
    margin: 12px 0;
    animation: title-pulse 2s ease-in-out infinite alternate;
}
@keyframes title-pulse {
    0% { text-shadow: 3px 3px 0 #ff4444, 0 0 10px rgba(150,0,0,.4); }
    100% { text-shadow: 3px 3px 0 #ff4444, 0 0 40px rgba(150,0,0,.8), 0 0 80px rgba(255,0,0,.3); }
}
.site-tagline { color: var(--cyan); font-size: 15px; margin: 8px auto; max-width: 600px; line-height: 1.5; }
.site-tagline-sub { color: #aab; font-size: 12px; margin: 8px auto 0; line-height: 1.6; max-width: 550px; }
.header-badge {
    display: inline-block;
    margin-top: 12px;
    background: var(--core-red);
    color: white;
    font-size: 11px;
    padding: 4px 14px;
    border: 2px outset #cc3333;
}

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
    text-align: center;
    padding: 16px;
    border: 3px ridge #666699;
    background: linear-gradient(180deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    margin-bottom: 8px;
}
.page-header h1 {
    font-family: 'Press Start 2P', monospace;
    font-size: 22px;
    color: var(--core-red);
    text-shadow: 3px 3px 0 #ff4444;
    animation: title-pulse 2s ease-in-out infinite alternate;
    margin: 8px 0;
}
.page-header .breadcrumb {
    color: #8888aa;
    font-size: 11px;
    margin-top: 6px;
}
.page-header .breadcrumb a { color: var(--link-blue); text-decoration: underline; }

/* ===== BLINK ===== */
.blink { animation: blink-text 1s step-start infinite; }
@keyframes blink-text { 50% { opacity: 0; } }

/* ===== CONSTRUCTION ===== */
.under-construction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: repeating-linear-gradient(45deg, #000 0 10px, var(--yellow) 10px 20px);
    padding: 10px;
    margin: 8px 0;
    border: 2px solid var(--orange);
}
.construction-icon { font-size: 28px; animation: bounce .5s ease-in-out infinite alternate; }
@keyframes bounce { to { transform: rotate(10deg); } }
.under-construction-text {
    color: var(--red);
    font-weight: bold;
    font-size: 16px;
    text-shadow: 2px 2px 0 var(--yellow);
    background: #000;
    padding: 3px 10px;
}

/* ===== COUNTER ===== */
.visitor-counter {
    text-align: center;
    margin: 12px 0;
    padding: 8px;
    background: #0a0a1e;
    border: 2px inset #666699;
}
.counter-label { color: var(--cyan); font-size: 11px; }
.counter-digits {
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 28px;
    color: var(--neon-green);
    background: #000;
    padding: 3px 14px;
    border: 2px inset #444;
    display: inline-block;
    margin-top: 4px;
    letter-spacing: 4px;
    text-shadow: 0 0 8px var(--neon-green);
}

/* ===== NAV ===== */
.nav-bar {
    text-align: center;
    background: #111;
    border: 2px ridge #666699;
    padding: 10px 8px;
    margin: 8px 0;
}
.nav-bar a {
    color: var(--link-blue);
    text-decoration: underline;
    font-size: 13px;
    margin: 0 4px;
    display: inline-block;
    padding: 2px 0;
}
.nav-bar a:hover { color: var(--yellow); background: var(--blue); }
.nav-bar a.active { color: var(--yellow); font-weight: bold; }
.nav-sep { color: var(--hot-pink); font-weight: bold; }
.nav-bar .dropdown { display: inline-block; position: relative; }
.nav-bar .dropdown-content {
    display: none;
    position: absolute;
    background: #111;
    border: 2px ridge #666699;
    padding: 6px;
    z-index: 50;
    min-width: 200px;
    text-align: left;
    left: 0;
    top: 100%;
}
.nav-bar .dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { display: block; padding: 3px 6px; margin: 0; font-size: 12px; }
.dropdown-content .sub-label {
    color: var(--yellow);
    font-size: 10px;
    padding: 4px 6px 1px;
    display: block;
}

/* ===== DIVIDERS ===== */
.rainbow-hr {
    height: 6px;
    border: none;
    background: linear-gradient(90deg, #f00, #f70, #ff0, #0f0, #00f, #8b00ff, #f00);
    background-size: 200% 100%;
    animation: rainbow 2s linear infinite;
    margin: 14px 0;
}
.flame-divider {
    text-align: center;
    font-size: 18px;
    margin: 10px 0;
    animation: flame .3s ease-in-out infinite alternate;
}
@keyframes flame { to { transform: scaleY(1.15); } }

/* ===== CONTENT SECTIONS ===== */
.section {
    background: rgba(10, 10, 46, .85);
    border: 2px ridge #666699;
    padding: 16px;
    margin: 14px 0;
}
.section-title {
    color: var(--yellow);
    font-size: 20px;
    text-align: center;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0 var(--core-red);
}
.section-subtitle {
    color: #aab;
    font-size: 12px;
    text-align: center;
    margin-bottom: 12px;
}

/* ===== BADGES ===== */
.new-gif {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 1px 4px;
    animation: flash .5s step-start infinite;
    vertical-align: middle;
    margin: 0 3px;
}
@keyframes flash { 50% { background: var(--yellow); color: var(--red); } }

/* ===== HERO CTA ===== */
.hero-cta {
    display: inline-block;
    margin-top: 14px;
    background: var(--core-red);
    color: #fff;
    font-family: 'Comic Sans MS', cursive;
    font-size: 14px;
    padding: 8px 28px;
    border: 3px outset #cc3333;
    text-decoration: none;
    cursor: pointer;
    animation: cta-glow 1.5s ease-in-out infinite alternate;
}
.hero-cta:active { border-style: inset; }
@keyframes cta-glow {
    0% { box-shadow: 0 0 4px var(--core-red); }
    100% { box-shadow: 0 0 20px var(--core-red), 0 0 40px rgba(150,0,0,.4); }
}
.hero-cta-sm { font-size: 12px; padding: 6px 20px; }

/* ===== STATS ===== */
.stats-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.stat-box {
    background: #0a0022;
    border: 2px ridge #666699;
    padding: 14px 12px;
    text-align: center;
    flex: 1;
    min-width: 160px;
}
.stat-number {
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 30px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    display: block;
}
.stat-label { color: var(--cyan); font-size: 11px; margin-top: 4px; }
.stat-90s { color: #555588; font-size: 9px; margin-top: 2px; display: block; }

/* ===== SERVICES TABLE ===== */
.services-table { width: 100%; border-collapse: collapse; margin: 10px 0; }
.services-table td {
    border: 2px ridge #666699;
    padding: 14px;
    vertical-align: top;
    background: #060630;
    width: 50%;
}
.service-icon { font-size: 28px; display: block; text-align: center; margin-bottom: 5px; }
.service-name {
    color: var(--hot-pink);
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    display: block;
    margin-bottom: 6px;
}
.service-desc { color: #aaaacc; font-size: 12px; text-align: center; line-height: 1.6; }
.service-link { display: block; text-align: center; margin-top: 8px; }
.service-link a { color: var(--link-blue); text-decoration: underline; font-size: 11px; }
.service-techs {
    display: block;
    text-align: center;
    margin-top: 6px;
    font-size: 10px;
    color: var(--gold);
}

/* ===== CLIENT / PORTFOLIO BADGES ===== */
.client-grid { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 12px 0; }
.client-badge {
    background: #111133;
    border: 2px ridge #666699;
    padding: 12px 20px;
    text-align: center;
    font-size: 13px;
    min-width: 140px;
}
.client-icon { font-size: 24px; display: block; margin-bottom: 4px; }

/* ===== GUESTBOOK / TESTIMONIALS ===== */
.guestbook-entry {
    background: #0d0d3a;
    border: 1px solid #333366;
    padding: 12px;
    margin: 10px 0;
}
.gb-author { color: var(--hot-pink); font-weight: bold; font-size: 13px; }
.gb-title { color: var(--gold); font-size: 10px; margin-left: 6px; }
.gb-date { color: #555577; font-size: 10px; margin-left: 8px; }
.gb-text { color: #ccccdd; font-size: 13px; margin-top: 6px; line-height: 1.7; }
.gb-mood { color: var(--yellow); font-size: 11px; margin-top: 4px; }

/* ===== BLOG ===== */
.blog-post {
    background: #080838;
    border-left: 3px solid var(--core-red);
    padding: 10px 14px;
    margin: 10px 0;
}
.blog-title {
    color: var(--link-blue);
    text-decoration: underline;
    font-size: 13px;
    cursor: pointer;
    line-height: 1.5;
}
.blog-title:hover { color: var(--yellow); }
.blog-date { color: #555577; font-size: 10px; display: block; margin-top: 3px; }
.blog-preview { color: #8888aa; font-size: 11px; margin-top: 4px; line-height: 1.5; }
.blog-category {
    display: inline-block;
    background: #222255;
    color: var(--cyan);
    font-size: 9px;
    padding: 1px 6px;
    border: 1px solid #444488;
    margin-top: 4px;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: #110033;
    border: 2px ridge var(--hot-pink);
    padding: 16px;
    margin: 14px 0;
    text-align: center;
}
.newsletter input[type="email"],
.newsletter input[type="text"] {
    background: #fff;
    border: 2px inset #999;
    padding: 5px 10px;
    font-family: 'Comic Sans MS', cursive;
    font-size: 13px;
    width: 220px;
}
.btn-90s {
    background: #666688;
    border: 2px outset #aaa;
    color: #fff;
    padding: 5px 18px;
    font-family: 'Comic Sans MS', cursive;
    font-size: 13px;
    cursor: pointer;
    margin-left: 4px;
}
.btn-90s:active { border-style: inset; }
.btn-90s-red {
    background: var(--core-red);
    border: 2px outset #cc3333;
    color: #fff;
    padding: 6px 20px;
    font-family: 'Comic Sans MS', cursive;
    font-size: 13px;
    cursor: pointer;
}
.btn-90s-red:active { border-style: inset; }

/* ===== FORMS ===== */
.form-90s {
    background: #080830;
    border: 2px inset #666699;
    padding: 14px;
    margin: 12px auto;
    max-width: 500px;
}
.form-90s label { color: var(--cyan); font-size: 11px; display: block; margin-top: 8px; }
.form-90s input,
.form-90s textarea,
.form-90s select {
    background: #fff;
    border: 2px inset #999;
    font-family: 'Comic Sans MS', cursive;
    font-size: 12px;
    padding: 5px 8px;
    width: 100%;
    margin: 3px 0;
}
.form-90s textarea { height: 80px; resize: none; }
.form-90s select { cursor: pointer; }
.form-submit { text-align: center; margin-top: 10px; }

/* ===== CONTACT ===== */
.contact-section {
    background: #0a0022;
    border: 2px ridge #666699;
    padding: 16px;
    margin: 14px 0;
}
.contact-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.contact-col { flex: 1; min-width: 180px; }
.contact-col h4 { color: var(--yellow); font-size: 13px; margin-bottom: 8px; }
.contact-col a { color: var(--link-blue); text-decoration: underline; font-size: 12px; }
.contact-col p, .contact-col li { color: #aaaacc; font-size: 12px; line-height: 1.8; }
.contact-col ul { list-style: none; }
.contact-col ul li::before { content: '>> '; color: var(--neon-green); }

/* ===== SOCIAL ===== */
.social-links { text-align: center; margin: 10px 0; }
.social-btn {
    display: inline-block;
    background: #222244;
    border: 2px outset #666;
    padding: 4px 12px;
    margin: 3px;
    font-size: 12px;
    color: var(--link-blue);
    text-decoration: none;
    cursor: pointer;
}
.social-btn:hover { background: #333366; }

/* ===== AWARDS ===== */
.awards { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 14px 0; }
.award {
    background: #0d0d2a;
    border: 2px ridge var(--gold);
    padding: 10px 14px;
    text-align: center;
    font-size: 10px;
    color: var(--gold);
    width: 120px;
}
.award-icon { font-size: 24px; display: block; margin-bottom: 4px; }

/* ===== WEB RING ===== */
.web-ring {
    background: #0d0d3a;
    border: 2px ridge #666699;
    padding: 12px;
    text-align: center;
    margin: 14px 0;
}
.web-ring-title { color: var(--orange); font-size: 13px; font-weight: bold; margin-bottom: 8px; }
.wr-nav { display: flex; justify-content: center; gap: 14px; }
.wr-nav a { color: var(--link-blue); text-decoration: underline; font-size: 12px; }

/* ===== MIDI PLAYER ===== */
.midi-player {
    background: #161640;
    border: 2px ridge #666699;
    padding: 10px;
    text-align: center;
    margin: 14px 0;
}
.midi-title { color: var(--cyan); font-size: 11px; margin-bottom: 6px; }
.midi-controls { display: flex; justify-content: center; gap: 8px; }
.midi-btn {
    background: #444466;
    border: 2px outset #888;
    color: var(--neon-green);
    padding: 3px 12px;
    font-family: 'Comic Sans MS', cursive;
    font-size: 11px;
    cursor: pointer;
}
.midi-btn:active { border-style: inset; }
.midi-status { color: var(--yellow); font-size: 10px; margin-top: 5px; font-family: 'VT323', monospace; }

/* ===== FOOTER ===== */
.site-footer {
    text-align: center;
    padding: 16px;
    font-size: 11px;
    color: #555577;
    border-top: 2px ridge #666699;
    margin-top: 16px;
}
.site-footer a { color: var(--link-blue); text-decoration: underline; }
.best-viewed {
    margin-top: 12px;
    padding: 8px 12px;
    border: 1px dashed #333355;
    display: inline-block;
}
.best-viewed-text { color: var(--cyan); font-size: 10px; }
.netscape-btn {
    display: inline-block;
    background: #444466;
    border: 2px outset #888;
    color: var(--neon-green);
    padding: 3px 10px;
    font-size: 10px;
    margin-top: 5px;
    text-decoration: none;
}

/* ===== STATUS BAR ===== */
.status-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #c0c0c0;
    border-top: 2px ridge #888;
    padding: 3px 8px;
    font-family: 'MS Sans Serif', Tahoma, sans-serif;
    font-size: 11px;
    color: #333;
    display: flex;
    align-items: center;
    z-index: 1000;
}

/* ===== SPARKLE ===== */
.sparkle {
    position: fixed;
    pointer-events: none;
    font-size: 14px;
    z-index: 9999;
    animation: sparkle-out .8s ease-out forwards;
}
@keyframes sparkle-out {
    0% { opacity: 1; transform: scale(1) translateY(0); }
    100% { opacity: 0; transform: scale(0) translateY(-20px); }
}

/* ===== SHOOTING STAR ===== */
.shooting-star {
    position: fixed;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 4px #fff, 0 0 8px #fff;
    z-index: -1;
    animation: shoot 1.5s linear forwards;
}
@keyframes shoot { to { opacity: 0; transform: translate(-300px, 300px); } }

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
    border: 4px ridge var(--gold);
    padding: 40px 50px;
    text-align: center;
    background: #0a0a2e;
    max-width: 500px;
}
.modal-box h2 {
    font-family: 'Press Start 2P', monospace;
    color: var(--hot-pink);
    font-size: 28px;
    margin-bottom: 14px;
    animation: title-pulse 1s ease-in-out infinite alternate;
}
.modal-box p { color: var(--cyan); font-size: 14px; line-height: 1.7; }
.modal-box .close-btn {
    margin-top: 18px;
    background: var(--core-red);
    color: #fff;
    border: 2px outset #cc3333;
    padding: 8px 24px;
    font-family: 'Comic Sans MS', cursive;
    font-size: 14px;
    cursor: pointer;
}

/* ===== ANIMATIONS ===== */
.wobble { display: inline-block; animation: wobble 2s ease-in-out infinite; }
@keyframes wobble { 25% { transform: rotate(15deg); } 75% { transform: rotate(-15deg); } }
.dancing { display: inline-block; animation: dance .4s ease-in-out infinite alternate; }
@keyframes dance { to { transform: translateY(-4px) rotate(5deg); } }
.email-spin { display: inline-block; animation: espin 2s linear infinite; }
@keyframes espin { to { transform: rotateY(360deg); } }

/* ===== TEAM ===== */
.team-grid { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 12px 0; }
.team-member { text-align: center; width: 120px; }
.team-avatar {
    width: 80px;
    height: 80px;
    background: #111144;
    border: 2px ridge #666699;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 5px;
}
.team-name { color: var(--hot-pink); font-size: 11px; font-weight: bold; }
.team-role { color: #8888aa; font-size: 9px; margin-top: 2px; }

/* ===== CONTENT HELPERS ===== */
.text-center { text-align: center; }
.text-sm { font-size: 12px; }
.text-xs { font-size: 10px; }
.text-muted { color: #8888aa; }
.text-cyan { color: var(--cyan); }
.text-pink { color: var(--hot-pink); }
.text-yellow { color: var(--yellow); }
.text-green { color: var(--neon-green); }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.mt-sm { margin-top: 6px; }
.mt-md { margin-top: 12px; }
.mb-sm { margin-bottom: 6px; }
.mb-md { margin-bottom: 12px; }

/* ===== FEATURE LIST (for service pages) ===== */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
    padding: 6px 0;
    color: #ccccdd;
    font-size: 13px;
    line-height: 1.6;
    border-bottom: 1px dashed #222255;
}
.feature-list li::before { content: '>> '; color: var(--neon-green); }

/* ===== TECH BADGES ===== */
.tech-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 10px 0; }
.tech-badge {
    background: #111144;
    border: 2px ridge #666699;
    padding: 6px 14px;
    color: var(--cyan);
    font-size: 12px;
    text-align: center;
}
.tech-badge:hover { background: #222266; color: var(--yellow); }

/* ===== ESTIMATE BANNER ===== */
.estimate-banner {
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, var(--core-red), #cc0000);
    border: 3px ridge #ff4444;
    margin: 14px 0;
}
.estimate-banner h3 { color: var(--yellow); font-size: 18px; text-shadow: 2px 2px 0 #000; margin-bottom: 8px; }
.estimate-banner p { color: #ffcccc; font-size: 12px; margin-bottom: 10px; }

/* ===== HOT LINKS ===== */
.hot-links { list-style: none; padding: 0; }
.hot-links li { padding: 4px 0; }
.hot-links li::before { content: '>> '; color: var(--neon-green); }
.hot-links a { color: var(--link-blue); text-decoration: underline; font-size: 13px; }
.hot-links a:hover { color: var(--yellow); background: var(--blue); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 14px; }
::-webkit-scrollbar-track { background: #0a0a2e; }
::-webkit-scrollbar-thumb { background: #666699; border: 2px ridge #8888aa; }

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
    .container { padding: 4px; }
    .services-table td { display: block; width: 100%; }
    .site-title, .page-header h1 { font-size: 18px; }
    .stats-row, .contact-grid { flex-direction: column; }
    .team-grid { gap: 8px; }
    .team-member { width: 100px; }
}
