:root {
    --bg: #050505;
    --card-bg: rgba(20, 20, 20, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    --text: #f0f0f0;
    --text-dim: #666;
    --accent: #fff;
    --spotlight-size: 600px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: default;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 10;
}

.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(var(--spotlight-size) circle at var(--x, 50%) var(--y, 50%),
            rgba(255, 255, 255, 0.03),
            transparent 80%);
    pointer-events: none;
    z-index: 5;
    transition: background 0.1s;
}

.container {
    perspective: 1000px;
    z-index: 20;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 4rem;
    border-radius: 24px;
    width: 400px;
    position: relative;
    transition: transform 0.1s ease-out;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
}

.status-text {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    font-weight: 600;
}

.brand {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    background: linear-gradient(to bottom right, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.btn {
    color: #000;
    background: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, background 0.2s;
}

.btn:hover {
    background: #eaeaea;
    transform: translateY(-2px);
}

.link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.link:hover {
    color: var(--text);
}