@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

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

:root {
    --primary: #2D3436;
    --secondary: #636E72;
    --accent: #FF6B6B;
    --accent-light: #FFA8A8;
    --gold: #F9CA24;
    --gold-light: #FFEAA7;
    --mint: #00B894;
    --mint-light: #55EFC4;
    --snow: #DFE6E9;
    --white: #FFFFFF;
    --bg-gradient-start: #667eea;
    --bg-gradient-end: #764ba2;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    padding: 20px 20px 0 20px;
    color: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* Hintergrund-Sterne */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 230px 80px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.35), transparent),
        radial-gradient(1px 1px at 350px 60px, rgba(255,255,255,0.25), transparent);
    background-size: 400px 200px;
    animation: twinkle 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-container {
    width: 100%;
    max-width: 383px;
    margin: 35px auto 40px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    position: relative;
    width: 100%;
    max-width: 383px;
    margin: 0 auto;
    /* Fester Platz für SVG (Seitenverhältnis ~1.4:1 basierend auf viewBox 237.312 x 169.53) */
    aspect-ratio: 237.312 / 169.53;
}

.gapis-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.gapis-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
}

.logo-static {
    position: relative;
    width: 100%;
    z-index: 1;
}

.logo-static-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
}

.gapis-path-animated {
    fill: #FFFFFF;
    stroke: none;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes revealPath {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Nach Animation: Fülle wieder weiß */
.gapis-path-animated {
    animation-fill-mode: forwards;
}

.gapis-path-animated.animated {
    fill: #FFFFFF;
    stroke: none;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    color: var(--white);
}

h1 .emoji {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

h1 .emoji:last-child {
    animation-delay: 0.5s;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 5px;
}

.subtitle-small {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.6;
    letter-spacing: 0.05em;
    text-transform: none;
    margin-top: 0;
}

/* Kalender Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Türchen */
.door {
    aspect-ratio: 1;
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.door::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.door:hover::before {
    left: 100%;
}

.door:hover:not(.locked) {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 24px rgba(249, 202, 36, 0.2);
}

.door:active:not(.locked) {
    transform: translateY(-2px) scale(0.98);
}

.door-number {
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Gesperrte Türchen */
.door.locked {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.door.locked .door-number {
    color: rgba(255, 255, 255, 0.4);
}

.door.locked:hover {
    transform: none;
    box-shadow: none;
}

/* Türchen 6 - Mysteriös */
.door.mysterious {
    cursor: pointer;
    animation: mysteryPulse 3s ease-in-out infinite;
}

.door.mysterious.golden {
    /* Wenn mysteriös und golden, behalte goldene Farbe aber mit mysteriöser Animation */
    animation: openedGlow 2s ease-in-out infinite, mysteryPulse 3s ease-in-out infinite;
}

.door.mysterious:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(249, 202, 36, 0.3);
}

@keyframes mysteryPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.7; }
}

/* Goldene Türchen (alle vergangenen und aktuellen) */
.door.golden {
    background: linear-gradient(145deg, var(--gold), var(--gold-light));
    border-color: var(--gold);
    cursor: pointer;
    animation: openedGlow 2s ease-in-out infinite;
}

.door.golden .door-number {
    color: var(--primary);
    font-weight: 700;
}

.door.golden.opened::after {
    content: '✨';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 0.8rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes openedGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(249, 202, 36, 0.3); }
    50% { box-shadow: 0 4px 24px rgba(249, 202, 36, 0.5); }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    padding: 32px;
    max-width: 90%;
    width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gold minimalistisches Modal für Geschichten */
.modal-gold {
    background: linear-gradient(160deg, #2a2310 0%, #1f1a0e 50%, #0f0d08 100%);
    border: 2px solid var(--gold);
    box-shadow: 
        0 0 40px rgba(249, 202, 36, 0.15),
        inset 0 1px 0 rgba(249, 202, 36, 0.1);
}

.modal-gold .close-btn {
    background: rgba(249, 202, 36, 0.15);
    color: var(--gold);
    border: 1px solid rgba(249, 202, 36, 0.3);
}

.modal-gold .close-btn:hover {
    background: rgba(249, 202, 36, 0.25);
    border-color: var(--gold);
}

.modal-gold .story-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold);
    text-align: center;
    margin-bottom: 24px;
    padding-right: 30px;
}

.modal-gold .story-content {
    margin-top: 0;
}

.modal-gold .story-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-size: 1.05rem;
}

.modal-gold .ps-text {
    color: var(--gold-light);
    opacity: 0.8;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.story-header {
    margin-bottom: 24px;
    text-align: center;
    padding-right: 40px;
}

.story-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--gold);
}

