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

/* ===== ANIMATIONS ===== */
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes rainbow {
    0% { color: #FF69B4; }
    14% { color: #FF00FF; }
    28% { color: #9333EA; }
    42% { color: #00FFFF; }
    57% { color: #FFD700; }
    71% { color: #FF1493; }
    85% { color: #FF69B4; }
    100% { color: #FF69B4; }
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 10px #FF69B4, 0 0 20px #FF69B4, 0 0 30px #FF69B4; }
    50% { text-shadow: 0 0 20px #FF69B4, 0 0 40px #FF69B4, 0 0 60px #FF69B4, 0 0 80px #FF69B4; }
}

@keyframes fall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

@keyframes vis-bar {
    0%, 100% { height: 4px; }
    50% { height: 30px; }
}

@keyframes starfield {
    0% { background-position: 0 0, 50px 50px, 100px 25px; }
    100% { background-position: 200px 200px, 250px 250px, 300px 225px; }
}

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

body {
    font-family: 'Comic Neue', cursive, sans-serif;
    background-color: #0D001A;
    background-image:
        radial-gradient(1px 1px at 20px 30px, #FF69B4, transparent),
        radial-gradient(1px 1px at 40px 70px, #9333EA, transparent),
        radial-gradient(1px 1px at 90px 40px, #00FFFF, transparent),
        radial-gradient(1px 1px at 130px 80px, #FFD700, transparent),
        radial-gradient(1px 1px at 160px 20px, #FF1493, transparent),
        radial-gradient(1px 1px at 60px 100px, #FF69B4, transparent),
        radial-gradient(1px 1px at 110px 60px, #FF00FF, transparent),
        radial-gradient(1.5px 1.5px at 180px 110px, #FF69B4, transparent),
        radial-gradient(1.5px 1.5px at 10px 90px, #00FFFF, transparent);
    background-size: 200px 120px;
    animation: starfield 20s linear infinite;
    color: #FFD4E8;
    cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24'><text y='20' font-size='20'>💖</text></svg>") 12 12, auto;
    overflow-x: hidden;
    line-height: 1.5;
}

.blink { animation: blink 1s infinite; }

.highlight {
    color: #FFD700;
    font-weight: bold;
    text-shadow: 0 0 8px #FFD700;
}

section {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px;
}

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

/* ===== FALLING HEARTS ===== */
#falling-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.falling-heart {
    position: absolute;
    top: -30px;
    font-size: 18px;
    animation: fall linear infinite;
    opacity: 0;
}

/* ===== CONSTRUCTION BAR ===== */
.construction {
    background: repeating-linear-gradient(
        -45deg,
        #FFD700,
        #FFD700 10px,
        #000 10px,
        #000 20px
    );
    color: #000;
    text-align: center;
    padding: 6px 12px;
    font-family: 'VT323', monospace;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* ===== WELCOME BANNER ===== */
.welcome {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #1A0033 0%, #330033 50%, #1A0033 100%);
    border-top: 4px solid #FF69B4;
    border-bottom: 4px solid #FF69B4;
}
.welcome__sparkle {
    font-size: 24px;
    letter-spacing: 12px;
    animation: sparkle 1.5s ease-in-out infinite;
    color: #FFD700;
}
.welcome__title {
    font-family: 'Comic Neue', cursive;
    font-size: clamp(24px, 5vw, 48px);
    color: #FF69B4;
    animation: glow-pulse 2s ease-in-out infinite;
    margin: 12px 0;
    line-height: 1.2;
}
.welcome__sub {
    font-size: 18px;
    color: #FF00FF;
    font-weight: bold;
    letter-spacing: 2px;
}
.welcome__update {
    font-size: 14px;
    color: #C084FC;
    margin-top: 12px;
}
.welcome__update small { color: #A78BFA; font-style: italic; }
.welcome__maintain {
    font-size: 13px;
    color: #9CA3AF;
    margin-top: 8px;
}
.welcome__maintain small { color: #FF6B6B; }

/* ===== MARQUEE ===== */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-family: 'VT323', monospace;
    font-size: 18px;
    letter-spacing: 1px;
}
.marquee--pink {
    background: #FF1493;
    color: #FFF;
    border-top: 3px solid #FF69B4;
    border-bottom: 3px solid #FF69B4;
}
.marquee--purple {
    background: #6B21A8;
    color: #FFD4E8;
    border-top: 3px solid #9333EA;
    border-bottom: 3px solid #9333EA;
}
.marquee__inner {
    display: inline-block;
    animation: scroll-left 25s linear infinite;
}
.marquee__inner--reverse {
    animation: scroll-right 30s linear infinite;
}

/* ===== FAKE MEDIA PLAYER ===== */
.player {
    max-width: 500px;
    margin: 20px auto;
    border: 2px solid #444;
    border-radius: 4px;
    overflow: hidden;
    font-family: 'VT323', monospace;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
}
.player__titlebar {
    background: linear-gradient(180deg, #3A3A6A, #1A1A3A);
    color: #CCC;
    padding: 4px 8px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.player__buttons { letter-spacing: 4px; cursor: pointer; }
.player__body {
    background: #0A0A1A;
    padding: 12px;
}
.player__vis {
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 8px;
    justify-content: center;
}
.player__vis-bar {
    width: 4px;
    background: linear-gradient(0deg, #FF69B4, #FF00FF, #9333EA);
    border-radius: 2px 2px 0 0;
    animation: vis-bar 0.8s ease-in-out infinite;
}
.player__info { text-align: center; margin-bottom: 8px; }
.player__song {
    font-size: 20px;
    color: #FF69B4;
    font-weight: bold;
}
.player__artist {
    font-size: 14px;
    color: #9CA3AF;
}
.player__controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}
.player__btn {
    font-size: 20px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
}
.player__btn:hover { color: #FF69B4; }
.player__btn--play { color: #FF69B4; font-size: 24px; }
.player__progress { margin-bottom: 4px; }
.player__bar {
    height: 6px;
    background: #222;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}
.player__bar-fill {
    height: 100%;
    width: 73%;
    background: linear-gradient(90deg, #FF69B4, #FF00FF);
    border-radius: 3px;
    transition: width 0.5s;
}
.player__time {
    text-align: center;
    font-size: 14px;
    color: #666;
}
.player__volume {
    text-align: center;
    font-size: 12px;
    color: #FF69B4;
    letter-spacing: 1px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    font-family: 'Comic Neue', cursive;
    font-size: clamp(20px, 4vw, 32px);
    margin-bottom: 20px;
    animation: rainbow 4s linear infinite;
    text-shadow: 0 0 10px currentColor;
}

/* ===== ABOUT THE WEBMASTER ===== */
.about {
    background: linear-gradient(135deg, #1A0033, #330033, #1A0033);
    border: 3px solid #FF69B4;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.2);
}
.about__row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.about__photo-wrap { text-align: center; flex-shrink: 0; }
.about__photo {
    width: 200px;
    height: auto;
    border: 4px solid #FF69B4;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}
.about__label {
    background: #FF1493;
    color: #FFF;
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    padding: 6px;
    letter-spacing: 3px;
    margin-top: 4px;
    animation: blink 1.5s infinite;
}
.about__hearts {
    margin-top: 4px;
    font-size: 16px;
    letter-spacing: 4px;
}
.about__text { font-size: 15px; line-height: 1.6; }
.about__text p { margin-bottom: 12px; }
.about__facts {
    list-style: none;
    padding: 0;
}
.about__facts li {
    padding: 8px 0;
    border-bottom: 1px dashed #FF69B480;
    font-size: 14px;
    line-height: 1.5;
}

/* ===== BUBLÉ JOURNEY ===== */
.journey {
    background: linear-gradient(180deg, #0D001A, #1A0033, #0D001A);
    border-left: 4px solid #9333EA;
    border-right: 4px solid #9333EA;
}
.journey__intro {
    text-align: center;
    font-size: 15px;
    color: #C084FC;
    margin-bottom: 24px;
    font-style: italic;
}
.journey__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.journey__item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-left: 3px solid #9333EA;
    position: relative;
}
.journey__item::before {
    content: '♥';
    position: absolute;
    left: -10px;
    top: 16px;
    color: #FF69B4;
    font-size: 16px;
}
.journey__item--special {
    background: rgba(255, 105, 180, 0.08);
    border-left-color: #FF69B4;
}
.journey__item--key {
    background: rgba(255, 215, 0, 0.06);
    border-left-color: #FFD700;
}
.journey__item--key::before { color: #FFD700; content: '★'; }
.journey__year {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: #FFD700;
    min-width: 60px;
    padding-top: 2px;
}
.journey__album {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: #FF69B4;
    min-width: 200px;
}
.journey__event {
    font-size: 14px;
    color: #D4B4FF;
    line-height: 1.5;
}

/* ===== SPARKLE DIVIDER ===== */
.divider {
    text-align: center;
    font-size: 20px;
    letter-spacing: 8px;
    padding: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

/* ===== CONNECTION TRACKER ===== */
.tracker {
    background: linear-gradient(135deg, #001A1A, #0D001A, #001A1A);
    border: 3px solid #00FFFF;
}
.tracker__intro {
    text-align: center;
    font-size: 15px;
    color: #67E8F9;
    margin-bottom: 24px;
    font-style: italic;
}
.tracker__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 16px;
}
.tracker__card {
    border: 2px solid #00FFFF;
    padding: 16px;
    background: rgba(0, 255, 255, 0.03);
}
.tracker__card--double { border-color: #FFD700; background: rgba(255, 215, 0, 0.03); }
.tracker__card--triple {
    border-color: #FF69B4;
    background: rgba(255, 105, 180, 0.05);
    grid-column: 1 / -1;
    border-width: 3px;
}
.tracker__deal {
    font-weight: bold;
    font-size: 15px;
    color: #FFF;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #00FFFF40;
}
.tracker__connection {
    font-size: 14px;
    color: #A7F3D0;
    margin-bottom: 8px;
    line-height: 1.4;
}
.tracker__status {
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: #00FF00;
    letter-spacing: 2px;
}
.tracker__card--double .tracker__status { color: #FFD700; }
.tracker__card--triple .tracker__status { color: #FF69B4; font-size: 22px; }

.tracker__total {
    text-align: center;
    margin-top: 20px;
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: #00FFFF;
    letter-spacing: 2px;
    border: 2px dashed #00FFFF;
    padding: 12px;
}

/* ===== FAN FICTION ===== */
.fanfic {
    background: linear-gradient(180deg, #1A0033, #260033, #1A0033);
    border: 3px solid #FF00FF;
}
.fanfic__warning {
    text-align: center;
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: #FF6B6B;
    margin-bottom: 20px;
    animation: blink 2s infinite;
}
.fanfic__story {
    background: rgba(255, 0, 255, 0.04);
    border: 1px solid #FF00FF40;
    padding: 20px;
    margin-bottom: 16px;
}
.fanfic__story--alt {
    border-color: #FFD70040;
    background: rgba(255, 215, 0, 0.04);
}
.fanfic__chapter {
    font-family: 'VT323', monospace;
    font-size: 20px;
    color: #FF00FF;
    margin-bottom: 12px;
    border-bottom: 1px dashed #FF00FF40;
    padding-bottom: 8px;
}
.fanfic__story--alt .fanfic__chapter { color: #FFD700; }
.fanfic__text {
    font-size: 15px;
    line-height: 1.7;
    color: #E9D5FF;
}
.fanfic__text p { margin-bottom: 10px; }
.fanfic__text em { color: #FF69B4; font-style: italic; }
.fanfic__tbc {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: #9CA3AF;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #9CA3AF40;
}

/* ===== READING LIST ===== */
.reading {
    background: linear-gradient(135deg, #1A0A00, #1A1A00, #1A0A00);
    border: 3px solid #A3E635;
}
.reading__intro {
    text-align: center;
    font-size: 15px;
    color: #BEF264;
    margin-bottom: 24px;
    font-style: italic;
}
.reading__current {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    background: rgba(163, 230, 53, 0.04);
    border: 2px solid #A3E63540;
    padding: 20px;
}
.reading__book-wrap { flex-shrink: 0; text-align: center; }
.reading__cover {
    width: 180px;
    height: auto;
    border: 3px solid #A3E635;
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.3);
}
.reading__details { flex: 1; }
.reading__now {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: #A3E635;
    animation: blink 2s infinite;
    margin-bottom: 4px;
}
.reading__title {
    font-family: 'Comic Neue', cursive;
    font-size: 28px;
    color: #FFF;
    margin-bottom: 4px;
}
.reading__author {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 12px;
}
.reading__match {
    color: #FF69B4;
    font-weight: bold;
    text-shadow: 0 0 6px #FF69B4;
    text-transform: uppercase;
}
.reading__analysis {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: #D4B4FF;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(255, 105, 180, 0.06);
    border: 1px dashed #FF69B440;
    line-height: 1.6;
}
.reading__review {
    font-size: 14px;
    color: #BEF264;
    font-style: italic;
    line-height: 1.5;
}
.reading__history {
    margin-bottom: 16px;
}
.reading__history strong {
    display: block;
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: #A3E635;
    margin-bottom: 12px;
}
.reading__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.reading__past {
    display: grid;
    grid-template-columns: 250px 120px 1fr;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(163, 230, 53, 0.03);
    border: 1px solid #A3E63520;
    align-items: center;
    font-size: 14px;
}
.reading__past-title {
    color: #FFF;
    font-weight: bold;
}
.reading__past-score {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: #A3E635;
    text-align: center;
}
.reading__past-note {
    color: #BEF264;
    font-style: italic;
    font-size: 13px;
}
.reading__note {
    font-size: 13px;
    color: #9CA3AF;
    text-align: center;
    padding: 12px;
    border: 1px dashed #9CA3AF40;
}

/* ===== CHRISTMAS PARTY ===== */
.xmas {
    background: linear-gradient(135deg, #1A0000, #0D1A00, #1A0000);
    border: 3px solid #EF4444;
    position: relative;
    overflow: hidden;
}
.xmas::before {
    content: '🎄 🎅 ❄️ 🎁 🎄 🎅 ❄️ 🎁 🎄 🎅 ❄️ 🎁 🎄 🎅 ❄️ 🎁';
    display: block;
    text-align: center;
    font-size: 16px;
    letter-spacing: 6px;
    padding: 8px;
    background: #1A0000;
    border-bottom: 2px solid #EF444440;
}
.xmas__intro {
    text-align: center;
    font-size: 15px;
    color: #FCA5A5;
    margin-bottom: 24px;
    font-style: italic;
}
.xmas__content {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}
.xmas__cutout-wrap {
    flex-shrink: 0;
    text-align: center;
}
.xmas__cutout {
    width: 180px;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border: 3px solid #EF4444;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
    background: #FFF;
}
.xmas__cutout-label {
    background: #EF4444;
    color: #FFF;
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    padding: 8px 4px;
    letter-spacing: 2px;
    margin-top: 4px;
    line-height: 1.5;
}
.xmas__cutout-label small {
    font-family: 'VT323', monospace;
    font-size: 12px;
    letter-spacing: 0;
}
.xmas__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.xmas__fact {
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid #EF444430;
    font-size: 14px;
    color: #FDE68A;
    line-height: 1.5;
}
.xmas__fact strong {
    color: #FCA5A5;
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}
.xmas__testimonial {
    display: flex;
    gap: 20px;
    align-items: center;
    border: 2px solid #EF4444;
    background: rgba(239, 68, 68, 0.04);
    padding: 16px 24px;
}
.xmas__witness-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #EF4444;
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}
.xmas__quote {
    font-size: 15px;
    font-style: italic;
    color: #FCA5A5;
    line-height: 1.5;
}
.xmas__quote span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #9CA3AF;
    font-style: normal;
}

/* ===== GUESTBOOK ===== */
.guestbook {
    background: linear-gradient(135deg, #1A0A00, #1A0033, #1A0A00);
    border: 3px solid #FFD700;
}
.guestbook__intro {
    text-align: center;
    font-size: 15px;
    color: #FFD700;
    margin-bottom: 20px;
}
.guestbook__entries {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.guestbook__entry {
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid #FFD70030;
    padding: 12px 16px;
}
.guestbook__meta {
    font-family: 'VT323', monospace;
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 6px;
}
.guestbook__msg {
    font-size: 14px;
    color: #FDE68A;
    line-height: 1.5;
    font-style: italic;
}
.guestbook__msg em { font-style: normal; color: #FF6B6B; font-size: 12px; }

.guestbook__form {
    text-align: center;
    border: 2px dashed #FFD700;
    padding: 16px;
}
.guestbook__form p {
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 8px;
}
.guestbook__input {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 6px auto;
    padding: 8px 12px;
    background: #1A1A2E;
    border: 1px solid #FFD700;
    color: #FFD700;
    font-family: 'Comic Neue', cursive;
    font-size: 14px;
}
.guestbook__btn {
    margin-top: 8px;
    padding: 8px 24px;
    background: #FFD700;
    color: #000;
    border: none;
    font-family: 'Comic Neue', cursive;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
.guestbook__btn:hover { background: #FF69B4; color: #FFF; }

/* ===== EVIDENCE WALL ===== */
.evidence {
    background: linear-gradient(180deg, #0D001A, #001A0D, #0D001A);
    border: 3px solid #22D3EE;
}
.evidence__intro {
    text-align: center;
    font-size: 15px;
    color: #67E8F9;
    margin-bottom: 24px;
}
.evidence__map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.evidence__pin {
    border: 2px solid #22D3EE;
    padding: 16px;
    text-align: center;
    min-width: 150px;
    background: rgba(34, 211, 238, 0.04);
}
.evidence__pin--sf {
    border-color: #FF69B4;
    background: rgba(255, 105, 180, 0.08);
    border-width: 3px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}
.evidence__city {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: #FFF;
    margin-bottom: 6px;
}
.evidence__dist {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: #22D3EE;
    margin-bottom: 4px;
}
.evidence__pin--sf .evidence__dist { color: #FF69B4; }
.evidence__years {
    font-size: 12px;
    color: #9CA3AF;
    margin-bottom: 4px;
}
.evidence__note {
    font-size: 12px;
    color: #FDE68A;
    font-style: italic;
}
.evidence__arrow {
    font-size: 28px;
    color: #FFD700;
    font-weight: bold;
}
.evidence__next {
    text-align: center;
    font-size: 14px;
    color: #9CA3AF;
    border: 2px dashed #FF6B6B;
    padding: 12px;
}
.evidence__next strong { color: #FF6B6B; }
.evidence__next em { color: #FFD700; }

/* ===== LINKS & WEBRING ===== */
.links {
    background: linear-gradient(135deg, #1A0033, #0D001A, #1A0033);
    border: 3px solid #9333EA;
}
.links__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.links__group h3 {
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: #C084FC;
    margin-bottom: 8px;
    border-bottom: 1px solid #9333EA40;
    padding-bottom: 4px;
}
.links__group a {
    display: block;
    color: #FF69B4;
    text-decoration: underline;
    font-size: 13px;
    padding: 4px 0;
    cursor: pointer;
}
.links__group a:hover { color: #FFD700; }

.links__webring {
    text-align: center;
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: #FF69B4;
    border: 2px double #9333EA;
    padding: 12px;
    margin-top: 8px;
}
.links__webring small { color: #9CA3AF; font-size: 12px; }

/* ===== POPUP ===== */
.popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup__inner {
    background: linear-gradient(135deg, #330033, #1A0033);
    border: 4px solid #FF69B4;
    padding: 32px;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.5);
}
.popup__close {
    position: absolute;
    top: 8px; right: 12px;
    background: none;
    border: none;
    color: #FF69B4;
    font-size: 24px;
    cursor: pointer;
}
.popup__title {
    font-family: 'Comic Neue', cursive;
    font-size: 24px;
    color: #FF69B4;
    margin-bottom: 8px;
    animation: glow-pulse 2s infinite;
}
.popup__inner p {
    font-size: 15px;
    color: #FFD4E8;
    margin-bottom: 8px;
}
.popup__small { font-size: 12px; color: #9CA3AF; }
.popup__input {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    background: #1A1A2E;
    border: 1px solid #FF69B4;
    color: #FF69B4;
    font-family: 'Comic Neue', cursive;
}
.popup__btn {
    padding: 10px 24px;
    background: #FF69B4;
    color: #FFF;
    border: none;
    font-family: 'Comic Neue', cursive;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 4px;
}
.popup__btn:hover { background: #FF1493; }
.popup__tiny {
    font-size: 10px;
    color: #6B7280;
    margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 32px 20px;
    background: #0A0A0A;
    border-top: 4px solid #FF69B4;
    font-size: 13px;
    color: #9CA3AF;
}
.footer > div { margin-bottom: 12px; }
.footer__counter {
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: #FF69B4;
}
.footer__counter small { font-size: 13px; color: #9CA3AF; }
.footer__links a {
    color: #FF69B4;
    text-decoration: underline;
}
.footer__links a:hover { color: #FFD700; }
.footer__browser {
    font-family: 'VT323', monospace;
    font-size: 14px;
    color: #666;
}
.footer__legal { font-size: 11px; color: #555; line-height: 1.6; }
.footer__copy { font-size: 12px; color: #666; }
.footer__quote {
    font-style: italic;
    color: #FF69B4;
    font-size: 14px;
    margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about__row { flex-direction: column; align-items: center; }
    .about__text { text-align: center; }
    .journey__item { flex-direction: column; gap: 4px; }
    .journey__album { min-width: 0; }
    .tracker__grid { grid-template-columns: 1fr; }
    .tracker__card--triple { grid-column: auto; }
    .reading__current { flex-direction: column; align-items: center; }
    .reading__details { text-align: center; }
    .reading__past { grid-template-columns: 1fr; text-align: center; }
    .xmas__content { flex-direction: column; align-items: center; }
    .xmas__testimonial { flex-direction: column; text-align: center; }
    .evidence__map { flex-direction: column; }
    .evidence__arrow { transform: rotate(90deg); }
    .links__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    section { padding: 20px 12px; }
    .welcome__title { font-size: 22px; }
    .about__photo { width: 150px; }
}
