:root {
    --bg-color: #f8fafc;
    --text-color: #1e293b;
    --accent: #2563eb;
    --glass: rgba(255, 255, 255, 0.7);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container { width: 100%; max-width: 500px; text-align: center; }

header h1 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }

.domain-name { font-size: 2.5rem; font-weight: 700; margin: 10px 0 30px; color: var(--accent); }

.badge {
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card h2 { margin-bottom: 10px; }
.card p { margin-bottom: 25px; font-size: 0.95rem; opacity: 0.8; }

.input-group { margin-bottom: 15px; }

input, textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: white;
    font-size: 1rem;
    outline: none;
}

input:focus, textarea:focus { border-color: var(--accent); }

textarea { height: 100px; resize: none; }

.btn {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 10px;
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }

footer { margin-top: 30px; font-size: 0.8rem; opacity: 0.5; }