* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gradientBG 15s ease infinite;
    background-size: 400% 400%;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 90%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

.title {
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.info {
    margin: 2rem 0;
}

.domain {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.icp {
    font-size: 1rem;
    color: #888;
    animation: slideIn 1s ease;
    transition: all 0.3s ease;
}

.footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #666;
}

.time {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #999;
}

.visitor-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.visitor-info:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

.ip {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.icp a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icp a:hover {
    color: #333;
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2rem;
    }
}

.welcome-message {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.welcome-message p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
    animation: fadeIn 1s ease;
}

#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
} 