/* ==========================================================================
   RocketPlay AU — Shared stylesheet
   ========================================================================== */

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

:root {
  --bg-space:       #05071a;
  --bg-space-2:     #0a0f2e;
  --bg-panel:       rgba(15, 22, 54, 0.72);
  --bg-panel-solid: #0f1636;
  --border-neon:    rgba(34, 211, 238, 0.35);
  --text-main:      #e7ecff;
  --text-mute:      #98a0c8;
  --accent-orange:  #ff6b1a;
  --accent-orange-2:#ffb100;
  --accent-cyan:    #22d3ee;
  --accent-magenta: #ec4899;
  --danger:         #ef4444;
  --success:        #22c55e;
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      22px;
  --shadow-neon:    0 0 28px rgba(255, 107, 26, 0.45), 0 0 60px rgba(34, 211, 238, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-space);
  color: var(--text-main);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Starfield */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, #fff, transparent),
    radial-gradient(1px 1px at 60% 70%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 40% 90%, #22d3ee, transparent),
    radial-gradient(1px 1px at 80% 10%, #fff, transparent),
    radial-gradient(1px 1px at 10% 60%, #ff6b1a, transparent),
    radial-gradient(1.5px 1.5px at 90% 40%, #fff, transparent),
    radial-gradient(1px 1px at 30% 50%, #fff, transparent),
    radial-gradient(2px 2px at 70% 20%, #ffb100, transparent);
  background-size: 250px 250px;
  background-repeat: repeat;
  opacity: 0.6;
  z-index: -2;
  animation: stars 120s linear infinite;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(255, 107, 26, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 80% at 85% 90%, rgba(34, 211, 238, 0.15), transparent 60%),
    linear-gradient(180deg, #05071a 0%, #0a0f2e 50%, #05071a 100%);
  z-index: -1;
}

@keyframes stars {
  from { transform: translateY(0); }
  to   { transform: translateY(-250px); }
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: 'Russo One', sans-serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
}

h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin: 2rem 0 1rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin: 1.5rem 0 0.75rem; }
h4 { font-size: 1.05rem; margin: 1rem 0 0.5rem; color: var(--accent-cyan); }

p { margin-bottom: 1rem; color: var(--text-main); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 26, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Russo One', sans-serif;
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.logo-rocket {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-2) 100%);
  clip-path: polygon(50% 0%, 100% 60%, 85% 100%, 15% 100%, 0% 60%);
  box-shadow: 0 0 18px rgba(255, 107, 26, 0.7);
  animation: rocket-pulse 2.4s ease-in-out infinite;
}

@keyframes rocket-pulse {
  0%, 100% { transform: translateY(0) rotate(0); box-shadow: 0 0 18px rgba(255, 107, 26, 0.7); }
  50%      { transform: translateY(-3px) rotate(5deg); box-shadow: 0 0 28px rgba(255, 107, 26, 1); }
}

.logo span { color: var(--accent-cyan); }

.nav-links {
  display: flex;
  gap: 0.3rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  padding: 0.5rem 0.9rem;
  color: var(--text-main);
  font-size: 0.93rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all .2s;
}

.nav-links a:hover, .nav-links a.active {
  background: rgba(34, 211, 238, 0.12);
  color: var(--accent-cyan);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  color: #05071a !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 16px rgba(255, 107, 26, 0.5);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 107, 26, 0.8) !important;
  color: #05071a !important;
  background: linear-gradient(135deg, var(--accent-orange-2), var(--accent-orange)) !important;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.burger span {
  width: 26px;
  height: 2.5px;
  background: var(--accent-cyan);
  border-radius: 2px;
  transition: all .3s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-family: 'Russo One', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  text-align: center;
  transition: all .25s;
  border: none;
  color: #fff;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-2) 100%);
  color: #05071a;
  box-shadow: 0 0 24px rgba(255, 107, 26, 0.6), inset 0 0 12px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left .6s;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(255, 107, 26, 0.9), inset 0 0 20px rgba(255, 255, 255, 0.3);
  color: #05071a;
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-ghost:hover {
  background: var(--accent-cyan);
  color: #05071a;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.7);
}

.btn-xl { padding: 1.2rem 2.8rem; font-size: 1.15rem; }

/* ----- Hero ----- */
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--accent-cyan);
  border-radius: 999px;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  background: linear-gradient(135deg, #fff 0%, var(--accent-cyan) 50%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-mute);
  max-width: 720px;
  margin: 0 auto 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- Bonus callout ----- */
.bonus-callout {
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.15), rgba(34, 211, 238, 0.08));
  border: 1px solid var(--accent-orange);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 780px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-callout::after {
  content: '🚀';
  position: absolute;
  top: -22px; right: -22px;
  font-size: 6rem;
  opacity: 0.1;
  transform: rotate(25deg);
}

.bonus-amount {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin: 0.5rem 0;
}

/* ----- Sections / Panels ----- */
main { padding-bottom: 4rem; }

section { padding: 2rem 0; }

.panel {
  background: var(--bg-panel);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

/* ----- Grid cards ----- */
.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--bg-panel);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all .25s;
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: 0 6px 30px rgba(34, 211, 238, 0.25);
}

.card h3 { color: #fff; margin-top: 0; }

.card .tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.tag-hot   { background: rgba(255, 107, 26, 0.18); color: var(--accent-orange); border: 1px solid var(--accent-orange); }
.tag-new   { background: rgba(34, 211, 238, 0.15); color: var(--accent-cyan); border: 1px solid var(--accent-cyan); }
.tag-top   { background: rgba(255, 177, 0, 0.15); color: var(--accent-orange-2); border: 1px solid var(--accent-orange-2); }

/* ----- Slots grid ----- */
.slot-card {
  background: var(--bg-panel);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}

.slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
  box-shadow: 0 6px 30px rgba(255, 107, 26, 0.3);
}

.slot-thumb {
  height: 160px;
  background: linear-gradient(135deg, #1a2250, #0a0f2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Russo One', sans-serif;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.slot-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 26, 0.25), transparent 70%);
}

.slot-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.slot-body h3 { font-size: 1.1rem; margin: 0 0 0.5rem; }

.slot-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.slot-meta strong { color: var(--accent-cyan); }

.slot-body p { font-size: 0.92rem; color: var(--text-mute); margin-bottom: 1rem; flex: 1; }

.slot-body .btn {
  align-self: flex-start;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* ----- Tables ----- */
.tbl-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius-md); }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-panel-solid);
  min-width: 520px;
}

th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

th {
  background: rgba(34, 211, 238, 0.08);
  color: var(--accent-cyan);
  font-family: 'Russo One', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

tr:hover td { background: rgba(255, 107, 26, 0.05); }

td strong { color: var(--accent-orange-2); }

/* ----- Lists ----- */
ul.features, ol.steps {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

ul.features li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  border-bottom: 1px dashed rgba(255,255,255,0.07);
}

ul.features li::before {
  content: '▸';
  position: absolute;
  left: 0.5rem;
  color: var(--accent-orange);
  font-size: 1.2rem;
  top: 0.4rem;
}

ol.steps {
  counter-reset: step;
}

ol.steps li {
  counter-increment: step;
  padding: 0.8rem 0 0.8rem 3rem;
  position: relative;
  border-bottom: 1px dashed rgba(255,255,255,0.07);
}

ol.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  color: #05071a;
  font-family: 'Russo One', sans-serif;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ----- FAQ ----- */
.faq-item {
  background: var(--bg-panel);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  color: var(--accent-orange);
  font-size: 1.8rem;
  transition: transform .25s;
  font-family: 'Russo One', sans-serif;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { background: rgba(34, 211, 238, 0.06); }

.faq-item .faq-body {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-mute);
}

/* ----- Forms (login / registration) ----- */
.auth-wrap {
  max-width: 480px;
  margin: 2rem auto;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row { display: flex; flex-direction: column; gap: 0.4rem; }

label {
  font-size: 0.85rem;
  color: var(--text-mute);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

input, select {
  background: rgba(5, 7, 26, 0.7);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--text-main);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

input:focus, select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.18);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-mute);
  text-align: center;
  margin-top: 1rem;
}

/* ----- Pager / breadcrumbs ----- */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin: 1rem 0 1.5rem;
}

.breadcrumbs a { color: var(--accent-cyan); }
.breadcrumbs span { margin: 0 0.4rem; }

/* ----- Promo code copy ----- */
.promo-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 2px dashed var(--accent-orange);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 107, 26, 0.08);
  margin: 0.5rem 0;
}

