css
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: #f3f4f6;
}

.coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 32px;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #374151;
    max-width: 600px;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.btn {
    padding: 12px 20px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-primary {
    background: #3b82f6;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    background: #6b7280;
}

.btn-secondary:hover {
    background: #4b5563;
}

@media (max-width: 600px) {
    h1 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

