/* ===== MIKE DAUBER'S DISCOUNT DEPOT — 2000s WEB REVIVAL ===== */

/* TILED BACKGROUND */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=VT323&family=Press+Start+2P&display=swap');

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

body {
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    background-color: #FFFF00;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 19px, #FFE500 19px, #FFE500 20px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, #FFE500 19px, #FFE500 20px);
    color: #000;
    overflow-x: hidden;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text y='28' font-size='28'>💰</text></svg>") 4 4, auto;
}

/* ===== CURSOR TRAIL ===== */
#cursor-trail {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 99999;
}

/* ===== BLINK ANIMATION ===== */
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
.blink { animation: blink 0.8s infinite; }

/* ===== TOP BAR ===== */
.topbar {
    background: #FF0000;
    color: #FFFF00;
    text-align: center;
    padding: 8px 16px;
    font-family: 'VT323', monospace;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 3px dashed #FFFF00;
}
.topbar__blink { animation: blink 0.5s infinite; }

/* ===== MARQUEE BANNERS ===== */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-family: 'VT323', monospace;
    font-size: 18px;
    font-weight: bold;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
}
.marquee--red { background: #FF0000; color: #FFFF00; }
.marquee--green { background: #00FF00; color: #000; }

.marquee__inner {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}
.marquee__inner--reverse {
    animation: scroll-right 25s linear infinite;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0000FF 0%, #FF00FF 40%, #00FFFF 70%, #FF0000 100%);
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid #FFFF00;
}
.hero__stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__content { position: relative; z-index: 2; }

.hero__badge {
    display: inline-block;
    background: #FFFF00;
    color: #000;
    padding: 4px 20px;
    font-family: 'VT323', monospace;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    border: 2px solid #000;
}

.hero__title { margin-bottom: 20px; }
.hero__title-line { display: block; }
.hero__title-line--small {
    font-size: clamp(24px, 4vw, 48px);
    color: #FFFF00;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000;
    letter-spacing: 4px;
}
.hero__title-line--big {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(28px, 5vw, 64px);
    color: #FFFFFF;
    text-shadow: 4px 4px 0 #FF0000, 8px 8px 0 #000;
    letter-spacing: 2px;
    line-height: 1.4;
}

.hero__tagline {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-shadow: 2px 2px 0 #000;
}
.hero__tagline-em {
    color: #00FF00;
    font-size: 24px;
    font-weight: bold;
}

.hero__services {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: #FFFF00;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-shadow: 1px 1px 0 #000;
}

.hero__photo {
    width: 150px;
    height: 150px;
    border: 5px solid #FFFF00;
    border-radius: 0;
    object-fit: cover;
    image-rendering: pixelated;
    box-shadow: 5px 5px 0 #000;
}

.hero__photo-label {
    background: #FF0000;
    color: #FFF;
    display: inline-block;
    padding: 4px 16px;
    font-family: 'VT323', monospace;
    font-size: 16px;
    letter-spacing: 3px;
    margin-top: 8px;
    border: 2px solid #FFFF00;
    animation: blink 1.2s infinite;
}

/* ===== SECTIONS SHARED ===== */
section { padding: 48px 40px; }

.section-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 42px);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.section-title--fire { color: #FF0000; text-shadow: 2px 2px 0 #FF6600; }
.section-title--sparkle { color: #FFFF00; text-shadow: 2px 2px 0 #000; }
.section-title--glow { color: #FFFF00; text-shadow: 0 0 10px #FFFF00, 0 0 20px #FF0000; }
.section-title--money { color: #FF0000; text-shadow: 2px 2px 0 #000; }
.section-title--star { color: #000080; text-shadow: 1px 1px 0 #FFFF00; }
.section-title--debate { color: #FF6600; text-shadow: 2px 2px 0 #000; }
.section-title--resume { color: #FF0000; }

.section-subtitle {
    text-align: center;
    color: #333;
    font-size: 16px;
    margin-bottom: 32px;
}

/* ===== DEALS ===== */
.deals {
    background: #FFFFFF;
    border-top: 5px dashed #FF0000;
    border-bottom: 5px dashed #FF0000;
}
.deals__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.deal-card {
    border: 3px solid #000;
    padding: 16px;
    text-align: center;
    position: relative;
    transition: transform 0.2s;
}
.deal-card:hover { transform: scale(1.05) rotate(1deg); }

.deal-card--yellow { background: #FFFFCC; border-color: #FF0000; }
.deal-card--green { background: #CCFFCC; border-color: #00AA00; }
.deal-card--pink { background: #FFCCFF; border-color: #FF00FF; }
.deal-card--blue { background: #CCCCFF; border-color: #0000FF; }
.deal-card--orange { background: #FFE0CC; border-color: #FF6600; }
.deal-card--lime { background: #E0FFCC; border-color: #44AA00; }

.deal-card__badge {
    position: absolute;
    top: -12px;
    right: -8px;
    padding: 2px 10px;
    font-size: 12px;
    font-family: 'VT323', monospace;
    font-weight: bold;
    color: #FFF;
    letter-spacing: 1px;
    transform: rotate(8deg);
}
.deal-card__badge--new { background: #FF0000; }
.deal-card__badge--hot { background: #FF6600; }
.deal-card__badge--sale { background: #FF00FF; }
.deal-card__badge--wow { background: #0000FF; }

.deal-card__img { font-size: 48px; margin: 8px 0; }
.deal-card__title { font-size: 16px; font-weight: bold; margin-bottom: 8px; }
.deal-card__title small { font-size: 11px; color: #666; }
.deal-card__price { font-size: 20px; font-weight: bold; color: #FF0000; }
.deal-card__price s { color: #999; font-size: 16px; }
.deal-card__sale { color: #FF0000; }
.deal-card__savings { font-size: 13px; color: #006600; font-weight: bold; margin: 4px 0; }
.deal-card__mike { font-size: 12px; color: #666; font-style: italic; margin-top: 8px; }

/* ===== ABOUT ===== */
.about {
    background: #FF00FF;
    color: #FFF;
    border-top: 5px solid #FFFF00;
    border-bottom: 5px solid #FFFF00;
}

.about__row { display: flex; gap: 32px; margin-top: 24px; align-items: flex-start; }

.about__photo-wrap {
    flex-shrink: 0;
    text-align: center;
}
.about__photo {
    width: 200px;
    height: 200px;
    border: 5px solid #FFFF00;
    object-fit: cover;
    box-shadow: 5px 5px 0 #000;
}
.about__photo-banner {
    background: #FF0000;
    color: #FFF;
    font-family: 'VT323', monospace;
    font-size: 18px;
    padding: 4px 0;
    letter-spacing: 3px;
    margin-top: 8px;
    border: 2px solid #FFFF00;
}
.about__photo-stars { color: #FFFF00; font-size: 24px; margin-top: 4px; }

.about__text { flex: 1; }
.about__text p { margin-bottom: 12px; font-size: 16px; line-height: 1.5; }
.about__intro { font-size: 18px !important; }

.about__highlight {
    background: #FFFF00;
    color: #000;
    padding: 1px 6px;
    font-weight: bold;
}

.about__career {
    display: inline-block;
    font-family: 'VT323', monospace;
    font-size: 15px;
    color: #00FF00;
    background: #000;
    padding: 8px 12px;
    margin-top: 4px;
    border: 2px dashed #00FF00;
    line-height: 1.6;
}

.about__facts { margin-top: 16px; }
.about__fact {
    background: rgba(0,0,0,0.3);
    padding: 6px 12px;
    margin-bottom: 4px;
    border-left: 4px solid #FFFF00;
    font-size: 14px;
}
.about__fact small { color: #FFD0FF; font-size: 12px; }

/* ===== RAINBOW DIVIDER ===== */
.rainbow-divider {
    height: 12px;
    background: linear-gradient(90deg, #FF0000, #FF7F00, #FFFF00, #00FF00, #0000FF, #4B0082, #9400D3,
        #FF0000, #FF7F00, #FFFF00, #00FF00, #0000FF, #4B0082, #9400D3);
    background-size: 200% 100%;
    animation: rainbow-scroll 3s linear infinite;
}
@keyframes rainbow-scroll {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* ===== THE DAUBER METHOD ===== */
.method {
    background: #000080;
    color: #FFF;
    border-top: 5px solid #00FFFF;
    border-bottom: 5px solid #00FFFF;
}

.method__subtitle {
    text-align: center;
    color: #00FFFF;
    font-size: 16px;
    margin-bottom: 32px;
}

.method__rules { max-width: 800px; margin: 0 auto; }

.method__rule {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.08);
    padding: 16px;
    border: 2px solid #00FFFF;
    border-left: 8px solid #FFFF00;
}
.method__rule-num {
    font-family: 'Press Start 2P', monospace;
    font-size: 28px;
    color: #FFFF00;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}
.method__rule-content h3 {
    color: #FFFF00;
    font-size: 18px;
    margin-bottom: 4px;
}
.method__rule-content p {
    color: #00FF00;
    font-size: 15px;
    font-style: italic;
}

.method__quote {
    text-align: center;
    font-size: 22px;
    color: #FF00FF;
    margin-top: 32px;
    padding: 24px;
    border: 3px dashed #FF00FF;
    background: rgba(255,0,255,0.1);
    font-weight: bold;
}
.method__quote-attr {
    font-size: 14px;
    color: #FFFF00;
    font-weight: normal;
}

/* ===== DEAL TICKER ===== */
.ticker {
    overflow: hidden;
    white-space: nowrap;
    background: #000;
    padding: 12px 0;
    border-top: 3px solid #FF0000;
    border-bottom: 3px solid #FF0000;
}
.ticker__inner {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
}
.ticker__inner span {
    display: inline-block;
    color: #00FF00;
    font-family: 'VT323', monospace;
    font-size: 18px;
    padding: 0 40px;
}

/* ===== SAVINGS PORTFOLIO ===== */
.portfolio {
    background: #FFF;
    border-top: 5px dashed #00AA00;
    border-bottom: 5px dashed #00AA00;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.portfolio__card {
    padding: 20px;
    border: 3px solid #000;
    text-align: center;
    transition: transform 0.2s;
}
.portfolio__card:hover { transform: scale(1.04); }

.portfolio__card h3 { font-size: 22px; margin-bottom: 4px; }
.portfolio__card p { font-size: 14px; color: #555; margin-bottom: 8px; }

.portfolio__card--archera { background: #E8F5E9; border-color: #4CAF50; }
.portfolio__card--archera h3 { color: #2E7D32; }
.portfolio__card--temporal { background: #E3F2FD; border-color: #1E88E5; }
.portfolio__card--temporal h3 { color: #1565C0; }
.portfolio__card--chainguard { background: #FFF3E0; border-color: #FF9800; }
.portfolio__card--chainguard h3 { color: #E65100; }
.portfolio__card--gremlin { background: #FCE4EC; border-color: #E91E63; }
.portfolio__card--gremlin h3 { color: #AD1457; }
.portfolio__card--stackrox { background: #F3E5F5; border-color: #9C27B0; }
.portfolio__card--stackrox h3 { color: #6A1B9A; }
.portfolio__card--buddybuild { background: #E0F7FA; border-color: #00BCD4; }
.portfolio__card--buddybuild h3 { color: #00838F; }

.portfolio__verdict {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #ccc;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #00FFFF;
    border-top: 5px solid #000080;
    border-bottom: 5px solid #000080;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.testimonial {
    background: #FFF;
    border: 3px solid #000;
    padding: 20px;
    transition: transform 0.15s;
}
.testimonial:hover { transform: rotate(-1deg); }

.testimonial--red { border-color: #FF0000; }
.testimonial--blue { border-color: #0000FF; }
.testimonial--purple { border-color: #9400D3; }
.testimonial--orange { border-color: #FF6600; }

.testimonial__quote {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}
.testimonial__attr {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}
.testimonial__real {
    font-size: 13px;
    color: #FF0000;
    font-style: italic;
    font-weight: bold;
}

/* ===== MISSING ASSOCIATE ===== */
.missing {
    background: #FFF8DC;
    border-top: 8px solid #FF0000;
    border-bottom: 8px solid #FF0000;
    position: relative;
    overflow: hidden;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(255, 0, 0, 0.03) 20px,
            rgba(255, 0, 0, 0.03) 40px
        );
}

.section-title--missing {
    color: #CC0000;
    text-shadow: 2px 2px 0 #FF6600;
    animation: blink 1.5s infinite;
}

.missing__tape {
    position: absolute;
    top: 20px;
    background: #FFFF00;
    color: #FF0000;
    font-family: 'Press Start 2P', monospace;
    font-size: 11px;
    padding: 6px 40px;
    letter-spacing: 3px;
    font-weight: bold;
    border: 2px solid #FF0000;
    z-index: 2;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}
.missing__tape--left {
    left: -20px;
    transform: rotate(-8deg);
}
.missing__tape--right {
    right: -20px;
    transform: rotate(8deg);
}

.missing__poster {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    background: #FFFFFF;
    border: 4px solid #000;
    padding: 24px;
    box-shadow: 6px 6px 0 #000;
}

.missing__photo-wrap {
    flex-shrink: 0;
    text-align: center;
}

.missing__photo {
    width: 220px;
    height: 220px;
    border: 5px solid #CC0000;
    object-fit: cover;
    filter: contrast(1.1) saturate(0.9);
    box-shadow: 4px 4px 0 #000;
}

.missing__label {
    background: #CC0000;
    color: #FFF;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    padding: 6px 0;
    letter-spacing: 2px;
    margin-top: 8px;
    animation: blink 1s infinite;
    border: 2px solid #000;
}

.missing__details { flex: 1; }

.missing__name {
    font-family: 'Press Start 2P', monospace;
    font-size: 24px;
    color: #CC0000;
    margin-bottom: 4px;
    letter-spacing: 2px;
}

.missing__aka {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px dashed #CCC;
}

.missing__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 14px;
}
.missing__table td {
    padding: 6px 10px;
    border-bottom: 1px solid #EEE;
    vertical-align: top;
}
.missing__table td:first-child {
    font-family: 'VT323', monospace;
    font-size: 16px;
    font-weight: bold;
    color: #CC0000;
    white-space: nowrap;
    width: 120px;
}

.missing__status {
    background: #FF0000;
    color: #FFF;
    padding: 2px 12px;
    font-weight: bold;
    font-family: 'VT323', monospace;
    font-size: 18px;
    letter-spacing: 3px;
}

.missing__timeline-title {
    font-weight: bold;
    font-size: 16px;
    margin: 16px 0 8px;
    color: #333;
    border-bottom: 2px solid #CC0000;
    padding-bottom: 4px;
}

.missing__event {
    padding: 6px 10px;
    margin-bottom: 4px;
    background: #F9F9F9;
    border-left: 3px solid #CCC;
    font-size: 14px;
    line-height: 1.4;
}
.missing__event strong {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: #333;
}
.missing__event--red {
    background: #FFF0F0;
    border-left-color: #FF0000;
    font-weight: bold;
}
.missing__event--red strong { color: #CC0000; }

/* Help Wanted */
.missing__help-wanted {
    margin-top: 32px;
    background: #FFFFCC;
    border: 4px dashed #FF6600;
    padding: 24px;
    text-align: center;
}
.missing__help-wanted h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 16px;
    color: #FF6600;
    margin-bottom: 8px;
    animation: blink 2s infinite;
}
.missing__hw-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.missing__requirements {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 20px;
    background: #FFF;
    padding: 16px 16px 16px 24px;
    border: 2px solid #000;
}
.missing__requirements strong {
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: #CC0000;
    letter-spacing: 2px;
}
.missing__requirements ul {
    margin-top: 8px;
    padding-left: 20px;
}
.missing__requirements li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.missing__perks { margin-bottom: 20px; }
.missing__perks strong {
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: #333;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.missing__perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 700px;
    margin: 0 auto;
}
.missing__perk {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: bold;
    border: 2px solid #000;
}
.missing__perk--no {
    background: #FFCCCC;
    color: #990000;
    text-decoration: line-through;
}
.missing__perk--yes {
    background: #CCFFCC;
    color: #006600;
}

.missing__quote {
    font-size: 16px;
    font-style: italic;
    color: #555;
    padding: 16px 24px;
    border: 3px solid #CC0000;
    background: #FFF;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}
.missing__quote span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #CC0000;
    font-weight: bold;
    font-style: normal;
}

/* ===== DEBATE CORNER ===== */
.debate {
    background: #FFFFCC;
    border: 4px solid #FF6600;
    text-align: center;
}

.debate__subtitle { color: #333; font-size: 16px; margin-bottom: 24px; }

.debate__question {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 24px;
    padding: 16px;
    background: #FFF;
    border: 3px solid #000;
}

.debate__poll { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; }

.debate__btn {
    font-family: 'Comic Neue', cursive;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 32px;
    border: 3px solid #000;
    cursor: pointer;
    transition: transform 0.1s;
}
.debate__btn:hover { transform: scale(1.05); }
.debate__btn--yes { background: #00AA00; color: #FFF; }
.debate__btn--no { background: #CC0000; color: #FFF; }

.debate__past {
    font-size: 14px;
    color: #555;
    margin-top: 16px;
    padding: 16px;
    background: #FFF;
    border: 2px dashed #FF6600;
}

/* ===== CREDENTIALS ===== */
.credentials {
    background: #FFF;
    border-top: 5px solid #FF0000;
}

.credentials__timeline {
    max-width: 800px;
    margin: 24px auto 0;
    border-left: 4px solid #FF0000;
    padding-left: 24px;
}

.credentials__item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px;
    background: #FFFFF0;
    border: 2px solid #CCC;
    border-left: none;
    position: relative;
}
.credentials__item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #FF0000;
    border: 3px solid #FFF;
    border-radius: 50%;
}
.credentials__item--highlight {
    background: #FFFF00;
    border-color: #FF0000;
    font-weight: bold;
}

.credentials__year {
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: #FF0000;
    flex-shrink: 0;
    width: 80px;
    font-weight: bold;
}
.credentials__desc { font-size: 15px; color: #333; }

/* ===== POPUP ===== */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.popup.active { display: flex; }

.popup__inner {
    background: #FFFF00;
    border: 5px solid #FF0000;
    padding: 32px;
    max-width: 450px;
    text-align: center;
    box-shadow: 8px 8px 0 #000;
    position: relative;
}
.popup__close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.popup__title {
    color: #FF0000;
    font-size: 24px;
    margin-bottom: 12px;
}
.popup__small { font-size: 13px; color: #666; margin-bottom: 12px; }
.popup__input {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 3px solid #000;
    margin-bottom: 12px;
    font-family: 'Comic Neue', cursive;
}
.popup__btn {
    background: #FF0000;
    color: #FFF;
    border: 3px solid #000;
    padding: 12px 32px;
    font-size: 16px;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    cursor: pointer;
}
.popup__btn:hover { background: #CC0000; }
.popup__tiny { font-size: 10px; color: #999; margin-top: 8px; }

/* ===== FOOTER ===== */
.footer {
    background: #000;
    color: #00FF00;
    text-align: center;
    padding: 24px 40px;
    font-family: 'VT323', monospace;
    font-size: 14px;
    border-top: 5px solid #FF0000;
}
.footer > div { margin-bottom: 8px; }

.footer__counter { font-size: 16px; font-weight: bold; }

.footer__links a {
    color: #00FFFF;
    text-decoration: underline;
}
.footer__links a:hover { color: #FF00FF; }

.footer__ie { color: #666; font-size: 12px; }
.footer__vandelay { color: #FFFF00; font-weight: bold; }
.footer__copy { color: #555; font-size: 11px; }
.footer__seinfeld { color: #FF00FF; font-style: italic; margin-top: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .deals__grid,
    .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
    .about__row { flex-direction: column; align-items: center; }
    .about__text { text-align: center; }
    .missing__poster { flex-direction: column; align-items: center; }
    .missing__perks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .deals__grid,
    .portfolio__grid,
    .testimonials__grid { grid-template-columns: 1fr; }
    section { padding: 32px 20px; }
    .hero { padding: 40px 20px; }
    .debate__poll { flex-direction: column; align-items: center; }
    .missing__perks-grid { grid-template-columns: 1fr; }
}

/* ===== FALLING DOLLAR SIGNS ===== */
@keyframes fall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}
.falling-dollar {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    font-size: 20px;
    opacity: 0.5;
    animation: fall linear infinite;
    color: #00AA00;
}

/* ===== SPARKLE ON HOVER ===== */
@keyframes sparkle-pop {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}
.sparkle {
    position: absolute;
    pointer-events: none;
    font-size: 16px;
    animation: sparkle-pop 0.6s ease-out forwards;
}
