.date-container {
    max-width: 480px;
    width: 90%;
    position: relative;
    z-index: 2;
}

.mascot {
    margin-bottom: 1rem;
    line-height: 1;
}

.mascot-emoji {
    font-size: 4rem;
    animation: mascot-bob 2s ease-in-out infinite;
}

.mascot-img {
    width: 120px;
    height: auto;
    animation: mascot-bob 2s ease-in-out infinite;
}

@keyframes mascot-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.wizard-step {
    animation: step-in 0.4s ease;
}

@keyframes step-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sticker {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transform: rotate(-2deg);
}

.sticker-cn {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.big-q {
    font-family: 'Dancing Script', Georgia, serif;
    color: var(--text-color);
    font-size: 2.6rem;
    line-height: 1.15;
    margin: 0.5rem 0 1.2rem;
}

.sub-line {
    color: #888;
    font-size: 0.95rem;
    margin: 0 0 1.2rem;
}

.pill-btn {
    border-radius: 30px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.yes-btn {
    background: var(--button-color);
}

.field {
    text-align: left;
    margin: 0 auto 1rem;
    max-width: 320px;
}

.field label {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.field input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 2px solid #ffd1dc;
    border-radius: 14px;
    font-size: 1rem;
    font-family: inherit;
    color: #444;
    background: #fff7f9;
    outline: none;
    transition: border-color 0.2s;
}

.field input:focus {
    border-color: var(--button-color);
}

.food-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto 1.2rem;
    max-width: 360px;
}

.food-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #ffd1dc;
    border-radius: 16px;
    background: #fff7f9;
    cursor: pointer;
    font-size: 1.05rem;
    font-family: inherit;
    color: #444;
    text-align: left;
    transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}

.food-card:hover {
    transform: scale(1.02);
}

.food-card.selected {
    border-color: var(--button-color);
    box-shadow: 0 4px 14px rgba(255, 71, 87, 0.25);
    background: #fff0f3;
}

.food-emoji {
    font-size: 1.5rem;
}

.food-label {
    flex: 1;
    font-weight: 500;
}

.food-check {
    color: var(--button-color);
    font-weight: 700;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s;
}

.food-card.selected .food-check {
    opacity: 1;
    transform: scale(1);
}

.summary-card {
    background: #fff7f9;
    border: 2px solid #ffd1dc;
    border-radius: 18px;
    padding: 1.2rem 1.4rem;
    margin: 0 auto 1.2rem;
    max-width: 360px;
    text-align: left;
}

.summary-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
}

.summary-row + .summary-row {
    border-top: 1px dashed #ffd1dc;
}

.summary-key {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #b08;
}

.summary-val {
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 600;
}

.when-warning {
    color: #e84118;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.ps-line {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0 0 1.2rem;
}

.copied-msg {
    color: var(--button-color);
    font-weight: 700;
    margin-top: 0.8rem;
}

.confetti {
    position: fixed;
    z-index: 999;
    pointer-events: none;
    will-change: transform, opacity;
}

.confetti.shape-square {
    width: 10px;
    height: 14px;
    border-radius: 2px;
}

.confetti.shape-circle {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.confetti.shape-triangle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 11px solid currentColor;
    background: transparent !important;
}

.confetti.shape-star {
    width: 12px;
    height: 12px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
                       50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.confetti.sparkle {
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 480px) {
    .big-q { font-size: 2.1rem; }
    .pill-btn { width: 100%; }
}
