/* ============================================
   HAPPY BIRTHDAY STHEPHANNY - STYLE SHEET
   Pink Miniature World Theme
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    color: #5c374c;
    background: linear-gradient(160deg, #fff5f9 0%, #ffe4ef 40%, #ffd6e7 70%, #ffc8db 100%);
    position: relative;
}

/* Subtle dot pattern overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle, rgba(255,105,180,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

/* --- Confetti Canvas --- */
#confetti-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* --- Floating Hearts --- */
#floating-hearts {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    bottom: -30px;
    color: #ffb6c1;
    animation: floatUp linear forwards;
    pointer-events: none;
    user-select: none;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-110vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

/* --- Page System --- */
.page {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 10;
    padding: 30px;
    overflow-y: auto;
}

.page.active {
    opacity: 1;
    visibility: visible;
}

/* --- Frame (Main Content Card) --- */
.frame {
    background: rgba(255, 255, 255, 0.93);
    border-radius: 24px;
    border: 3px solid #f8bbd0;
    box-shadow:
        0 8px 40px rgba(255, 105, 180, 0.15),
        inset 0 0 0 5px rgba(255, 182, 193, 0.2);
    padding: 48px 56px;
    max-width: 780px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: frameIn 0.5s ease-out;
}

@keyframes frameIn {
    from { transform: scale(0.95) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

/* Scalloped top decoration */
.frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        #f8bbd0 8px,
        #f8bbd0 12px,
        transparent 12px,
        transparent 20px
    );
    border-radius: 2px;
}

/* --- Miniature Houses (Welcome Page) --- */
.mini-houses {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.mini-house {
    width: 36px;
    height: 36px;
    position: relative;
}

.mini-house::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 4px;
    width: 28px;
    height: 22px;
    background: #ffcdd2;
    border-radius: 3px;
}

.mini-house::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 14px solid #f48fb1;
}

