@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

:root {
    --wot-color-bg: #07131a;
    --wot-color-bg-soft: #0b1a23;
    --wot-color-surface: rgba(11, 25, 35, 0.76);
    --wot-color-surface-strong: rgba(9, 18, 27, 0.9);
    --wot-color-surface-alt: rgba(255, 255, 255, 0.04);
    --wot-color-border: rgba(255, 255, 255, 0.12);
    --wot-color-border-strong: rgba(212, 160, 23, 0.24);
    --wot-color-text: #f4f7fb;
    --wot-color-text-muted: rgba(228, 233, 240, 0.72);
    --wot-color-primary: #d4a017;
    --wot-color-primary-strong: #f0c34b;
    --wot-color-primary-soft: rgba(212, 160, 23, 0.14);
    --wot-color-success: #22c55e;
    --wot-color-danger: #ef4444;
    --wot-color-warning: #f59e0b;
    --wot-color-info: #38bdf8;

    --wot-font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --wot-size-12: 12px;
    --wot-size-14: 14px;
    --wot-size-16: 16px;
    --wot-size-20: 20px;
    --wot-size-24: 24px;

    --wot-space-1: 4px;
    --wot-space-2: 8px;
    --wot-space-3: 12px;
    --wot-space-4: 16px;
    --wot-space-5: 20px;
    --wot-space-6: 24px;
    --wot-space-8: 32px;

    --wot-radius-sm: 10px;
    --wot-radius-md: 14px;
    --wot-radius-lg: 18px;
    --wot-radius-xl: 24px;
    --wot-radius-pill: 999px;

    --wot-shadow-sm: 0 12px 30px rgba(3, 7, 11, 0.24);
    --wot-shadow-md: 0 20px 48px rgba(3, 7, 11, 0.38);
    --wot-shadow-lg: 0 28px 80px rgba(3, 7, 11, 0.6);
}

html {
    scroll-behavior: smooth;
}

:where(body, button, input, select, textarea) {
    font-family: var(--wot-font-family);
}

:where(button, input, select, textarea) {
    font-size: var(--wot-size-14);
}

.wot-surface {
    background: var(--wot-color-surface);
    border: 1px solid var(--wot-color-border);
    border-radius: var(--wot-radius-lg);
    box-shadow: var(--wot-shadow-sm);
    backdrop-filter: blur(18px);
}

.wot-surface-strong {
    background: var(--wot-color-surface-strong);
    border: 1px solid var(--wot-color-border);
    border-radius: var(--wot-radius-xl);
    box-shadow: var(--wot-shadow-md);
    backdrop-filter: blur(22px);
}

.wot-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--wot-space-2);
    padding: var(--wot-space-2) var(--wot-space-3);
    border-radius: var(--wot-radius-pill);
    border: 1px solid var(--wot-color-border);
    background: var(--wot-color-surface-alt);
    color: var(--wot-color-text-muted);
    font-size: var(--wot-size-12);
    font-weight: 500;
}

.wot-kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--wot-space-2);
    padding: var(--wot-space-2) var(--wot-space-3);
    border-radius: var(--wot-radius-pill);
    background: var(--wot-color-primary-soft);
    border: 1px solid var(--wot-color-border-strong);
    color: var(--wot-color-primary-strong);
    font-size: var(--wot-size-12);
    font-weight: 600;
}

.wot-btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--wot-space-2);
    padding: 10px 16px;
    border-radius: var(--wot-radius-md);
    border: 1px solid var(--wot-color-border);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.wot-btn:hover {
    transform: translateY(-1px);
}

.wot-btn--primary {
    background: linear-gradient(135deg, var(--wot-color-primary), var(--wot-color-primary-strong));
    color: #1d1202;
    border-color: transparent;
    box-shadow: 0 14px 32px rgba(212, 160, 23, 0.28);
}

.wot-btn--secondary {
    background: var(--wot-color-surface-alt);
    color: var(--wot-color-text);
}

.wot-note {
    color: var(--wot-color-text-muted);
    font-size: var(--wot-size-12);
    line-height: 1.6;
}
