/* Base styling */
body {
    margin: 0;
    font-family: 'Vazirmatn', sans-serif;
    background-color: #0E0E0E;
    color: #9D00FF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Centered wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Logo placeholder */
.logo {
    width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    max-width: 100%;
    max-height: 100%;
}

/* Headings */
h1 {
    font-size: 2.2rem;
    color: #9D00FF;
    margin: 0;
}

.subtitle {
    font-size: 1rem;
    color: #aaa;
    margin: 0;
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00FF9F;
    margin-top: 1rem;
    animation: blink 1.5s infinite ease-in-out;
}

/* Minimal blink animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}