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

body {
    font-family: "Arial", sans-serif;
    background: linear-gradient(45deg, #0a0a0a, #1a1a2e, #0d4494, #1e40af);
    background-size: 400% 400%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.loading-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(64, 224, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: containerPulse 4s ease-in-out infinite;
}

@keyframes containerPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.3),
            0 0 100px rgba(64, 224, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow:
            0 25px 80px rgba(0, 0, 0, 0.4),
            0 0 150px rgba(64, 224, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.loading-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        transparent,
        rgba(251, 191, 36, 0.1),
        transparent
    );
    animation: rotate 6s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    opacity: 1;
    text-transform: uppercase;
    background: linear-gradient(45deg, #3b82f6, #fbbf24, #ef4444);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
        textShimmer 3s ease-in-out infinite,
        titleFloat 6s ease-in-out infinite;
    text-shadow:
        0 0 40px rgba(59, 130, 246, 0.6),
        0 0 80px rgba(251, 191, 36, 0.4),
        0 0 120px rgba(239, 68, 68, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

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

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

.progress-container {
    position: relative;
    margin: 3rem 0;
    padding: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 0 20px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.progress-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(
        90deg,
        #3b82f6 0%,
        #1d4ed8 25%,
        #fbbf24 50%,
        #ef4444 75%,
        #3b82f6 100%
    );
    background-size: 300% 100%;
    border-radius: 15px;
    width: var(--progress, 0%);
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 0 30px rgba(59, 130, 246, 0.6),
        0 0 60px rgba(59, 130, 246, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation:
        progressGlow 2s ease-in-out infinite,
        progressFlow 4s linear infinite;
}

@keyframes progressGlow {
    0%,
    100% {
        box-shadow:
            0 0 30px rgba(59, 130, 246, 0.6),
            0 0 60px rgba(59, 130, 246, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 0 50px rgba(59, 130, 246, 0.8),
            0 0 100px rgba(59, 130, 246, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

@keyframes progressFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

.progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 55%,
        transparent 100%
    );
    animation: progressSweep 3s ease-in-out infinite;
    border-radius: 15px;
}

@keyframes progressSweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(400%);
    }
}

.progress-text {
    font-size: 3.5rem;
    font-weight: 900;
    margin-top: 2rem;
    text-shadow:
        0 0 10px rgba(59, 130, 246, 0.5),
        0 0 20px rgba(251, 191, 36, 0.3),
        0 0 40px rgba(239, 68, 68, 0.1);
    background: linear-gradient(45deg, #3b82f6, #ffffff, #fbbf24);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
        textShimmer 2s ease-in-out infinite,
        numberPulse 1.5s ease-in-out infinite;
}

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

.date-info {
    margin-top: 3rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.date-info p {
    margin: 1rem 0;
    padding: 0.5rem 0;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.days-remaining {
    font-size: 1.1rem;
    font-weight: bold;
    opacity: 1;
    color: #ffffff;
    background: rgba(239, 68, 68, 0.8);
    padding: 10px 60px;
    min-width: 200px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(239, 68, 68, 0.6),
        0 0 30px rgba(239, 68, 68, 0.3);
    box-shadow:
        0 4px 12px rgba(239, 68, 68, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-top: 0.5rem;
}

/* Enhanced loading text animation */
.title::after {
    content: "";
    animation: dots 2s infinite;
}

@keyframes dots {
    0%,
    20% {
        content: "";
    }
    40% {
        content: ".";
    }
    60% {
        content: "..";
    }
    80%,
    100% {
        content: "...";
    }
}

/* Floating particles */
.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(59, 130, 246, 0.1) 2px,
            transparent 2px
        ),
        radial-gradient(
            circle at 70% 20%,
            rgba(251, 191, 36, 0.1) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(239, 68, 68, 0.08) 1px,
            transparent 1px
        ),
        radial-gradient(
            circle at 30% 80%,
            rgba(59, 130, 246, 0.08) 2px,
            transparent 2px
        ),
        radial-gradient(
            circle at 90% 40%,
            rgba(251, 191, 36, 0.1) 1px,
            transparent 1px
        );
    background-size:
        200px 200px,
        150px 150px,
        300px 300px,
        250px 250px,
        180px 180px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleFloat {
    0% {
        background-position:
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%;
    }
    100% {
        background-position:
            100% 100%,
            -100% 100%,
            100% -100%,
            -100% -100%,
            100% 100%;
    }
}

/* Enhanced background effects */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(59, 130, 246, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(239, 68, 68, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 40%,
            rgba(251, 191, 36, 0.08) 0%,
            transparent 50%
        );
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: -2;
}

@keyframes backgroundPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Additional individual flying kittens */

.loading-wrapper::after {
    content: "😸";
    position: absolute;
    top: 20%;
    right: -50px;
    font-size: 3rem;
    opacity: 0.4;
    animation: kittenFloat1 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes kittenFloat1 {
    0%,
    100% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateX(-30px) translateY(-20px) rotate(15deg) scale(1.1);
    }
    50% {
        transform: translateX(20px) translateY(-40px) rotate(-10deg) scale(0.9);
    }
    75% {
        transform: translateX(-10px) translateY(-10px) rotate(20deg) scale(1.05);
    }
}

body::after {
    content: "";
}

/* Additional flying kitten layers */
.progress-container::before {
    content: "😸";
    position: absolute;
    top: -30px;
    left: 10%;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: kittenBounce 6s ease-in-out infinite;
    z-index: -1;
}

@keyframes kittenBounce {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-60px) rotate(180deg);
    }
}

.progress-container::after {
    content: "😺";
    position: absolute;
    top: -20px;
    right: 15%;
    font-size: 2rem;
    opacity: 0.35;
    animation: kittenSpin 4s linear infinite;
    z-index: -1;
}

@keyframes kittenSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(90deg) scale(1.2);
    }
    50% {
        transform: rotate(180deg) scale(0.8);
    }
    75% {
        transform: rotate(270deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Individual flying kittens */
.flying-kittens {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.kitten {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.4;
    user-select: none;
}

.kitten-1 {
    top: 10%;
    left: -100px;
    animation: kittenFlight1 12s linear infinite;
}

@keyframes kittenFlight1 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateX(25vw) translateY(-50px) rotate(90deg);
    }
    50% {
        transform: translateX(50vw) translateY(30px) rotate(180deg);
    }
    75% {
        transform: translateX(75vw) translateY(-20px) rotate(270deg);
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(10px)
            rotate(360deg);
    }
}

.kitten-2 {
    top: 20%;
    right: -100px;
    animation: kittenFlight2 14s ease-in-out infinite reverse;
}

@keyframes kittenFlight2 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    }
    20% {
        transform: translateX(-20vw) translateY(-40px) rotate(-45deg) scale(1.2);
    }
    40% {
        transform: translateX(-40vw) translateY(20px) rotate(-90deg) scale(0.8);
    }
    60% {
        transform: translateX(-60vw) translateY(-30px) rotate(-135deg)
            scale(1.1);
    }
    80% {
        transform: translateX(-80vw) translateY(15px) rotate(-180deg) scale(0.9);
    }
    100% {
        transform: translateX(calc(-100vw - 100px)) translateY(-10px)
            rotate(-360deg) scale(1);
    }
}

.kitten-3 {
    top: 30%;
    left: -80px;
    animation: kittenFlight3 10s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes kittenFlight3 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateX(calc(50vw + 50px)) translateY(-60px)
            rotate(180deg);
    }
    100% {
        transform: translateX(calc(100vw + 80px)) translateY(0px) rotate(360deg);
    }
}

.kitten-4 {
    bottom: 20%;
    left: -90px;
    animation: kittenFlight4 16s linear infinite;
    animation-delay: -4s;
}

@keyframes kittenFlight4 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateX(30vw) translateY(-40px) rotate(120deg) scale(1.3);
    }
    50% {
        transform: translateX(60vw) translateY(25px) rotate(240deg) scale(0.7);
    }
    75% {
        transform: translateX(90vw) translateY(-35px) rotate(300deg) scale(1.1);
    }
    100% {
        transform: translateX(calc(100vw + 90px)) translateY(5px) rotate(360deg)
            scale(1);
    }
}

.kitten-5 {
    top: 60%;
    right: -70px;
    animation: kittenFlight5 13s ease-in-out infinite reverse;
    animation-delay: -1s;
}

@keyframes kittenFlight5 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateX(-35vw) translateY(-50px) rotate(-120deg);
    }
    66% {
        transform: translateX(-70vw) translateY(40px) rotate(-240deg);
    }
    100% {
        transform: translateX(calc(-100vw - 70px)) translateY(-15px)
            rotate(-360deg);
    }
}

