/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: linear-gradient(180deg, #071426, #0d1b33 60%, #071426);
    color: #e4ecf7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* MAIN CONTAINER */
.container {
    max-width: 600px;
    padding: 20px;
}

/* LOGO IMAGE */
.logo img {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
}

/* TITLE */
.title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #8ecaff; /* light blue you asked for */
    text-shadow: 0 0 12px rgba(120, 180, 255, 0.4);
}

/* GLOWING PULSE LINE */
.pulse-line {
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4fc3ff, transparent);
    margin: 25px auto;
    filter: drop-shadow(0 0 8px #4fc3ff);
}

/* SUBTITLE */
.subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

/* COMING SOON */
.coming-soon {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #a9d7ff;
}

/* CONTACT BUTTON */
.contact-btn {
    display: inline-block;
    background: #4fc3ff;
    color: #071426;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(79,195,255,0.6);
    transition: 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(79,195,255,0.9);
}
