:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
}

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

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

/* Background Animation */
.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vmax;
    height: 60vmax;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
    transition: all 0.3s ease-out;
}

.container {
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.logo {
    width: 180px;
    margin-bottom: 3rem;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

.title {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Form Styles */
.glass-form {
    display: flex;
    gap: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto 1.5rem;
    transition: border-color 0.3s ease;
}

.glass-form:focus-within {
    border-color: var(--accent-color);
}

.glass-form input {
    background: transparent;
    border: none;
    padding: 0 1.5rem;
    color: white;
    flex: 1;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.glass-form button {
    background: white;
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    font-family: inherit;
}

.glass-form button:hover {
    background: var(--accent-color);
    color: white;
}

.glass-form button:active {
    transform: scale(0.95);
}

.form-status {
    font-size: 0.9rem;
    height: 1.2rem;
    color: var(--accent-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: white;
    transform: translateY(-3px);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .glass-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .glass-form input {
        padding: 0.8rem;
        text-align: center;
    }
}
