body {
    margin: 0;
    background: url('photoes/moonpicture.png') center/cover no-repeat;
    color: white;
    transition: 0.4s;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}


/* overlay */

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
    backdrop-filter: blur(2px);
}


/* dark mode */

.dark .overlay {
    background: rgba(0, 0, 0, 0.6);
}


/* header */

.header {
    margin-top: 70px;
}

.header h2 {
    font-size: 42px;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.header p {
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}


/* typing */

#text {
    direction: ltr;
    display: inline-block;
    color: #dbe8ff;
    font-weight: bold;
    margin-right: 8px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}


/* countdown */

.countdown div {
    border: 2px solid rgba(255, 255, 255, 0.35);
    padding: 15px;
    width: 110px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.countdown h3 {
    font-size: 35px;
}


/* social */

.social-links a {
    color: white;
    font-size: 22px;
    margin: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}


/* glass */

.glass-side,
.glass-form {
    background: rgba(255, 255, 255, 0.09);
    border-top: 4px solid rgba(255, 255, 255, 0.2);
    border-bottom: 4px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    height: 530px;
    backdrop-filter: blur(12px);
    border-radius: 18px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}


/* info */

.info-card {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-card i {
    font-size: 22px;
    color: #7ab8ff;
}


/* input */

.custom-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    color: black;
    transition: 0.3s;
    margin-top: 10px;
    border-radius: 10px;
}

.custom-input:focus {
    border: 2px solid #7ab8ff;
    box-shadow: 0 0 15px rgba(122, 184, 255, 0.4);
    background: white;
    color: black;
}


/* button */

.send-btn {
    background: linear-gradient(135deg, #0d6efd, #4da3ff);
    border: none;
    padding: 12px 28px;
    color: white;
    border-radius: 10px;
    transition: 0.3s;
    margin-left: 225px;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
}

.send-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #084298, #0d6efd);
}


/* map */

.map-box iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
}


/* responsive */

@media(max-width:768px) {
    .header h2 {
        font-size: 28px;
    }
    .countdown {
        padding: 15px;
    }
    .countdown div {
        width: 90px;
    }
    .glass-side,
    .glass-form {
        height: auto;
    }
    .send-btn {
        margin-left: 0;
        width: 100%;
    }
}