.audio-controls {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.audio-controls button {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.audio-controls button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.story-content {
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 400;
    text-align: left;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.story-content p {
    margin-bottom: 16px;
    white-space: pre-line;
}

.ps-text {
    margin-top: 24px;
    font-style: italic;
    color: var(--gold-light);
    font-size: 0.95rem;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Nussknacker-Sektion unterhalb des Kalenders */
.nussknacker-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 80px;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 300px;
    overflow: hidden;
    background: transparent;
}

/* Buttons auf dem Schnee */
.snow-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    position: relative;
}

.snow-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(30, 60, 120, 0.7);
    font-family: 'Quicksand', sans-serif;
}

.snow-btn-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.snow-signature {
    margin-top: 40px;
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(30, 60, 120, 0.5);
    font-family: 'Quicksand', sans-serif;
    text-align: center;
}

.snow-btn {
    background: transparent;
    border: 2px solid rgba(30, 60, 120, 0.5);
    border-radius: 50px;
    color: rgba(30, 60, 120, 0.85);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.snow-btn:hover {
    background: rgba(30, 60, 120, 0.08);
    border-color: rgba(30, 60, 120, 0.6);
    color: rgba(30, 60, 120, 0.9);
    transform: translateY(-2px);
}

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

.snow-btn.active {
    background: rgba(30, 60, 120, 0.15);
    border-color: rgba(30, 60, 120, 0.7);
    color: rgba(30, 60, 120, 1);
}

/* Schnee-Boden - einfaches weißes Rechteck am unteren Rand */
.snow-ground {
    position: relative;
    width: 100%;
    padding: 100px 20px 50px;
    background: #ffffff;
    border-radius: 50% 50% 0 0 / 30% 30% 0 0;
    z-index: 1;
    margin-top: -20px;
}

.nussknacker-full {
    position: relative;
    width: 100%;
    max-width: 150px;
    z-index: 5;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    flex-shrink: 0;
    margin-bottom: 0;
}

.nussknacker-full {
    position: relative;
}

.nussknacker-body,
.nussknacker-eyes {
    width: 100%;
}

.nussknacker-body svg,
.nussknacker-eyes svg {
    width: 100%;
    height: auto;
    display: block;
}

.nussknacker-eyes {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    animation: eyesMove 4s ease-in-out infinite;
}

@keyframes eyesMove {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(1px);
    }
    50% {
        transform: translateX(-1px);
    }
    75% {
        transform: translateX(0.5px);
    }
}

/* Mund-Animation */
.nussknacker-mouth-upper,
.nussknacker-mouth-lower,
.nussknacker-mouth-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.nussknacker-mouth-upper svg,
.nussknacker-mouth-lower svg,
.nussknacker-mouth-inner svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Mund-Innenraum - schwarzer Bereich hinter beiden Mund-Teilen */
.nussknacker-mouth-inner {
    z-index: 1;
}

/* Oberer Mund - komplettes Mund-SVG als Basis */
.nussknacker-mouth-upper {
    z-index: 2;
}

/* Unterer Mund - direkt am Oberkiefer andockend, öffnet weit */
.nussknacker-mouth-lower {
    z-index: 3;
    /* Verschiebe nach oben, damit er am Oberkiefer andockt */
    transform: translateY(calc(-0.7% - 10px));
    animation: mouthMove 6s ease-in-out infinite;
}

@keyframes mouthMove {
    0%, 55%, 100% {
        transform: translateY(calc(-0.7% - 10px));
    }
    62% {
        transform: translateY(calc(2.5% - 10px));
    }
    68% {
        transform: translateY(calc(0.5% - 10px));
    }
    75% {
        transform: translateY(calc(3% - 10px));
    }
    82% {
        transform: translateY(calc(1% - 10px));
    }
    90% {
        transform: translateY(calc(2% - 10px));
    }
}

/* Choice Modal für Tag 7 */
.choice-content {
    text-align: center;
    padding: 20px 0;
}

.choice-content p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.8);
}