.kitten-6 {
    top: 5%;
    left: -110px;
    animation: kittenFlight6 18s linear infinite;
    animation-delay: -6s;
}

@keyframes kittenFlight6 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    }
    20% {
        transform: translateX(20vw) translateY(-30px) rotate(72deg) scale(1.1);
    }
    40% {
        transform: translateX(40vw) translateY(20px) rotate(144deg) scale(0.9);
    }
    60% {
        transform: translateX(60vw) translateY(-45px) rotate(216deg) scale(1.2);
    }
    80% {
        transform: translateX(80vw) translateY(10px) rotate(288deg) scale(0.8);
    }
    100% {
        transform: translateX(calc(100vw + 110px)) translateY(-5px)
            rotate(360deg) scale(1);
    }
}

.kitten-7 {
    bottom: 10%;
    right: -60px;
    animation: kittenFlight7 11s ease-in-out infinite reverse;
    animation-delay: -3s;
}

@keyframes kittenFlight7 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateX(-25vw) translateY(-35px) rotate(-90deg);
    }
    50% {
        transform: translateX(-50vw) translateY(15px) rotate(-180deg);
    }
    75% {
        transform: translateX(-75vw) translateY(-25px) rotate(-270deg);
    }
    100% {
        transform: translateX(calc(-100vw - 60px)) translateY(8px)
            rotate(-360deg);
    }
}

