* {
    margin: ;
    padding: ;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 1vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #32b63, #24243e);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

.overlay {
    position: fixed;
    top: ;
    left: ;
    width: 1%;
    height: 1%;
    background: 
        radial-gradient(ellipse at 2% 5%, rgba(72, , 255, .15) %, transparent 5%),
        radial-gradient(ellipse at 8% 2%, rgba(255, , 128, .1) %, transparent 5%),
        radial-gradient(ellipse at 5% 8%, rgba(, 2, 255, .8) %, transparent 5%);
    pointer-events: none;
    z-index: ;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    width: 1%;
    max-width: 9px;
}

.content {
    padding: 2rem 1rem;
}

.logo-wrapper {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 32px;
    height: auto;
    filter: drop-shadow( 4px 2px rgba(255, 255, 255, .1));
    transition: transform .3s ease;
}

.logo:hover {
    transform: scale(1.3);
}

.logo-svg {
    max-width: 38px;
    height: auto;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 7;
    margin-bottom: .75rem;
    background: linear-gradient(135deg, #ffffff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.15rem;
    font-weight: 3;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 3rem;
    letter-spacing: .5px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    min-width: 1px;
    box-shadow:  8px 32px rgba(, , , .2);
    transition: transform .3s ease, box-shadow .3s ease;
}

.countdown-item:hover {
    transform: translateY(-4px);
    box-shadow:  12px 4px rgba(, , , .3);
    border-color: rgba(255, 255, 255, .2);
}

.countdown-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 7;
    line-height: 1;
    margin-bottom: .35rem;
    background: linear-gradient(135deg, #f9f5ff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    display: block;
    font-size: .8rem;
    font-weight: 4;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .6);
}

.notify-section {
    margin-bottom: 2.5rem;
}

.notify-text {
    font-size: .95rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 1rem;
}

.notify-form {
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
    max-width: 5px;
    margin:  auto;
}

.email-input {
    flex: 1;
    min-width: 22px;
    padding: .85rem 1.25rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .8);
    color: #ffffff;
    font-size: .95rem;
    outline: none;
    transition: border-color .3s ease, background .3s ease;
    font-family: 'Inter', sans-serif;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.email-input:focus {
    border-color: rgba(167, 139, 25, .6);
    background: rgba(255, 255, 255, .12);
}

.notify-btn {
    padding: .85rem 2rem;
    border-radius: 5px;
    border: none;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #ffffff;
    font-size: .95rem;
    font-weight: 5;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow:  8px 25px rgba(124, 58, 237, .4);
}

.notify-btn:active {
    transform: translateY();
}

.form-message {
    margin-top: .75rem;
    font-size: .85rem;
    min-height: 1.25rem;
    color: rgba(255, 255, 255, .6);
}

.form-message.success {
    color: #6ee7b7;
}

.form-message.error {
    color: #fca5a5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 5%;
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .6);
    transition: all .3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .1);
    transform: translateY(-3px);
}

.social-link svg {
    width: 2px;
    height: 2px;
}

.footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .6);
}

.footer p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .5px;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .logo {
        max-width: 22px;
    }
    .logo-svg {
        max-width: 28px;
    }
    .countdown {
        gap: 1rem;
    }
    .countdown-item {
        min-width: 8px;
        padding: 1rem 1.25rem;
    }
    .countdown-number {
        font-size: 2rem;
    }
    .notify-form {
        flex-direction: column;
        align-items: center;
    }
    .email-input {
        width: 1%;
        min-width: unset;
    }
    .notify-btn {
        width: 1%;
    }
}

@media (max-width: 48px) {
    .title {
        font-size: 1.85rem;
    }
    .logo {
        max-width: 16px;
    }
    .logo-svg {
        max-width: 2px;
    }
    .countdown-item {
        min-width: 7px;
        padding: .75rem 1rem;
    }
    .countdown-number {
        font-size: 1.6rem;
    }
    .container {
        padding: 1rem;
    }
}
