* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('beach.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #ffffff;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 600px;
    padding: 20px;
}


/* Logo Image Styling */
.logo-img {
    width: 400px;           /* Adjust size as needed */
    height: auto;          /* Maintains image proportions */
    margin-bottom: 1px;   /* Spacing between image and title */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2)); /* Gives it a subtle lift against the glass */
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.logo {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Countdown Timer Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.time-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 15px;
    border-radius: 12px;
    min-width: 70px;
    display: flex;
    flex-direction: column;
}

.time-box span {
    font-size: 1.5rem;
    font-weight: 600;
}

.time-box small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cccccc;
}

/* Subscription Form */
.notify-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.notify-form input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: none;
    font-size: 0.95rem;
}

.notify-form input::placeholder {
    color: #ddd;
}

.notify-form button {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notify-form button:hover {
    background: #e0e0e0;
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 15px;
}

.lang-switcher button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
}

.lang-switcher button.active {
    background: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* Mobile Responsiveness */
@media(max-width: 480px) {
    .notify-form {
        flex-direction: column;
    }
    .logo {
        font-size: 2rem;
    }
}