:root {
    --primary: #00d4ff;
    --secondary: #0055ff;
    --bg: #050505;
    --glass: rgba(255, 255, 255, 0.03);
    --text: #ffffff;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Fundal animat */
.background-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #050505 100%);
    z-index: -1;
}

.background-glow::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    filter: blur(150px);
    opacity: 0.2;
    animation: float 10s infinite alternate;
}

@keyframes float {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 50px); }
}

/* Cardul Central */
.container {
    z-index: 1;
    width: 90%;
    max-width: 800px;
    text-align: center;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    color: var(--text);
}

.logo span {
    color: var(--primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Badge Status */
.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.dot {
    height: 8px;
    width: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Formular Subscribe */
.subscribe-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
}

input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 15px;
    color: white;
    width: 100%;
    max-width: 300px;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
}

button {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

footer {
    position: absolute;
    bottom: 30px;
    font-size: 0.8rem;
    color: #555;
}