.mini-house.h2::before { background: #f8bbd0; }
.mini-house.h2::after { border-bottom-color: #ec407a; }
.mini-house.h3::before { background: #f48fb1; height: 18px; }
.mini-house.h3::after { border-bottom-color: #e91e63; top: 6px; }

/* --- Typography --- */
.title-main {
    font-family: 'Pacifico', cursive;
    font-size: 3.2rem;
    color: #e91e63;
    margin-bottom: 4px;
    text-shadow: 2px 2px 4px rgba(233, 30, 99, 0.15);
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.title-name {
    font-family: 'Pacifico', cursive;
    font-size: 3.8rem;
    background: linear-gradient(135deg, #e91e63, #ff6090, #e91e63);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    margin-bottom: 16px;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.cake-icon {
    font-size: 4rem;
    margin: 16px 0;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.subtitle {
    font-size: 1.25rem;
    color: #8e4a65;
    margin-bottom: 28px;
    font-weight: 600;
}

.date-text {
    font-size: 0.9rem;
    color: #c48b9f;
    margin-top: 20px;
    font-style: italic;
}

/* --- Buttons --- */
.btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ec407a, #e91e63);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #f06292, #ec407a);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: #e91e63;
    border: 2px solid #f48fb1;
    box-shadow: 0 2px 10px rgba(244, 143, 177, 0.2);
}

.btn-secondary:hover {
    background: #fce4ec;
}

.btn-sparkle::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%
    );
    animation: sparkleMove 3s ease-in-out infinite;
}

@keyframes sparkleMove {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.hidden {
    display: none !important;
}

/* --- Hint Button & Warning --- */
.btn-hint {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    border: 2px solid #ffcc80;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.btn-hint:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.2);
    background: linear-gradient(135deg, #ffe0b2, #ffcc80);
}

.btn-hint:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.hint-warning {
    font-size: 0.95rem;
    color: #e91e63;
    font-weight: 700;
    margin: 8px 0;
    animation: frameIn 0.3s ease;
}

.photo-hint-preview {
    width: 180px;
    margin: 8px auto;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #f8bbd0;
    box-shadow: 0 2px 12px rgba(233, 30, 99, 0.2);
    animation: frameIn 0.3s ease;
}

.photo-hint-img {
    width: 100%;
    display: block;
}

/* --- Challenge Pages --- */
.challenge-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ec407a, #e91e63);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

.challenge-title {
    font-family: 'Pacifico', cursive;
    font-size: 2.2rem;
    color: #e91e63;
    margin-bottom: 8px;
}

.challenge-desc {
    font-size: 1.1rem;
    color: #8e4a65;
    margin-bottom: 4px;
}

.challenge-hint-text {
    font-size: 0.85rem;
    color: #c48b9f;
    margin-bottom: 20px;
    font-style: italic;
}

/* --- Flag Reference --- */
.flag-reference {
    width: 120px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.ref-stripe {
    flex: 1;
}

.ref-half {
    flex: 2;
}

.ref-quarter {
    flex: 1;
}

/* --- Puzzle Grid --- */
.puzzle-grid {
    display: inline-grid;
    gap: 3px;
    margin: 20px auto;
    padding: 8px;
    background: rgba(244, 143, 177, 0.15);
    border-radius: 12px;
    border: 2px dashed #f8bbd0;
}

.puzzle-block {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 3px solid transparent;
    position: relative;
}

.puzzle-block:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.puzzle-block.selected {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4), 0 4px 12px rgba(0,0,0,0.2);
    transform: scale(1.08);
}

.puzzle-block.correct-flash {
    animation: correctPop 0.4s ease;
}

@keyframes correctPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Photo puzzle pieces */
.photo-grid {
    max-width: 560px;
}

.photo-piece {
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 3px solid transparent;
    background-image: url('images/couple.jpg');
}

.photo-piece:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.photo-piece.selected {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4), 0 4px 12px rgba(0,0,0,0.2);
    transform: scale(1.06);
}

.puzzle-hint {
    font-size: 0.95rem;
    color: #e91e63;
    margin-top: 12px;
    min-height: 1.4em;
    font-weight: 600;
}

/* --- Envelope --- */
.envelope-container {
    margin: 30px auto;
    cursor: pointer;
    width: 220px;
    height: 160px;
    perspective: 800px;
}

.envelope {
    width: 220px;
    height: 160px;
    position: relative;
    transition: transform 0.3s ease;
}

.envelope:hover {
    transform: scale(1.03);
}

.envelope-back {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #f8bbd0, #f48fb1);
    border-radius: 8px;
    z-index: 1;
}

.envelope-front {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, #fce4ec, #f8bbd0);
    border-radius: 0 0 8px 8px;
    z-index: 3;
    clip-path: polygon(0 40%, 50% 0, 100% 40%, 100% 100%, 0 100%);
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(180deg, #f48fb1, #f8bbd0);
    z-index: 4;
    clip-path: polygon(0 0, 50% 70%, 100% 0);
    transform-origin: top center;
    transition: transform 0.6s ease;
}

.envelope-flap.open {
    transform: rotateX(180deg);
    z-index: 0;
}

.heart-seal {
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 5;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.heart-seal.hidden-seal {
    opacity: 0;
}

.envelope-letter {
    position: absolute;
    top: 20px;
    left: 15px;
    right: 15px;
    height: 120px;
    background: white;
    border-radius: 6px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform 0.6s ease 0.3s;
}

.envelope-letter.revealed {
    transform: translateY(-80px);
    z-index: 6;
}

.gift-label {
    font-size: 0.85rem;
    color: #c48b9f;
    margin-bottom: 4px;
}

.gift-value {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: #e91e63;
}

.gift-emoji {
    font-size: 1.5rem;
    margin-top: 4px;
}

.envelope-hint {
    font-size: 0.9rem;
    color: #c48b9f;
    font-style: italic;
    margin-top: 8px;
    transition: opacity 0.3s ease;
}

/* --- Reward Pages --- */
.reward-frame {
    padding-top: 40px;
}

.reward-title {
    font-family: 'Pacifico', cursive;
    font-size: 2.8rem;
    color: #e91e63;
    margin-bottom: 8px;
    animation: rewardBounce 0.6s ease-out;
}

@keyframes rewardBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.reward-subtitle {
    font-size: 1.1rem;
    color: #8e4a65;
    margin-bottom: 16px;
}

/* --- Photo Reveal --- */
.completed-photo {
    margin: 16px auto;
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.2);
    border: 3px solid #f8bbd0;
}

.photo-reveal {
    width: 100%;
    display: block;
}

/* --- Love Letter --- */
.letter-frame {
    max-width: 680px;
    padding: 40px 48px;
}

.letter-paper {
    background: linear-gradient(180deg, #fffaf0, #fff5ee);
    border-radius: 12px;
    padding: 36px 40px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #ffe0cc;
    text-align: left;
    line-height: 1.9;
}

.letter-paper::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px dashed rgba(233, 30, 99, 0.15);
    border-radius: 8px;
    pointer-events: none;
}

.letter-greeting {
    font-family: 'Pacifico', cursive;
    font-size: 1.6rem;
    color: #e91e63;
    margin-bottom: 16px;
}

.letter-paper p {
    font-size: 1.05rem;
    color: #5c374c;
    margin-bottom: 14px;
}

.letter-signature {
    font-family: 'Pacifico', cursive;
    font-size: 1.2rem;
    color: #e91e63;
    margin-top: 20px;
    text-align: right;
}

.letter-question {
    text-align: center;
}

.letter-ask {
    font-size: 1.2rem;
    color: #5c374c;
    font-weight: 700;
    margin-bottom: 16px;
}

.letter-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    position: relative;
}

.btn-no {
    transition: all 0.1s ease;
    position: absolute;
    right: 80px;
}

/* --- Valentine Page --- */
.valentine-pretitle {
    font-size: 1.3rem;
    color: #8e4a65;
    margin-bottom: 12px;
}

.valentine-question {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 32px;
    text-shadow: 2px 2px 4px rgba(233, 30, 99, 0.15);
}

.valentine-hearts-bg {
    margin-bottom: 20px;
}

.valentine-hearts-bg span {
    font-size: 2rem;
    color: #f48fb1;
    margin: 0 6px;
    display: inline-block;
    animation: heartBeat 1.5s ease-in-out infinite;
}

.valentine-hearts-bg span:nth-child(2) { animation-delay: 0.2s; }
.valentine-hearts-bg span:nth-child(3) { animation-delay: 0.4s; }
.valentine-hearts-bg span:nth-child(4) { animation-delay: 0.6s; }
.valentine-hearts-bg span:nth-child(5) { animation-delay: 0.8s; }
.valentine-hearts-bg span:nth-child(6) { animation-delay: 1.0s; }

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
}

.valentine-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-yes {
    font-size: 1.1rem;
    padding: 14px 36px;
    transition: all 0.4s ease;
}

.btn-doubt {
    transition: all 0.3s ease;
}

/* --- Present Box --- */
.reveal-frame {
    max-width: 800px;
}

.reveal-title {
    font-family: 'Pacifico', cursive;
    font-size: 2.2rem;
    color: #e91e63;
    margin-bottom: 8px;
}

.reveal-subtitle {
    font-size: 1.05rem;
    color: #8e4a65;
    margin-bottom: 24px;
}

.present-wrapper {
    display: inline-block;
    margin: 20px auto;
    cursor: pointer;
}

.present-box {
    width: 200px;
    height: 210px;
    position: relative;
    margin: 0 auto;
    transition: transform 0.1s ease;
}

.present-base {
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 180px;
    height: 150px;
    background: linear-gradient(135deg, #ec407a, #f06292);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.present-ribbon-v {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 100%;
    background: linear-gradient(180deg, #ffd54f, #ffca28);
}

.present-lid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 50px;
    background: linear-gradient(135deg, #f06292, #ec407a);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
    transition: all 0.5s ease;
    z-index: 2;
}

.present-bow {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
}

.bow-left, .bow-right {
    position: absolute;
    top: 4px;
    width: 24px;
    height: 20px;
    background: #ffd54f;
    border-radius: 50% 50% 0 50%;
}

.bow-left {
    left: 4px;
    transform: rotate(-20deg);
    border-radius: 50% 0 50% 50%;
}

.bow-right {
    right: 4px;
    transform: rotate(20deg);
    border-radius: 0 50% 50% 50%;
}

.bow-knot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #ffca28;
    border-radius: 50%;
}

.present-box.shaking {
    animation: shake 0.15s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0) rotate(0); }
    25% { transform: translateX(-5px) rotate(-2deg); }
    75% { transform: translateX(5px) rotate(2deg); }
}

.present-box.shaking-hard {
    animation: shakeHard 0.15s ease-in-out;
}

@keyframes shakeHard {
    0%, 100% { transform: translateX(0) rotate(0); }
    20% { transform: translateX(-8px) rotate(-4deg); }
    40% { transform: translateX(8px) rotate(4deg); }
    60% { transform: translateX(-6px) rotate(-3deg); }
    80% { transform: translateX(6px) rotate(3deg); }
}

.present-box.shaking-wild {
    animation: shakeWild 0.2s ease-in-out;
}

@keyframes shakeWild {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    15% { transform: translate(-10px, -3px) rotate(-5deg); }
    30% { transform: translate(10px, 2px) rotate(5deg); }
    45% { transform: translate(-8px, -4px) rotate(-4deg); }
    60% { transform: translate(8px, 3px) rotate(4deg); }
    75% { transform: translate(-5px, -2px) rotate(-3deg); }
    90% { transform: translate(5px, 1px) rotate(3deg); }
}

.present-lid.open {
    transform: translateY(-120px) rotate(25deg);
    opacity: 0;
}

.click-progress {
    width: 200px;
    height: 8px;
    background: #fce4ec;
    border-radius: 4px;
    margin: 16px auto 8px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f48fb1, #e91e63);
    border-radius: 4px;
    transition: width 0.2s ease;
}

.click-hint {
    font-size: 0.85rem;
    color: #c48b9f;
    font-style: italic;
}

/* --- Reveal Content --- */
.reveal-content {
    animation: revealFadeIn 1s ease-out;
}

@keyframes revealFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal-surprise {
    font-family: 'Pacifico', cursive;
    font-size: 4rem;
    background: linear-gradient(135deg, #e91e63, #ff6090, #ffd54f, #e91e63);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
    margin-bottom: 24px;
}

.reveal-image-wrapper {
    max-width: 420px;
    margin: 0 auto 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.25);
    border: 3px solid #f8bbd0;
}

.reveal-image {
    width: 100%;
    display: block;
}

.reveal-details-box {
    background: linear-gradient(135deg, #fce4ec, #fff0f5);
    border-radius: 16px;
    padding: 24px 32px;
    margin: 0 auto 24px;
    max-width: 480px;
    border: 2px solid #f8bbd0;
}

.reveal-artist {
    font-family: 'Pacifico', cursive;
    font-size: 2.4rem;
    color: #e91e63;
    margin-bottom: 4px;
}

.reveal-tour {
    font-size: 1.15rem;
    color: #8e4a65;
    margin-bottom: 12px;
    font-weight: 600;
}

.reveal-ticket-type {
    display: inline-block;
    background: linear-gradient(135deg, #ffd54f, #ffca28);
    color: #5c374c;
    font-weight: 800;
    font-size: 1.3rem;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    box-shadow: 0 3px 12px rgba(255, 202, 40, 0.4);
}

.reveal-date {
    font-size: 1.1rem;
    color: #5c374c;
    font-weight: 700;
}

.reveal-final {
    margin-top: 24px;
}

.reveal-love {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: #e91e63;
    margin-bottom: 8px;
}

.reveal-sign {
    font-size: 1.1rem;
    color: #8e4a65;
    font-weight: 600;
}

/* --- Utility --- */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
