body { 
    margin: 0; 
    overflow: hidden; 
    background: #0f0f0f; 
}

canvas { 
    position: fixed; 
    top: 0; 
    left: 0; 
    z-index: -1; 
}

.image-container {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100vh;
    display: flex; 
    justify-content: center; 
    align-items: center;
    z-index: 10;
}

.zoom-in-img {
    opacity: 0;
    transform: scale(0.5);
    animation: pop-in 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes pop-in {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}

#start-mask {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white; 
    font-size: 24px; 
    font-family: sans-serif;
    display: flex; 
    justify-content: center; 
    align-items: center;
    cursor: pointer; 
    z-index: 999;
    transition: opacity 0.5s;
}

.meteor {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 120px; 
    height: 2px;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
    border-radius: 50%; 
    pointer-events: none; 
    z-index: 998; 
    opacity: 0;
    transform: rotate(-45deg); 
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

@keyframes meteor-fall {
    0% { opacity: 1; transform: rotate(-45deg) translateX(0); }
    70% { opacity: 1; }
    100% { opacity: 0; transform: rotate(-45deg) translateX(-600px); }
}

.site-footer {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    text-align: center;
    padding: 15px 0; 
    color: #ffffff; 
    font-size: 14px; 
    font-family: sans-serif; 
    z-index: 20;
}

#main-img { 
    border-radius: 20px; 
    transition: opacity 0.5s ease, transform 0.5s ease; 
}

.visit-counter {
    position: fixed; 
    bottom: 50px; 
    left: 0; 
    width: 100%; 
    text-align: center;
    font-size: 13px; 
    font-family: sans-serif; 
    color: rgba(255, 255, 255, 0.7);
    z-index: 20; 
    pointer-events: none; 
    line-height: 1.8;
}

.visit-counter span { 
    color: #64c8ff; 
    font-weight: bold; 
    margin: 0 8px; 
}