/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.coming-soon img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.coming-soon h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.coming-soon p {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.back-btn {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #0072ff;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.back-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

header .logo img {
    width: 140px;
    height: auto;
    margin-bottom: 15px;
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 0 5px #8f94fb);
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 25px #ff5e62);
        transform: scale(1.08);
    }
    100% {
        filter: drop-shadow(0 0 5px #8f94fb);
        transform: scale(1);
    }
}
