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

:root {
    --gold: #d4af37;
    --gold-light: #f0c95c;
    --gold-dark: #a8842a;
    --dark: #0d1421;
    --dark-2: #131c2e;
    --dark-3: #1a2438;
    --text: #1a1a1a;
    --text-light: #555;
    --bg: #ffffff;
    --bg-alt: #f7f5f0;
    --border: #e5e1d8;
    --red: #c0392b;
    --green: #27ae60;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

a { color: var(--gold-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; color: var(--dark); }

/* Age warning top bar */
.age-warning-top {
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}
.age-warning-top span {
    background: #fff;
    color: var(--red);
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 800;
    margin-right: 6px;
}

/* Header */
.main-header {
    background: var(--dark);
    color: #fff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--gold);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 20px; }
.logo:hover { color: var(--gold); }
.logo-icon { font-size: 28px; }
.logo-text strong { color: var(--gold); }
.tld { color: var(--gold); font-size: 14px; }

.main-nav { display: flex; gap: 28px; }
.main-nav a { color: #e8e8e8; font-weight: 500; font-size: 15px; }
.main-nav a:hover { color: var(--gold); }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    color: #fff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.15), transparent 60%),
                radial-gradient(circle at 80% 30%, rgba(212,175,55,0.1), transparent 60%);
    pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    color: var(--gold-light);
    border: 1px solid rgba(212,175,55,0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.hero h1 .highlight { color: var(--gold); }

.hero-sub {
    font-size: 18px;
    max-width: 780px;
    margin: 0 auto 36px;
    color: #cfd3db;
}

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all .2s;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--dark); transform: translateY(-2px); }
.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 700px;
    margin: 0 auto;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: #cfd3db; font-size: 14px; }
.trust-icon {
    background: var(--green);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* Info strip */
.info-strip {
    background: var(--dark-2);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.info-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}
.info-num { color: var(--gold); font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.info-label { color: #cfd3db; font-size: 14px; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #e8e8e8; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 50px; }
.eyebrow {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.eyebrow-light { color: var(--gold); }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.section-dark .section-head h2 { color: #fff; }
.lead { font-size: 17px; color: var(--text-light); }
.section-dark .lead { color: #cfd3db; }

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.card-icon { font-size: 36px; margin-bottom: 16px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 15px; }

/* Notice */
.notice {
    padding: 20px 24px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    background: #fff8e7;
    color: #5c4a16;
    font-size: 15px;
    line-height: 1.6;
}
.notice-info { border-left-color: var(--red); background: #fdecea; color: #6b1e16; }

/* Coming soon */
.coming-soon {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
.coming-soon-icon { font-size: 56px; margin-bottom: 16px; }
.coming-soon h3 { font-size: 24px; margin-bottom: 16px; }
.coming-soon > p { color: var(--text-light); max-width: 640px; margin: 0 auto 32px; }

.criteria {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 28px;
    text-align: left;
    max-width: 540px;
    margin: 0 auto;
}
.criteria h4 { font-size: 16px; margin-bottom: 16px; text-align: center; }
.criteria-list { list-style: none; display: grid; gap: 10px; }
.criteria-list li { font-size: 15px; color: var(--text); }

/* Responsible gambling */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-bottom: 50px;
}
.resp-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 26px;
    border-radius: 8px;
}
.resp-item h4 { font-size: 17px; margin-bottom: 10px; color: var(--gold-light); }
.resp-item p { color: #cfd3db; font-size: 15px; }

.help-box {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}
.help-box h3 { color: var(--dark); font-size: 24px; margin-bottom: 10px; }
.help-box > p { color: #3a2d0c; margin-bottom: 24px; font-weight: 500; }

.help-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}
.help-contact {
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 8px;
}
.help-contact strong { display: block; color: var(--dark); margin-bottom: 6px; }
.help-contact a { color: var(--dark); font-weight: 600; }
.help-number { display: block; font-size: 24px; font-weight: 800; color: var(--red); margin: 4px 0; }
.help-contact small { color: var(--text-light); font-size: 12px; }

/* About */
.about-content { max-width: 780px; margin: 0 auto; font-size: 16px; color: var(--text-light); }
.about-content p { margin-bottom: 16px; }
.about-content strong { color: var(--text); }

/* Footer */
.main-footer {
    background: #0a0f1a;
    color: #a0a8b8;
    padding: 60px 0 24px;
    border-top: 2px solid var(--gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.logo-footer { color: #fff; margin-bottom: 12px; font-size: 18px; }
.footer-col h5 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a { color: #a0a8b8; font-size: 14px; }
.footer-col a:hover { color: var(--gold); }

.footer-disclaimer {
    background: rgba(192,57,43,0.1);
    border: 1px solid rgba(192,57,43,0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #cfd3db;
}
.footer-disclaimer p { margin-bottom: 8px; }
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer strong { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}
.age-badge {
    background: var(--red);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hero { padding: 50px 0 70px; }
    .section { padding: 56px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .coming-soon { padding: 32px 20px; }
    .help-box { padding: 28px 20px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-trust { gap: 18px; }
}
