:root {
  --bg-primary: #020617;
  --bg-secondary: #0a0a0a;
  --gold-gradient: linear-gradient(135deg, #facc15, #f59e0b);
  --amber-gradient: linear-gradient(135deg, #fbbf24, #f97316);
  --gold-glow: rgba(250, 204, 21, 0.35);
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --gold-border: rgba(250, 204, 21, 0.3);
  --text-primary: #f8fafc;
  --text-secondary: #d4d4d8;
  --text-muted: #71717a;
  --gold-main: #facc15;
  --gold-dark: #f59e0b;
  --amber: #fbbf24;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ========================
   LAYOUT UTILITIES
======================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.text-center {
  text-align: center;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.divider-center {
  margin: 16px auto 24px;
}

/* ========================
   TYPOGRAPHY
======================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-main);
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0a0a0a;
  box-shadow: 0 0 0 0 rgba(250, 204, 21, 0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(250, 204, 21, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold-border);
  color: var(--gold-main);
  background: rgba(250, 204, 21, 0.05);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

/* ========================
   HEADER
======================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(2, 6, 23, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.logo-text span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: var(--surface);
}

.header-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger:hover {
  background: var(--surface);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Panel */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(2, 6, 23, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--text-primary);
  background: var(--surface);
  border-color: var(--border);
}

.mobile-nav-cta {
  width: 100%;
}

/* ========================
   HERO
======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(250, 204, 21, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 50%, rgba(249, 115, 22, 0.04) 0%, transparent 50%),
              var(--bg-primary);
}

.hero-streak {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0 60px;
}

.hero-label {
  margin-bottom: 16px;
}

.hero-headline {
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-legal::before {
  content: '⚠';
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hero-image-bg {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(250, 204, 21, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gold-border);
  position: relative;
  z-index: 1;
}

.hero-img-placeholder {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gold-border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(250, 204, 21, 0.08) 0%, transparent 60%);
}

.kungfu-silhouette {
  font-size: 7rem;
  line-height: 1;
  filter: drop-shadow(0 0 40px rgba(250, 204, 21, 0.3));
  animation: float 3s ease-in-out infinite;
}

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

.hero-img-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ========================
   TRUST STRIP
======================== */
.trust-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========================
   GAME SHOWCASE
======================== */
.game-showcase {
  background: var(--bg-primary);
}

.game-showcase-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.game-info-label {
  margin-bottom: 12px;
}

.game-info h2 {
  margin-bottom: 16px;
}

.game-info p {
  margin-bottom: 28px;
  max-width: 480px;
}

.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.game-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.game-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-main);
}

.game-card {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.game-card-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
}

.game-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-card-title span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.game-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  background: #000;
}

.game-iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-iframe-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.85);
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.game-iframe-overlay:hover {
  background: rgba(2, 6, 23, 0.7);
}

.game-play-btn {
  width: 72px;
  height: 72px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 32px rgba(250, 204, 21, 0.3);
  transition: var(--transition);
}

.game-iframe-overlay:hover .game-play-btn {
  transform: scale(1.1);
}

.game-overlay-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========================
   FEATURES GRID
======================== */
.features {
  background: var(--bg-secondary);
}

.section-header {
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1.0625rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================
   EXPERIENCE SECTION
======================== */
.experience {
  background: var(--bg-primary);
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.experience-visual {
  order: -1;
}

.experience-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.experience-img-placeholder {
  width: 100%;
  height: 340px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.experience-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(250, 204, 21, 0.07) 0%, transparent 65%);
}

.exp-icon {
  font-size: 5rem;
  filter: drop-shadow(0 0 30px rgba(250, 204, 21, 0.25));
}

.exp-caption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
}

.experience-content .label {
  margin-bottom: 12px;
  display: block;
}

.experience-content h2 {
  margin-bottom: 20px;
}

.experience-content > p {
  margin-bottom: 28px;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.exp-item-icon {
  width: 32px;
  height: 32px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-item-text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 3px;
}

.exp-item-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ========================
   CTA SECTION
======================== */
.cta-section {
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(250, 204, 21, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner .label {
  display: block;
  margin-bottom: 16px;
}

.cta-inner h2 {
  margin-bottom: 16px;
}

.cta-inner p {
  margin-bottom: 36px;
  font-size: 1.0625rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.cta-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================
   FOOTER
======================== */
.footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--gold-main);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-copy span {
  color: var(--gold-main);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-main);
  letter-spacing: 0.05em;
}

/* ========================
   PAGE HERO (inner pages)
======================== */
.page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: var(--bg-primary);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(250, 204, 21, 0.05) 0%, transparent 70%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* ========================
   CONTENT SECTIONS (Legal Pages)
======================== */
.content-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.content-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  font-size: 1.375rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.content-block h3 {
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin: 20px 0 10px;
}

.content-block p {
  margin-bottom: 14px;
  font-size: 0.9375rem;
}

.content-block ul, .content-block ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.content-block li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
  list-style: disc;
}

.content-block ol li {
  list-style: decimal;
}

.last-updated {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ========================
   ABOUT PAGE
======================== */
.about-values {
  background: var(--bg-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--gold-border);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-team-note {
  background: var(--bg-primary);
  text-align: center;
}

.team-note-inner {
  max-width: 680px;
  margin: 0 auto;
}

.team-note-inner h2 {
  margin-bottom: 16px;
}

.team-note-inner p {
  margin-bottom: 28px;
}

/* ========================
   CONTACT PAGE
======================== */
.contact-section {
  background: var(--bg-primary);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-detail:hover {
  border-color: var(--gold-border);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-detail-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.contact-form-wrap h3 {
  color: var(--text-primary);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(250, 204, 21, 0.5);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.06);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========================
   MODAL
======================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #0d1117;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 24px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: var(--text-primary);
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.modal-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.modal-body {
  padding: 20px 28px 28px;
}

.modal-body p {
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.modal-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.modal-body ol li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  list-style: decimal;
  line-height: 1.65;
}

/* ========================
   RESPONSIBLE GAMING PAGE
======================== */
.rg-tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

.rg-tool {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.rg-tool:hover {
  border-color: var(--gold-border);
}

.rg-tool-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.rg-tool strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 0.9375rem;
}

.rg-tool span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.rg-warning {
  padding: 20px 24px;
  background: rgba(250, 204, 21, 0.04);
  border: 1px solid rgba(250, 204, 21, 0.15);
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.rg-warning p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.rg-warning strong {
  color: var(--gold-main);
}

/* ========================
   FADE-IN ANIMATIONS
======================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ========================
   RESPONSIVE — TABLET (768px+)
======================== */
@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header-cta {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rg-tools {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .contact-detail-text span {
    word-break: break-all;
  }
}

/* ========================
   RESPONSIVE — DESKTOP (1024px+)
======================== */
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 100px 0 80px;
  }

  .hero-sub {
    font-size: 1.125rem;
  }

  .hero-img-placeholder {
    height: 460px;
  }

  .game-showcase-inner {
    grid-template-columns: 1fr 1fr;
  }

  .experience-inner {
    grid-template-columns: 1fr 1fr;
  }

  .experience-visual {
    order: 0;
  }

  .experience-img-placeholder {
    height: 420px;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rg-tools {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================
   SCROLLBAR
======================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: rgba(250, 204, 21, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(250, 204, 21, 0.4);
}