:root {
    --bg-color: #0a0b10;
    --accent-color: #00d2ff;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

/* Logo Styling */
.logo {
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(0, 210, 255, 0.3);
}

p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Styling */
.notify-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 450px;
    margin: 0 auto;
}

input {
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    flex: 1;
    outline: none;
}

button {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

button:hover {
    transform: scale(1.05);
}

/* Background Decoration */
.bg-blur {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.socials {
    margin-bottom: 1rem;
}

.socials span {
    margin: 0 10px;
    cursor: pointer;
    transition: color 0.3s;
}

.socials span:hover {
    color: var(--accent-color);
}