/* Social Spins Master — sunburn_orange + ai_future_ui */

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

:root {
  --bg: #2a0e05;
  --surface: #3a1408;
  --text: #fff7ed;
  --muted: #fdba74;
  --primary: #f97316;
  --secondary: #fb7185;
  --accent: #facc15;
  --border: rgba(255, 247, 237, 0.14);
  --glow-primary: rgba(249, 115, 22, 0.45);
  --glow-accent: rgba(250, 204, 21, 0.35);
  --surface-lite: rgba(255, 247, 237, 0.06);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --font-display: 'Segoe UI', 'Helvetica Neue', 'Trebuchet MS', sans-serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Tahoma, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  background:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(249, 115, 22, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(251, 113, 133, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(250, 204, 21, 0.08), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* —— Top warning —— */
.warning-banner {
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary));
  color: #2a0e05;
  padding: 0.75rem 1.25rem;
  font-size: clamp(0.8125rem, 2.4vw, 0.9375rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
  position: relative;
  z-index: 100;
  text-wrap: balance;
}

/* —— Navbar —— */
.navbar {
  background: rgba(58, 20, 8, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 90;
}

.navbar__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.navbar__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--glow-primary));
}

.navbar__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navbar__brand span {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.6rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav-menu a:hover {
  color: var(--text);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #ea580c);
  color: #2a0e05;
  box-shadow: 0 0 24px var(--glow-primary);
}

.btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 32px var(--glow-primary), 0 0 12px var(--glow-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn--secondary {
  background: rgba(251, 113, 133, 0.15);
  color: var(--secondary);
  border-color: rgba(251, 113, 133, 0.35);
}

.btn--secondary:hover:not(:disabled) {
  background: rgba(251, 113, 133, 0.25);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 247, 237, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 237, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.9;
  }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: floatOrb 10s ease-in-out infinite;
}

.hero__orb--1 {
  width: 280px;
  height: 280px;
  background: var(--glow-primary);
  top: 10%;
  right: 8%;
}

.hero__orb--2 {
  width: 180px;
  height: 180px;
  background: rgba(251, 113, 133, 0.35);
  bottom: 15%;
  left: 5%;
  animation-delay: -3s;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  max-width: 720px;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 20px var(--glow-accent);
  animation: fadeUp 0.8s var(--ease) both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 20%, var(--primary) 70%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}

.hero__subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 540px;
  animation: fadeUp 1s var(--ease) 0.2s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 1.1s var(--ease) 0.3s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__panel {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(300px, 28vw);
  padding: 1.25rem;
  background: rgba(58, 20, 8, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.2), inset 0 1px 0 rgba(255, 247, 237, 0.08);
  backdrop-filter: blur(12px);
  z-index: 2;
  animation: panelFloat 6s ease-in-out infinite;
  display: none;
}

@media (min-width: 960px) {
  .hero__panel {
    display: block;
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(calc(-50% - 10px)) translateX(4px);
  }
}

.hero__panel-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.chat-feed {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.chat-bubble {
  padding: 0.65rem 0.85rem;
  border-radius: 12px 12px 12px 4px;
  background: var(--surface-lite);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  animation: chatIn 0.6s var(--ease) both;
}

.chat-bubble:nth-child(2) {
  animation-delay: 0.4s;
  border-radius: 12px 12px 4px 12px;
  align-self: flex-end;
  background: rgba(249, 115, 22, 0.12);
  color: var(--text);
}

.chat-bubble:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: linear-gradient(180deg, transparent, rgba(58, 20, 8, 0.55), transparent);
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

/* —— Rules —— */
.rules-block {
  background: rgba(58, 20, 8, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.08), inset 0 1px 0 rgba(255, 247, 237, 0.06);
  backdrop-filter: blur(8px);
}

.rules-block p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.rules-block p:last-child {
  margin-bottom: 0;
}

.rules-block strong {
  color: var(--text);
}

.rules-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

.rules-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface-lite);
  border: 1px solid var(--border);
  font-size: 1.25rem;
  color: var(--primary);
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.15);
}