.promo-box code {
  padding: 0.6rem 1.2rem;
  font-family: 'Russo One', monospace;
  font-size: 1.15rem;
  color: var(--accent-orange-2);
  letter-spacing: 2px;
}

.promo-box button {
  padding: 0.6rem 1rem;
  background: var(--accent-orange);
  border: none;
  color: #05071a;
  font-family: 'Russo One', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  text-transform: uppercase;
}

/* ----- Footer ----- */
.site-footer {
  background: #030513;
  border-top: 1px solid rgba(34, 211, 238, 0.15);
  padding: 2.5rem 0 1rem;
  margin-top: 4rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--accent-cyan);
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
  letter-spacing: 1px;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { color: var(--text-mute); }
.footer-grid a:hover { color: var(--accent-orange); }

.site-footer .copy {
  text-align: center;
  color: var(--text-mute);
  font-size: 0.82rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--danger);
  border-radius: 50%;
  color: var(--danger);
  font-family: 'Russo One', sans-serif;
  font-size: 0.9rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.disclaimer { max-width: 820px; margin: 0 auto; text-align: center; color: var(--text-mute); font-size: 0.78rem; }

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5, 7, 26, 0.98);
    backdrop-filter: blur(14px);
    padding: 1rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform .3s;
    height: calc(100vh - 60px);
    border-top: 1px solid rgba(34, 211, 238, 0.2);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 0.9rem 1rem; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav-links li { width: 100%; }
  .nav-cta { margin-top: 0.75rem; text-align: center; }
  .hero { padding: 2.5rem 0 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .panel { padding: 1.2rem; }
  .card { padding: 1.2rem; }
  .logo { font-size: 1.2rem; }
  .logo-rocket { width: 24px; height: 24px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  table { font-size: 0.88rem; }
  th, td { padding: 0.6rem 0.7rem; }
}

@media (max-width: 420px) {
  .container { padding: 0 0.9rem; }
  .bonus-callout { padding: 1.3rem; }
  .btn { padding: 0.8rem 1.4rem; font-size: 0.9rem; }
  .btn-xl { padding: 1rem 1.8rem; font-size: 1rem; }
}

/* ----- Utility ----- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.highlight { color: var(--accent-orange); font-weight: 700; }
.cyan { color: var(--accent-cyan); }