.kitten-8 {
    top: 40%;
    left: -120px;
    animation: kittenFlight8 15s linear infinite;
    animation-delay: -7s;
}

@keyframes kittenFlight8 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    }
    30% {
        transform: translateX(35vw) translateY(-55px) rotate(108deg) scale(1.25);
    }
    60% {
        transform: translateX(70vw) translateY(35px) rotate(216deg) scale(0.75);
    }
    100% {
        transform: translateX(calc(100vw + 120px)) translateY(-12px)
            rotate(360deg) scale(1);
    }
}

.kitten-9 {
    bottom: 30%;
    left: -95px;
    animation: kittenFlight9 14s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes kittenFlight9 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    40% {
        transform: translateX(45vw) translateY(-42px) rotate(144deg);
    }
    80% {
        transform: translateX(90vw) translateY(28px) rotate(288deg);
    }
    100% {
        transform: translateX(calc(100vw + 95px)) translateY(-8px)
            rotate(360deg);
    }
}

.kitten-10 {
    top: 15%;
    left: -75px;
    animation: kittenFlight10 13s ease-in-out infinite;
    animation-delay: -8s;
}

@keyframes kittenFlight10 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    }
    33% {
        transform: translateX(40vw) translateY(-45px) rotate(120deg) scale(1.15);
    }
    66% {
        transform: translateX(80vw) translateY(25px) rotate(240deg) scale(0.85);
    }
    100% {
        transform: translateX(calc(100vw + 75px)) translateY(-15px)
            rotate(360deg) scale(1);
    }
}

.kitten-11 {
    bottom: 15%;
    right: -85px;
    animation: kittenFlight11 17s linear infinite reverse;
    animation-delay: -2s;
}

@keyframes kittenFlight11 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateX(-30vw) translateY(-35px) rotate(-90deg);
    }
    50% {
        transform: translateX(-60vw) translateY(20px) rotate(-180deg);
    }
    75% {
        transform: translateX(-90vw) translateY(-25px) rotate(-270deg);
    }
    100% {
        transform: translateX(calc(-100vw - 85px)) translateY(10px)
            rotate(-360deg);
    }
}

.kitten-12 {
    top: 35%;
    left: -65px;
    animation: kittenFlight12 12s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes kittenFlight12 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    }
    40% {
        transform: translateX(45vw) translateY(-38px) rotate(144deg) scale(1.2);
    }
    80% {
        transform: translateX(90vw) translateY(32px) rotate(288deg) scale(0.8);
    }
    100% {
        transform: translateX(calc(100vw + 65px)) translateY(-8px)
            rotate(360deg) scale(1);
    }
}

