@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;700;800&display=swap');

:root {
    --primary: #00e5ff;
    --primary-dark: #00b3cc;
    --primary-glow: rgba(0, 229, 255, 0.4);
    --bg-dark: #050505;
    --card-bg: rgba(18, 18, 18, 0.75);
    --text-muted: #8892b0;
    --border-color: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.bg-orb {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, rgba(5, 5, 5, 0) 60%);
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 440px;
    z-index: 10;
    padding: 2rem 0;
}

.brand {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    text-align: center;
    opacity: 0.9;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
    position: relative;
    text-align: center;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.svg-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    color: var(--primary);
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--primary-glow);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.svg-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Button */
.btn-primary {
    display: block;
    width: 100%;
    padding: 1.1rem;
    background: var(--primary);
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px var(--primary-glow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px var(--primary-glow);
    background: var(--primary-dark);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader {
    width: 64px;
    height: 64px;
    border: 3px solid rgba(0, 229, 255, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem auto;
    box-shadow: 0 0 20px var(--primary-glow);
}
