/* Fugu casino – mobile-first, fast & colorful */
:root {
  --bg-dark: #0d0b14;
  --bg-card: #16121f;
  --bg-alt: #1a1625;
  --gold: #f0b429;
  --gold-light: #ffd54f;
  --cyan: #00e5cc;
  --magenta: #e040fb;
  --purple: #7c4dff;
  --white: #f5f3f8;
  --muted: #a89bb8;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--bg-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--gold-light);
}

.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 11, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 180, 41, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
}
.logo span {
  color: var(--gold);
}

.nav-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}
.header.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.header.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav {
  display: none;
  flex-direction: column;
  padding: 0 20px 16px;
  gap: 4px;
}
.header.nav-open .nav {
  display: flex;
}
.nav a {
  padding: 10px 12px;
  color: var(--muted);
  border-radius: var(--radius);
}
.nav a:hover {
  color: var(--gold);
  background: rgba(240, 180, 41, 0.1);
}

/* Hero */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(124, 77, 255, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(224, 64, 251, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse 70% 50% at 20% 60%, rgba(0, 229, 204, 0.15) 0%, transparent 45%),
    var(--bg-dark);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(240, 180, 41, 0.3);
}
.hero h1 span {
  color: var(--gold);
}

.hero-tagline {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e09a10 100%);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(240, 180, 41, 0.4);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(240, 180, 41, 0.5);
}

.btn-play {
  display: inline-block;
  margin-top: 14px;
  background: linear-gradient(135deg, var(--cyan) 0%, #00b8a3 100%);
  color: var(--bg-dark);
  box-shadow: 0 4px 24px rgba(0, 229, 204, 0.5);
}
.btn-play:hover {
  box-shadow: 0 6px 32px rgba(0, 229, 204, 0.6);
}

/* Sections */
.section {
  padding: 40px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: clamp(1.35rem, 5vw, 1.65rem);
  margin-bottom: 20px;
  color: var(--white);
}
.section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: 2px;
  margin-top: 10px;
}

.section p {
  margin-bottom: 14px;
  color: var(--muted);
}
.section p:last-of-type {
  margin-bottom: 0;
}

.section-sub {
  margin-top: 18px !important;
  color: var(--white) !important;
  font-weight: 600;
}

.list-check,
.list-dots {
  list-style: none;
  margin: 12px 0 20px;
}

.list-check li,
.list-dots li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--muted);
}
.list-check li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.7em;
}
.list-dots li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2em;
}

.section .btn {
  margin-top: 20px;
}

/* Footer */
.footer {
  padding: 32px 20px;
  background: var(--bg-card);
  border-top: 1px solid rgba(240, 180, 41, 0.15);
  text-align: center;
}

.footer-brand {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.footer-brand span {
  color: var(--gold);
}

.footer-license,
.footer-domain,
.footer-age {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.footer-age {
  margin-top: 12px;
  font-weight: 600;
  color: var(--gold);
}

/* Desktop */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    flex-direction: row;
    padding: 0 20px 12px;
    gap: 8px;
    justify-content: center;
  }

  .section {
    padding: 56px 0;
  }

  .container {
    padding: 0 24px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
