:root {
    --bg-color: #17151a;
    --text-primary: #ffffff;
    --text-secondary: #6e6b77;
    --accent-glow: #e88ba9;
    --accent-glow-secondary: #665282;
    --input-bg: #110e14;
    --btn-bg: #292635;
    --btn-hover: #3d394e;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.header {
    padding: 30px 40px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.logo {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

/* Eclipse Effect */
.eclipse-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 400px;
    height: 400px;
    z-index: -1;
    pointer-events: none;
}

.eclipse {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 0%, #1d1824 0%, var(--bg-color) 60%);
    box-shadow: 
        0 -15px 50px rgba(232, 139, 169, 0.15),
        0 -40px 100px rgba(232, 139, 169, 0.1),
        0 -5px 25px rgba(102, 82, 130, 0.3);
    position: relative;
}

.eclipse::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 10%;
    width: 80%;
    height: 10px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 139, 169, 0.8) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.8;
}

.title {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 12px;
    margin-bottom: 80px;
    text-transform: uppercase;
    z-index: 2;
}

.notification-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
    margin-top: 20px;
}

.subtitle {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.notify-form {
    display: flex;
    background-color: var(--input-bg);
    border-radius: 30px;
    padding: 5px;
    width: 400px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    outline: none;
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.notify-btn {
    background-color: var(--btn-bg);
    color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background-color: var(--btn-hover);
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .eclipse-container {
        width: 300px;
        height: 300px;
    }
    .title {
        font-size: 18px;
        letter-spacing: 8px;
    }
    .notify-form {
        width: 320px;
    }
}