/* —— Game —— */
.game-section {
  padding: 4.5rem 0 5rem;
}

.game-panel {
  background: rgba(58, 20, 8, 0.85);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.18), inset 0 0 40px rgba(250, 204, 21, 0.04);
  position: relative;
  overflow: hidden;
}

.game-panel::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--glow-primary), transparent 70%);
  pointer-events: none;
}

.slot-machine {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.slot-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.stat-box {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  padding: 0.9rem 1.1rem;
  background: var(--surface-lite);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.1);
}

.stat-box__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.stat-box__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 16px var(--glow-accent);
}

.reels {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #1a0804;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.45), 0 0 24px rgba(249, 115, 22, 0.2);
}

.reel {
  width: 88px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(180deg, #4a1c0c, #2a0e05);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 14px;
  color: var(--text);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}

.reel.spinning {
  animation: reelShake 0.08s linear infinite;
  box-shadow: 0 0 28px var(--glow-primary);
}

@keyframes reelShake {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.slot-result {
  min-height: 1.5em;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.slot-result.win {
  color: var(--accent);
  text-shadow: 0 0 12px var(--glow-accent);
}

.slot-result.lose {
  color: var(--secondary);
}

.slot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.paytable {
  width: 100%;
  max-width: 420px;
  margin-top: 0.5rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface-lite);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.paytable h3 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.65rem;
}

.paytable ul {
  display: grid;
  gap: 0.35rem;
}

.paytable li {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 247, 237, 0.06);
  padding-bottom: 0.3rem;
}

.paytable li:last-child {
  border-bottom: none;
}

/* —— Responsible tips —— */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.tip-card {
  padding: 1.35rem 1.4rem;
  background: rgba(58, 20, 8, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 32px rgba(249, 115, 22, 0.2);
}

.tip-card__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.15);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.85rem;
  box-shadow: 0 0 14px rgba(249, 115, 22, 0.25);
}

.tip-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.tip-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.tips-note {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: rgba(250, 204, 21, 0.06);
  color: var(--muted);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* —— Footer —— */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(26, 8, 4, 0.9);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

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

.footer__logo {
  display: inline-flex;
  margin-bottom: 0.85rem;
}

.footer__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer__brandtext {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 360px;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.25rem;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer__badges img {
  height: 52px;
  width: auto;
  opacity: 0.92;
  transition: opacity 0.25s, filter 0.25s;
}

.footer__badges a:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--glow-primary));
}

.footer__disclaimer {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-lite);
}

.footer__contact {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer__copy {
  color: rgba(253, 186, 116, 0.7);
  font-size: 0.8rem;
}

/* —— Age gate —— */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(20, 6, 2, 0.88);
  backdrop-filter: blur(10px);
}

.age-gate.active {
  display: flex;
}

.age-gate__box {
  width: min(420px, 100%);
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 0 50px rgba(249, 115, 22, 0.35);
  text-align: center;
  animation: fadeUp 0.45s var(--ease);
}

.age-gate__badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: #2a0e05;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 18px var(--glow-primary);
}

.age-gate__box h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
}

.age-gate__box p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.age-gate__note {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  font-size: 0.8rem !important;
}

/* —— Cookie banner —— */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 950;
  display: none;
  max-width: 640px;
  margin: 0 auto;
}

.cookie-banner.active {
  display: block;
  animation: fadeUp 0.4s var(--ease);
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(249, 115, 22, 0.2);
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* —— Responsive —— */
@media (max-width: 800px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 82vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    background: rgba(42, 14, 5, 0.98);
    border-left: 1px solid var(--border);
    transform: translateX(105%);
    transition: transform 0.35s var(--ease);
    z-index: 95;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .reel {
    width: 72px;
    height: 84px;
    font-size: 2rem;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 4rem;
  }
}

@media (max-width: 480px) {
  .reels {
    gap: 0.45rem;
    padding: 0.85rem;
  }

  .reel {
    width: 64px;
    height: 76px;
    font-size: 1.75rem;
  }

  .rules-block {
    padding: 1.35rem 1.15rem;
  }
}
