/* Global Styles */
:root {
    --bg-color: #030305;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-color: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.5);
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --transition-speed: 0.5s;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.container {
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    z-index: 10;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 50%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.section {
    display: none;
    opacity: 0;
    transform: scale(0.98) translateY(20px);
    transition: all var(--transition-speed) var(--ease-out);
}

.section.active {
    display: block;
    opacity: 1;
    transform: scale(1) translateY(0);
}

button {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
    transition: all 0.3s var(--ease-out);
}

button:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
}

button:active {
    transform: translateY(0);
}

/* Background elements */
.bg-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
}

.glow-1 {
    top: -20vh;
    left: -10vw;
}

.glow-2 {
    bottom: -20vh;
    right: -10vw;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.1) 0%, transparent 70%);
}