* {
    box-sizing: border-box;
}

:root {
    --gold: #f4c84a;
    --gold-strong: #ffda6a;
    --green: #0f7a4c;
    --green-dark: #0a4c31;
    --ink: #08130f;
    --card: rgba(7, 16, 13, 0.82);
    --text: #f5f7f4;
    --muted: #c8d4cc;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 218, 106, 0.12), transparent 30%),
        linear-gradient(rgba(4, 12, 10, 0.62), rgba(4, 12, 10, 0.84)),
        url('hero-gamblechief-za.webp') center/cover no-repeat fixed,
        linear-gradient(135deg, #081f17 0%, #0f7a4c 45%, #d5a11e 100%);
}

.page-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 14px;
}

.hero-card {
    width: min(980px, 100%);
    background: var(--card);
    border: 1px solid rgba(244, 200, 74, 0.2);
    border-radius: 24px;
    padding: 34px 34px 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(6px);
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.brand-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(8, 30, 22, 0.98), rgba(12, 61, 43, 0.95));
    color: var(--gold-strong);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    border: 1px solid rgba(244, 200, 74, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}

.brand-tag {
    font-size: 0.88rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(244, 200, 74, 0.15);
    color: var(--gold-strong);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 10px;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.02;
    color: var(--gold-strong);
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.lead {
    margin: 0 0 22px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--muted);
}

.seo-copy p,
.contact-note {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.72;
    color: var(--text);
}

a[href^="mailto:"] {
    color: var(--gold-strong);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 218, 106, 0.45);
}

a[href^="mailto:"]:hover {
    color: #fff3bf;
    border-bottom-color: rgba(255, 243, 191, 0.7);
}

@media (max-width: 760px) {
    .hero-card {
        padding: 24px 18px 20px;
    }

    .brand-lockup {
        gap: 12px;
    }

    .brand-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}