.kitten-13 {
    bottom: 25%;
    left: -105px;
    animation: kittenFlight13 19s linear infinite;
    animation-delay: -9s;
}

@keyframes kittenFlight13 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    }
    20% {
        transform: translateX(22vw) translateY(-42px) rotate(72deg) scale(1.1);
    }
    40% {
        transform: translateX(44vw) translateY(18px) rotate(144deg) scale(0.9);
    }
    60% {
        transform: translateX(66vw) translateY(-33px) rotate(216deg) scale(1.25);
    }
    80% {
        transform: translateX(88vw) translateY(12px) rotate(288deg) scale(0.75);
    }
    100% {
        transform: translateX(calc(100vw + 105px)) translateY(-6px)
            rotate(360deg) scale(1);
    }
}

.kitten-14 {
    top: 45%;
    right: -95px;
    animation: kittenFlight14 14s ease-in-out infinite reverse;
    animation-delay: -6s;
}

@keyframes kittenFlight14 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    30% {
        transform: translateX(-35vw) translateY(-48px) rotate(-108deg);
    }
    70% {
        transform: translateX(-70vw) translateY(28px) rotate(-252deg);
    }
    100% {
        transform: translateX(calc(-100vw - 95px)) translateY(-18px)
            rotate(-360deg);
    }
}

.kitten-15 {
    top: 8%;
    left: -80px;
    animation: kittenFlight15 16s linear infinite;
    animation-delay: -1s;
}

@keyframes kittenFlight15 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateX(28vw) translateY(-52px) rotate(90deg) scale(1.3);
    }
    50% {
        transform: translateX(56vw) translateY(35px) rotate(180deg) scale(0.7);
    }
    75% {
        transform: translateX(84vw) translateY(-28px) rotate(270deg) scale(1.1);
    }
    100% {
        transform: translateX(calc(100vw + 80px)) translateY(8px) rotate(360deg)
            scale(1);
    }
}

.kitten-16 {
    bottom: 35%;
    right: -110px;
    animation: kittenFlight16 11s ease-in-out infinite reverse;
    animation-delay: -7s;
}

@keyframes kittenFlight16 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateX(-55vw) translateY(-40px) rotate(-180deg);
    }
    100% {
        transform: translateX(calc(-100vw - 110px)) translateY(15px)
            rotate(-360deg);
    }
}

.kitten-17 {
    top: 55%;
    left: -90px;
    animation: kittenFlight17 15s linear infinite;
    animation-delay: -3s;
}

@keyframes kittenFlight17 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    }
    33% {
        transform: translateX(38vw) translateY(-46px) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translateX(76vw) translateY(30px) rotate(240deg) scale(0.8);
    }
    100% {
        transform: translateX(calc(100vw + 90px)) translateY(-12px)
            rotate(360deg) scale(1);
    }
}

.kitten-18 {
    bottom: 8%;
    left: -100px;
    animation: kittenFlight18 20s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes kittenFlight18 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    }
    20% {
        transform: translateX(24vw) translateY(-38px) rotate(72deg) scale(1.15);
    }
    40% {
        transform: translateX(48vw) translateY(22px) rotate(144deg) scale(0.85);
    }
    60% {
        transform: translateX(72vw) translateY(-44px) rotate(216deg) scale(1.25);
    }
    80% {
        transform: translateX(96vw) translateY(16px) rotate(288deg) scale(0.75);
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-8px)
            rotate(360deg) scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .progress-text {
        font-size: 2.5rem;
    }

    .loading-wrapper {
        padding: 3rem 2rem;
        margin: 1rem;
    }

    .date-info {
        font-size: 1rem;
    }

    .progress-bar {
        height: 16px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .progress-text {
        font-size: 2rem;
    }

    .loading-wrapper {
        padding: 2rem 1.5rem;
    }

    .date-info {
        font-size: 0.9rem;
    }

    .target-date {
        font-size: 1.1rem;
    }

    /* Smaller kittens on mobile */
    .kitten {
        font-size: 1.8rem;
        opacity: 0.3;
    }
}

/* Screen reader accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .loading-wrapper {
        border: 3px solid white;
        background: rgba(0, 0, 0, 0.8);
    }

    .progress-bar {
        border: 2px solid white;
    }
}
