#construction-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 18, 21, 0.97), rgba(13, 10, 11, 0.98));
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#construction-overlay.hidden {
    display: none;
}
.construction-content {
    text-align: center;
    padding: 40px;
    max-width: 500px;
}
.construction-title {
    color: var(--rose-gold);
    font-family: var(--font-decorative), 'Dancing Script', cursive;
    font-size: 2.2rem;
    margin: 24px 0 12px;
    text-shadow: 0 0 20px rgba(183, 110, 121, 0.3);
}
.construction-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}
.construction-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.construction-dot {
    width: 10px;
    height: 10px;
    background: var(--rose-gold);
    border-radius: 50%;
    animation: constructionBounce 1.4s infinite ease-in-out;
}
.construction-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.construction-dot:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes constructionBounce {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}
.fox-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.fox {
    position: relative;
    width: 120px;
    height: 100px;
    animation: foxTrot 2s infinite ease-in-out;
}
@keyframes foxTrot {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(2deg);
    }
}
.fox-head {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 50px;
    background: linear-gradient(135deg, #d4763f, #b76e79);
    border-radius: 50% 50% 45% 45%;
    z-index: 3;
}
.fox-ear {
    position: absolute;
    top: -18px;
    width: 20px;
    height: 28px;
    background: linear-gradient(135deg, #d4763f, #b76e79);
    border-radius: 50% 50% 0 0;
}
.fox-ear-left {
    left: 2px;
    transform: rotate(-15deg);
}
.fox-ear-right {
    right: 2px;
    transform: rotate(15deg);
}
.fox-ear::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 14px;
    background: #f4c2a1;
    border-radius: 50% 50% 0 0;
}
.fox-face {
    position: relative;
    width: 100%;
    height: 100%;
}
.fox-eye {
    position: absolute;
    top: 16px;
    width: 8px;
    height: 8px;
    background: #1a1215;
    border-radius: 50%;
    animation: foxBlink 3s infinite;
}
.fox-eye-left {
    left: 14px;
}
.fox-eye-right {
    right: 14px;
}
@keyframes foxBlink {
    0%, 96%, 100% {
        transform: scaleY(1);
    }
    98% {
        transform: scaleY(0.1);
    }
}
.fox-nose {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 6px;
    background: #1a1215;
    border-radius: 50%;
}
.fox-body {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #d4763f, #b76e79);
    border-radius: 50% 50% 40% 40%;
    z-index: 2;
}
.fox-tail {
    position: absolute;
    top: 45px;
    right: 10px;
    width: 35px;
    height: 50px;
    background: linear-gradient(135deg, #d4763f, #b76e79);
    border-radius: 0 50% 50% 0;
    transform-origin: bottom left;
    animation: foxWag 1.5s infinite ease-in-out;
    z-index: 1;
}
.fox-tail-tip {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #f4c2a1;
    border-radius: 0 50% 50% 50%;
}
@keyframes foxWag {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}
.fox-leg {
    position: absolute;
    bottom: 0;
    width: 8px;
    height: 18px;
    background: linear-gradient(135deg, #d4763f, #b76e79);
    border-radius: 0 0 4px 4px;
}
.fox-leg-front-left {
    left: 38px;
    animation: foxLegMove 0.6s infinite alternate;
}
.fox-leg-front-right {
    left: 50px;
    animation: foxLegMove 0.6s infinite alternate 0.3s;
}
.fox-leg-back-left {
    left: 62px;
    animation: foxLegMove 0.6s infinite alternate 0.15s;
}
.fox-leg-back-right {
    left: 74px;
    animation: foxLegMove 0.6s infinite alternate 0.45s;
}
@keyframes foxLegMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-4px);
    }
}
