/* =========================================================================
   RocketPlay AU — Stylesheet
   Fonts: Unbounded (display) + Manrope (body)
   Theme: Deep space navy + magenta + gold + cyan
   ========================================================================= */

:root {
    --bg: #07071a;
    --bg-alt: #0f0f2e;
    --bg-card: #14143b;
    --border: #2a2a5a;
    --text: #f1f5f9;
    --text-dim: #a1a1c2;
    --accent: #ff2d7a;
    --accent-hover: #ff5494;
    --gold: #ffd93d;
    --cyan: #22d3ee;
    --purple: #8b5cf6;
    --radius: 14px;
    --radius-lg: 22px;
    --container: 1180px;
    --font-display: "Unbounded", "Segoe UI", sans-serif;
    --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255,45,122,0.18), transparent 60%),
        radial-gradient(ellipse 70% 40% at 80% 10%, rgba(34,211,238,0.12), transparent 60%),
        radial-gradient(ellipse 60% 60% at 50% 100%, rgba(139,92,246,0.12), transparent 60%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Subtle grain texture overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--cyan); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: .6rem; }
h4 { font-size: 1.1rem; margin-bottom: .5rem; }
p  { margin-bottom: 1rem; color: var(--text-dim); }
p strong { color: var(--text); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }

/* Highlights */
.brand-highlight { color: var(--accent); font-weight: 700; }
.gold { color: var(--gold); }

/* =========================================================================
   Header / Nav
   ========================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 7, 26, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
}
.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo span { color: var(--accent); }
.logo-icon {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 8px;
    font-size: 16px;
}
.nav-links { display: none; gap: 28px; list-style: none; }
.nav-links a {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }

.mobile-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 42px; height: 42px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 14px 20px 20px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--text-dim);
    font-weight: 500;
}
.mobile-menu a:last-of-type { border-bottom: none; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b35 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(255,45,122,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255,45,122,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #ff9f1c);
    color: #1a1a2e;
    box-shadow: 0 8px 24px rgba(255,217,61,0.3);
}
.btn-gold:hover { color: #1a1a2e; transform: translateY(-2px); }
.btn-xl { padding: 18px 40px; font-size: 1.05rem; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,45,122,0.12);
    border: 1px solid rgba(255,45,122,0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lede { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 28px; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
}
.hero-stat span { font-size: 0.8rem; color: var(--text-dim); }

.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,45,122,0.5), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(34,211,238,0.4), transparent 50%),
        linear-gradient(135deg, var(--bg-card), var(--bg-alt));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    overflow: hidden;
}
.hero-visual::after {
    content: "🚀";
    font-size: clamp(6rem, 18vw, 10rem);
    filter: drop-shadow(0 0 40px rgba(255,45,122,0.6));
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50%      { transform: translateY(-16px) rotate(-12deg); }
}

/* =========================================================================
   Bonus strip
   ========================================================================= */
.bonus-strip {
    background: linear-gradient(90deg, var(--accent) 0%, #ff6b35 50%, var(--gold) 100%);
    padding: 18px 0;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
}
.bonus-strip a { color: #1a1a2e; text-decoration: underline; }

/* =========================================================================
   Section
   ========================================================================= */
section { padding: 64px 0; position: relative; }
.section-header { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-header .eyebrow {
    display: inline-block;
    color: var(--cyan);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

/* =========================================================================
   Cards grid
   ========================================================================= */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.card {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-alt) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card .icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(255,45,122,0.2), rgba(34,211,238,0.15));
    border: 1px solid var(--border);
    font-size: 24px;
    margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; }

/* Game / slot grid */
.slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.slot-card {
    aspect-ratio: 3/4;
    background: linear-gradient(180deg, var(--bg-card), var(--bg-alt));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform .2s, border-color .2s;
}
.slot-card::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(255,217,61,0.18), transparent 60%),
        linear-gradient(180deg, rgba(7,7,26,0) 40%, rgba(7,7,26,0.95) 100%);
    z-index: 1;
}
.slot-card .slot-emoji {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 20px rgba(255,45,122,0.4));
    z-index: 0;
}
.slot-card h4 { position: relative; z-index: 2; color: var(--text); font-family: var(--font-display); font-size: 0.95rem; }
.slot-card .rtp { position: relative; z-index: 2; color: var(--gold); font-size: 0.82rem; font-weight: 600; }
.slot-card:hover { transform: translateY(-4px); border-color: var(--accent); }

/* =========================================================================
   Two-column section (text + image/promo box)
   ========================================================================= */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}
.split .visual {
    aspect-ratio: 4/5;
    background:
        radial-gradient(circle at 50% 30%, rgba(255,217,61,0.25), transparent 60%),
        linear-gradient(180deg, var(--bg-card), var(--bg-alt));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(4rem, 14vw, 7rem);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* =========================================================================
   Table
   ========================================================================= */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; min-width: 520px; }
th, td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}
th {
    background: var(--bg-alt);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
td { color: var(--text-dim); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); color: var(--text); }

/* =========================================================================
   FAQ accordion
   ========================================================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform .25s ease;
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 22px 20px; color: var(--text-dim); }

/* =========================================================================
   CTA band
   ========================================================================= */
.cta-band {
    background:
        radial-gradient(ellipse at top left, rgba(255,45,122,0.25), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(34,211,238,0.2), transparent 50%),
        var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { max-width: 580px; margin: 0 auto 24px; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
    background: #04041a;
    padding: 56px 0 24px;
    margin-top: 64px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
}
.footer-col h5 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-dim); font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { font-size: 0.92rem; }
.footer-disclaimer {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-dim);
    text-align: center;
    line-height: 1.7;
}
.footer-disclaimer strong { color: var(--gold); }
.licence-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin: 18px 0;
    opacity: 0.6;
    font-size: 0.78rem;
    color: var(--text-dim);
}
.licence-badge {
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* =========================================================================
   Utility
   ========================================================================= */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 2rem; }
ul.bullets { list-style: none; padding: 0; }
ul.bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--text-dim);
}
ul.bullets li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */
@media (min-width: 640px) {
    .slot-grid { grid-template-columns: repeat(3, 1fr); }
    .card-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .hero-stats { gap: 22px; }
}

@media (min-width: 860px) {
    .nav-links { display: flex; }
    .mobile-toggle { display: none; }
    .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 60px; }
    .split { grid-template-columns: 1fr 1fr; gap: 60px; }
    .card-grid { grid-template-columns: repeat(3, 1fr); }
    .slot-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    section { padding: 80px 0; }
    .hero { padding: 80px 0 72px; }
}

@media (min-width: 1100px) {
    .hero h1 { font-size: 4rem; }
}
