:root {
    --va-bg: #020617;
    --va-bg-alt: #020817;
    --va-surface: #020817;
    --va-surface-alt: #02091b;
    --va-primary: #10b981;
    --va-primary-soft: rgba(16, 185, 129, 0.2);
    --va-accent: #fbbf24;
    --va-border: #1f2937;
    --va-text: #e5e7eb;
    --va-text-muted: #9ca3af;
    --va-radius-lg: 18px;
    --va-radius-sm: 999px;
    --va-shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.6);
}

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

body.va-body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top, #0b1120 0, #020617 60%, #020617 100%);
    color: var(--va-text);
}

a {
    color: inherit;
    text-decoration: none;
}

.va-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */

.va-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.6));
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.va-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.va-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.va-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.9);
}

.va-logo-text {
    display: flex;
    flex-direction: column;
}

.va-logo-name {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.va-logo-tagline {
    font-size: 0.75rem;
    color: var(--va-text-muted);
}

.va-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.va-nav-link {
    color: var(--va-text-muted);
    transition: color 0.15s ease, transform 0.15s ease;
}

.va-nav-link:hover {
    color: var(--va-text);
    transform: translateY(-1px);
}

.va-nav-btn {
    padding: 0.45rem 1.1rem;
    border-radius: var(--va-radius-sm);
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 0.9rem;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.va-nav-btn:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: var(--va-primary);
    transform: translateY(-1px);
}

/* Hero */

.va-hero {
    padding: 4.5rem 0 3.5rem;
}

.va-hero-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .va-hero-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
        align-items: center;
    }
}

.va-hero-copy h1 {
    font-size: clamp(2.2rem, 3vw, 2.9rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.va-highlight {
    color: var(--va-accent);
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}

.va-hero-copy p {
    color: var(--va-text-muted);
    max-width: 32rem;
}

.va-hero-actions {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.va-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border-radius: var(--va-radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
   	border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.va-btn-primary {
    background: linear-gradient(135deg, var(--va-primary), #22c55e);
    color: #052e16;
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
}

.va-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.45);
}

.va-btn-ghost {
    background: rgba(15, 23, 42, 0.7);
    color: var(--va-text);
    border-color: rgba(148, 163, 184, 0.5);
}

.va-btn-ghost:hover {
    border-color: var(--va-primary);
    background: rgba(15, 23, 42, 0.9);
}

.va-hero-meta {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--va-text-muted);
}

.va-hero-meta span {
    padding: 0.3rem 0.7rem;
    border-radius: var(--va-radius-sm);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(55, 65, 81, 0.8);
}

/* Hero side card */

.va-hero-card {
    position: relative;
}

.va-hero-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at 20% 0, rgba(16, 185, 129, 0.2), transparent 60%),
                radial-gradient(circle at 80% 100%, rgba(251, 191, 36, 0.18), transparent 60%);
    filter: blur(2px);
    opacity: 0.85;
}

.va-hero-card-inner {
    position: relative;
    background: radial-gradient(circle at top, #02091b 0, #020617 60%);
    border-radius: var(--va-radius-lg);
    padding: 1.7rem 1.6rem 1.8rem;
    border: 1px solid rgba(55, 65, 81, 0.9);
    box-shadow: var(--va-shadow-soft);
    overflow: hidden;
}

.va-chip-row {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
}

.va-chip {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: rgba(15, 23, 42, 0.95);
    color: var(--va-text-muted);
}

.va-chip-gold {
    border-color: rgba(251, 191, 36, 0.9);
    color: #fef3c7;
}

.va-balance-label {
    font-size: 0.75rem;
    color: var(--va-text-muted);
}

.va-balance-value {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.va-balance-unit {
    font-size: 0.9rem;
    color: var(--va-text-muted);
    margin-left: 0.25rem;
}

.va-balance-note {
    margin: 0.9rem 0 1.4rem;
    font-size: 0.8rem;
    color: var(--va-text-muted);
}

.va-btn-full {
    width: 100%;
    background: linear-gradient(135deg, var(--va-primary), #22c55e);
    color: #052e16;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}

/* Sections */

.va-section {
    padding: 3.5rem 0;
}

.va-section-alt {
    background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(15, 23, 42, 0.95);
}

.va-section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.va-section-lead {
    color: var(--va-text-muted);
    max-width: 32rem;
}

/* Games grid */

.va-game-grid {
    margin-top: 1.9rem;
    display: grid;
    gap: 1.2rem;
}

@media (min-width: 800px) {
    .va-game-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.va-game-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
    border-radius: 14px;
    padding: 1.1rem 1rem 1.2rem;
    border: 1px solid rgba(31, 41, 55, 0.9);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    font-size: 0.9rem;
    color: var(--va-text-muted);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.va-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(16, 185, 129, 0.7);
}

.va-game-label {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--va-text);
}

/* Columns & cards */

.va-columns {
    display: grid;
    gap: 1.8rem;
    align-items: flex-start;
}

@media (min-width: 800px) {
    .va-columns {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }
}

.va-card {
    background: rgba(15, 23, 42, 0.98);
    border-radius: var(--va-radius-lg);
    border: 1px solid rgba(31, 41, 55, 0.95);
    padding: 1.4rem 1.5rem;
    box-shadow: var(--va-shadow-soft);
    font-size: 0.9rem;
    color: var(--va-text-muted);
}

.va-small {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: var(--va-text-muted);
}

/* Steps */

.va-steps {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    font-size: 0.95rem;
    color: var(--va-text-muted);
}

.va-steps li {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 0.4rem;
}

.va-steps span {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(55, 65, 81, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Disclaimer */

.va-disclaimer strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--va-text);
}

/* Footer */

.va-footer {
    border-top: 1px solid rgba(15, 23, 42, 0.95);
    background: #020617;
    padding: 1.5rem 0 2rem;
    font-size: 0.8rem;
    color: var(--va-text-muted);
}

.va-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.va-footer-links {
    display: inline-flex;
    gap: 1rem;
}

.va-footer-links a {
    color: var(--va-text-muted);
}

.va-footer-links a:hover {
    color: var(--va-text);
}