.choice-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 12px auto;
    padding: 18px 24px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.choice-btn:hover {
    background: linear-gradient(145deg, var(--gold), var(--gold-light));
    border-color: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(249, 202, 36, 0.3);
}

/* Mystery Modal für Tag 6 */
.mystery-content {
    text-align: center;
    padding: 30px 20px;
}

.mystery-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: mysteryFloat 2s ease-in-out infinite;
}

@keyframes mysteryFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.mystery-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #a29bfe;
}

.mystery-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.mystery-content .hint {
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 24px;
}

/* Snow Animation */
.snow-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 24px;
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    animation: fall linear infinite;
    top: -20px;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* Mobile Optimierung */
@media (max-width: 500px) {
    h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .calendar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 16px;
        border-radius: 20px;
    }

    .door {
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .modal-content {
        padding: 24px;
        border-radius: 20px;
    }

    .story-header h2 {
        font-size: 1.4rem;
    }

    .story-content {
        font-size: 1rem;
    }

    .snow-buttons {
        gap: 10px;
    }

    .snow-btn {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .nussknacker-full {
        max-width: 120px;
    }
}

@media (max-width: 380px) {
    .calendar-grid {
        gap: 8px;
        padding: 12px;
    }

    .door {
        font-size: 1rem;
        border-radius: 10px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   SCHNEEFALL ANIMATION - Ganze Seite
======================================== */
.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snow {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1em;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
    opacity: 0.9;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 1;
    }
    25% {
        transform: translateY(25vh) rotate(90deg) translateX(15px);
    }
    50% {
        transform: translateY(50vh) rotate(180deg) translateX(-15px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(75vh) rotate(270deg) translateX(10px);
    }
    100% {
        transform: translateY(105vh) rotate(360deg) translateX(-5px);
        opacity: 0.6;
    }
}

/* Verschiedene Schneeflocken-Stile */
.snow.style-1 { animation-timing-function: ease-in-out; }
.snow.style-2 { animation-timing-function: linear; }
.snow.style-3 { animation-timing-function: ease-out; }

/* Sanftes Schweben für manche Flocken */
.snow.float {
    animation-name: snowfall-float;
}

@keyframes snowfall-float {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 1;
    }
    20% {
        transform: translateY(20vh) rotate(72deg) translateX(25px);
    }
    40% {
        transform: translateY(40vh) rotate(144deg) translateX(-20px);
        opacity: 0.9;
    }
    60% {
        transform: translateY(60vh) rotate(216deg) translateX(30px);
    }
    80% {
        transform: translateY(80vh) rotate(288deg) translateX(-25px);
        opacity: 0.7;
    }
    100% {
        transform: translateY(108vh) rotate(360deg) translateX(10px);
        opacity: 0.5;
    }
}

/* ========================================
   AUDIO PROGRESS - Direkt auf dem Türchen
======================================== */
.door.playing {
    z-index: 100;
}

.door.playing .door-number {
    opacity: 0;
}

.door-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 16px;
    z-index: 10;
    animation: fadeIn 0.3s ease-out;
}

.door-progress svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 85%;
    height: 85%;
}

.door-progress .progress-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.15);
    stroke-width: 5;
}

.door-progress .progress-bar {
    fill: none;
    stroke: var(--primary);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 251; /* 2 * PI * 40 (radius) */
    stroke-dashoffset: 251;
    transition: stroke-dashoffset 0.1s linear;
}

.door-progress .stop-btn {
    position: relative;
    z-index: 11;
    width: 50%;
    height: 50%;
    max-width: 36px;
    max-height: 36px;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1;
}

.door-progress .stop-btn:hover {
    transform: scale(1.2);
    color: #1a1a1a;
}

.door-progress .stop-btn:active {
    transform: scale(0.95);
}

@media (max-width: 500px) {
    .door-progress svg {
        width: 80%;
        height: 80%;
    }
    
    .door-progress .stop-btn {
        font-size: 1.1rem;
        max-width: 28px;
        max-height: 28px;
    }
}
