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

body {
    background: #09090d;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.orb-1 { width: 700px; height: 700px; background: rgba(38,169,224,0.12); top: -250px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: rgba(33,150,243,0.09); bottom: -200px; right: -150px; }

.card {
    position: relative;
    z-index: 1;
    width: min(460px, calc(100vw - 48px));
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 28px;
    padding: 40px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 24px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

.live {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,159,10,0.7);
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff9f0a;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

h1 {
    font-size: clamp(30px, 5vw, 42px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 48px;
}

h1 span {
    display: block;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.card-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.2);
    line-height: 1.5;
}

.card-bottom p a {
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    transition: color 0.2s;
}

.card-bottom p a:hover { color: rgba(255,255,255,0.7); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2ca5e0;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 11px 20px;
    border-radius: 980px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(44,165,224,0.35);
}

.btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 28px rgba(44,165,224,0.5);
}

.btn:active { transform: scale(0.97); }

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
