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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: #ffeef8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
    overflow: hidden;
    position: relative;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: rgba(255, 107, 157, 0.3);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: rgba(255, 201, 60, 0.3);
    top: 15%;
    right: 10%;
    animation-delay: 1s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: rgba(78, 205, 196, 0.3);
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 157, 0.2);
    bottom: 15%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.maintenance-container {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    max-width: 550px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15);
    position: relative;
    z-index: 1;
}

.emoji-icon {
    font-size: 60px;
    margin-bottom: 25px;
}

.maintenance-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.maintenance-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 12px;
}

.maintenance-content a {
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 600;
}

.maintenance-content a:hover {
    text-decoration: underline;
}

.site-name {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 2px dashed #ffe0ec;
    font-size: 14px;
    color: #999;
}

@media (max-width: 480px) {
    .maintenance-container {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .emoji-icon {
        font-size: 48px;
    }

    .maintenance-content h1 {
        font-size: 24px;
    }

    .maintenance-content p {
        font-size: 15px;
    }
}
