@charset "UTF-8";
body {
    text-align: center;      
　font-family: "Noto Sans JP"; 
    font-size: 100%;            
}
html {
    scroll-behavior: smooth;
}
hr.pumpkin-line {
    border: none;
    background-image: linear-gradient(to right, #ff7a00 50%, #2f2f2f 50%);
    background-size: 10px 10px; 
    height: 3px;              
    width: 100%;               
    margin: 20px auto;
}
.welcome-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
    cursor: default;
    background: linear-gradient(
        to right,
        #ff7ea5, #ffb57e, #ffee7e, #7effa7, #7ebeff, #b57eff, #ff7ea5
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 
        rainbowScroll 4s linear infinite,
        floating 3s ease-in-out infinite;
}
.counter-card {
    background: white;
    padding: 30px 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(255, 126, 165, 0.15);
    border: 3px dashed #ffb57e;
    animation: gentlePop 1s ease-out forwards;
    position: relative;
}
.counter-text {
    font-size: 20px;
    color: #665550;
    margin: 0 0 10px 0;
}
.days-number {
    font-size: 16px;
    font-weight: 900;
    color: #ff7ea5;
    display: inline-block;
    text-shadow: 2px 2px 0px #ffee7e;
    animation: pulse 1.5s infinite alternate;
}
.days-unit {
    font-size: 17px;
    color: #ff7ea5;
    font-weight: 700;
    margin-left: 5px;
}
@keyframes rainbowScroll {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes gentlePop {
    0% { transform: scale(0.7); opacity: 0; }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.mini-clock {
    width: 120px;
    height: 120px;
    background-color: #fff4f7;
    border: 4px solid #ffb57e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(255, 126, 165, 0.15);
    position: relative;
    margin: 20px auto;
}
.clock-face {
    position: relative;
    width: 100%;
    height: 100%;
}
.clock-center {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ff7ea5;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    border-radius: 4px;
    z-index: 5;
}
.hour-hand {
    width: 4px;
    height: 30px;
    background-color: #665550;
}
.minute-hand {
    width: 3px;
    height: 42px;
    background-color: #ffb57e;
}
.second-hand {
    width: 2px;
    height: 45px;
    background-color: #ff7ea5;
}
.clock-number {
    position: absolute;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #665550;
    text-align: center;
}
.num12 { top: 4px; left: 50%; transform: translateX(-50%); }
.num3  { right: 6px; top: 50%; transform: translateY(-50%); }
.num6  { bottom: 4px; left: 50%; transform: translateX(-50%); }
.num9  { left: 6px; top: 50%; transform: translateY(-50%); }
.descr {
    border: 4px solid transparent;
    background-image: linear-gradient(white, white), 
                      linear-gradient(to right, #ff7ea5, #ffb57e, #ffee7e, #7effa7, #7ebeff, #b57eff, #ff7ea5);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 200% auto;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.3s ease;
    animation: rainbowBorderScroll 4s linear infinite;
}

.descr:hover,
.descr:active {
    background-image: linear-gradient(white, white), 
                      linear-gradient(to right, #ff7ea5, #ffb57e, #ffee7e, #7effa7, #7ebeff, #b57eff, #ff7ea5);
    background-color: rgba(255, 255, 255, 1);
}

@keyframes rainbowBorderScroll {
    0% { background-position: 0% center, 0% center; }
    100% { background-position: 0% center, 200% center; }
}
.cute-footer {
    margin-top: 50px;
    padding: 30px 10px 20px 10px;
    background-color: #fff4f7;
    border-top: 3px dashed #ff7ea5;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
}

.footer-ribbon {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    background: white;
    width: 44px;
    height: 44px;
    line-height: 40px;
    border-radius: 50%;
    border: 3px dashed #ff7ea5;
    text-align: center;
}

.copyright {
    font-size: 12px;
    font-weight: 900;
    color: #665550;
    letter-spacing: 1px;
    margin: 0;
}