/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background: #0f172a; /* Deep dark blue */
    background-image: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #94a3b8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.title span {
    color: #38bdf8; /* Accent Cyan color */
}

.description {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Form Styles */
.notify-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    outline: none;
    font-size: 1rem;
}

button {
    background: #38bdf8;
    color: #0f172a;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

button:hover {
    background: #7dd3fc;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #38bdf8;
    color: #0f172a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .title { font-size: 2.5rem; }
    .notify-form { flex-direction: column; border-radius: 15px; background: transparent; border: none; }
    input[type="email"] { background: rgba(255, 255, 255, 0.05); border-radius: 10px; margin-bottom: 10px; border: 1px solid rgba(255, 255, 255, 0.1); }
}