:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --bg: #0f172a;
    --text: #f8fafc;
    --text-muted: #94a3b8;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    background-color: var(--bg);
    background-image: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 560px;
    padding: 15px;
    box-sizing: border-box;
}

.card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.age-tag {
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 4px;
}

h1 {
    font-size: clamp(24px, 6vw, 36px); 
    margin: 0 0 20px 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    background: linear-gradient(to bottom, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-align: left;
}

p strong {
	color: #ffd644;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 15px;
}

.btn-primary { background-color: var(--primary); color: white; }
.btn-primary:hover { 
    background-color: var(--primary-hover); 
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.05); }

.footer-note {
    margin-top: 32px;
    font-size: 12px;
    color: var(--text-muted);
}

.promo-box {
    margin-top: 20px;
    padding: 12px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px dashed rgba(99, 102, 241, 0.4);
    border-radius: 12px;
    display: block;
}

.promo-code {
    display: block;
    margin-top: 8px;
    font-family: monospace;
    font-size: 14px;
    color: #a5b4fc;
    letter-spacing: 1px;
    font-weight: 700;
    word-break: break-all;
}