:root {
    --accent: #00ffcc;
    --bg-dark: #0a0a0a;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.mesh-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000 100%);
    z-index: -1;
}

.container {
    max-width: 600px;
    width: 90%;
    text-align: center;
}

.status-pill {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.domain-title {
    font-size: clamp(60px, 15vw, 120px);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.domain-title span { color: var(--accent); opacity: 0.7; }

.tagline { font-size: 24px; color: var(--text-muted); margin: 10px 0 30px; }

.description { font-size: 16px; line-height: 1.6; color: #888; margin-bottom: 40px; }

.offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.price { font-size: 40px; margin: 5px 0 25px; }
.label { color: var(--text-muted); text-transform: uppercase; font-size: 12px; }

.action-buttons { display: flex; flex-direction: column; gap: 15px; }

.btn-primary {
    background: var(--accent);
    color: #000;
    text-decoration: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-secondary {
    color: var(--text-white);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 12px;
}

.btn-primary:hover { transform: scale(1.02); filter: brightness(1.1); }

.benefits {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 11px;
    color: var(--text-muted);
}