
body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #e0e0e0 0%, #f8f8f8 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
}

.wip-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px #0002;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 420px;
    margin: auto;
}

.wip-icon {
    font-size: 4rem;
    color: #b00;
    margin-bottom: 1.2rem;
    animation: pulse 1.2s infinite alternate;
}

@keyframes pulse {
    to { color: #900; transform: scale(1.08); }
}

.wip-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #b00;
    letter-spacing: 1px;
}

.wip-text {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.wip-footer {
    font-size: 0.95rem;
    color: #888;
    margin-top: 2rem;
}
