/* ==============================================
   JueegoSocial — Main Stylesheet
   Prefix: jsoc-
   Colors: Bright magenta, electric orange, vivid aqua, deep midnight blue
   ============================================== */

/* ── CSS Variables ────────────────────────────── */
:root {
  --jsoc-magenta: #e91e63;
  --jsoc-magenta-dark: #c2185b;
  --jsoc-magenta-light: #f06292;
  --jsoc-orange: #ff6d00;
  --jsoc-orange-dark: #e65100;
  --jsoc-orange-light: #ff9100;
  --jsoc-aqua: #00e5ff;
  --jsoc-aqua-dark: #00b8d4;
  --jsoc-aqua-light: #64ffda;
  --jsoc-midnight: #0d1b2a;
  --jsoc-midnight-light: #1b2838;
  --jsoc-midnight-lighter: #243447;
  --jsoc-dark: #0a0e1a;
  --jsoc-surface: #111827;
  --jsoc-surface-light: #1e293b;
  --jsoc-text: #f1f5f9;
  --jsoc-text-muted: #94a3b8;
  --jsoc-text-dim: #64748b;
  --jsoc-border: rgba(255, 255, 255, 0.08);
  --jsoc-glow-magenta: rgba(233, 30, 99, 0.3);
  --jsoc-glow-orange: rgba(255, 109, 0, 0.3);
  --jsoc-glow-aqua: rgba(0, 229, 255, 0.25);
  --jsoc-radius: 16px;
  --jsoc-radius-sm: 8px;
  --jsoc-radius-lg: 24px;
  --jsoc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --jsoc-font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --jsoc-font-display: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --jsoc-max-width: 1200px;
  --jsoc-header-h: 70px;
}

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--jsoc-font);
  background: var(--jsoc-dark);
  color: var(--jsoc-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--jsoc-aqua);
  text-decoration: none;
  transition: var(--jsoc-transition);
}
a:hover {
  color: var(--jsoc-aqua-light);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--jsoc-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ───────────────────────────────────── */
.jsoc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--jsoc-header-h);
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--jsoc-border);
  transition: var(--jsoc-transition);
}

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

.jsoc-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.jsoc-logo img {
  height: 42px;
  width: auto;
}

.jsoc-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.jsoc-nav-list {
  display: flex;
  gap: 4px;
}

.jsoc-nav-link {
  padding: 8px 16px;
  color: var(--jsoc-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--jsoc-radius-sm);
  transition: var(--jsoc-transition);
}
.jsoc-nav-link:hover,
.jsoc-nav-link.active {
  color: var(--jsoc-text);
  background: rgba(255, 255, 255, 0.06);
}

.jsoc-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--jsoc-magenta), var(--jsoc-orange));
  color: white;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 50px;
  transition: var(--jsoc-transition);
}
.jsoc-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--jsoc-glow-magenta);
  color: white;
}

/* Mobile menu toggle */
.jsoc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.jsoc-nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--jsoc-text);
  border-radius: 2px;
  transition: var(--jsoc-transition);
}
.jsoc-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.jsoc-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.jsoc-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ─────────────────────────────── */
.jsoc-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: calc(var(--jsoc-header-h) + 40px) 0 60px;
  overflow: hidden;
  background: var(--jsoc-midnight);
}

.jsoc-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, var(--jsoc-glow-magenta) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 30%, var(--jsoc-glow-aqua) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, var(--jsoc-glow-orange) 0%, transparent 40%);
  z-index: 0;
}

.jsoc-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.jsoc-particle {
  position: absolute;
  border-radius: 50%;
  animation: jsoc-float-up 8s ease-in-out infinite;
}
.jsoc-particle:nth-child(1) { width: 4px; height: 4px; left: 10%; bottom: 10%; background: rgba(0, 229, 255, 0.5); animation-delay: 0s; }
.jsoc-particle:nth-child(2) { width: 6px; height: 6px; left: 25%; bottom: 20%; background: rgba(233, 30, 99, 0.4); animation-delay: 1.2s; }
.jsoc-particle:nth-child(3) { width: 3px; height: 3px; left: 45%; bottom: 15%; background: rgba(255, 109, 0, 0.5); animation-delay: 2.5s; }
.jsoc-particle:nth-child(4) { width: 5px; height: 5px; left: 65%; bottom: 25%; background: rgba(0, 229, 255, 0.4); animation-delay: 0.8s; }
.jsoc-particle:nth-child(5) { width: 4px; height: 4px; left: 80%; bottom: 12%; background: rgba(233, 30, 99, 0.5); animation-delay: 3.2s; }
.jsoc-particle:nth-child(6) { width: 7px; height: 7px; left: 35%; bottom: 30%; background: rgba(255, 109, 0, 0.3); animation-delay: 1.8s; }
.jsoc-particle:nth-child(7) { width: 3px; height: 3px; left: 55%; bottom: 8%; background: rgba(0, 229, 255, 0.6); animation-delay: 0.4s; }
.jsoc-particle:nth-child(8) { width: 5px; height: 5px; left: 90%; bottom: 22%; background: rgba(233, 30, 99, 0.35); animation-delay: 2s; }

@keyframes jsoc-float-up {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-600px) scale(0.3); opacity: 0; }
}

.jsoc-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.jsoc-hero-left {
  max-width: 600px;
}

.jsoc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--jsoc-aqua);
  font-weight: 500;
  margin-bottom: 24px;
}

.jsoc-hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.jsoc-hero-title .jsoc-highlight {
  background: linear-gradient(135deg, var(--jsoc-magenta), var(--jsoc-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jsoc-hero-desc {
  font-size: 1.1rem;
  color: var(--jsoc-text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.jsoc-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.jsoc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--jsoc-transition);
  text-decoration: none;
  font-family: var(--jsoc-font);
}
.jsoc-btn:hover {
  transform: translateY(-2px);
}

.jsoc-btn-primary {
  background: linear-gradient(135deg, var(--jsoc-magenta), var(--jsoc-orange));
  color: white;
  box-shadow: 0 4px 20px var(--jsoc-glow-magenta);
}
.jsoc-btn-primary:hover {
  box-shadow: 0 8px 30px var(--jsoc-glow-magenta);
  color: white;
}

.jsoc-btn-outline {
  background: transparent;
  color: var(--jsoc-aqua);
  border: 2px solid var(--jsoc-aqua);
}
.jsoc-btn-outline:hover {
  background: rgba(0, 229, 255, 0.1);
  color: var(--jsoc-aqua);
}

.jsoc-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--jsoc-text-muted);
}
.jsoc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--jsoc-text);
}

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

.jsoc-btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.jsoc-hero-stats {
  display: flex;
  gap: 40px;
}

.jsoc-stat-item {
  text-align: left;
}
.jsoc-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--jsoc-aqua), var(--jsoc-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.jsoc-stat-label {
  font-size: 0.82rem;
  color: var(--jsoc-text-dim);
  margin-top: 2px;
}

.jsoc-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jsoc-hero-showcase {
  position: relative;
}
.jsoc-showcase-card {
  width: 340px;
  height: 240px;
  border-radius: var(--jsoc-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.jsoc-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jsoc-showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.jsoc-showcase-overlay h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
.jsoc-badge-new {
  display: inline-block;
  padding: 4px 12px;
  background: var(--jsoc-magenta);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 8px;
}

.jsoc-floating-cards {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
}
.jsoc-mini-card {
  width: 90px;
  height: 70px;
  border-radius: var(--jsoc-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--jsoc-transition);
  position: relative;
}
.jsoc-mini-card:hover,
.jsoc-mini-card.active {
  border-color: var(--jsoc-magenta);
  transform: translateY(-4px);
}
.jsoc-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jsoc-mini-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.65rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Notice Bar ───────────────────────────────── */
.jsoc-notice {
  background: rgba(0, 229, 255, 0.04);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  padding: 14px 0;
}
.jsoc-notice p {
  text-align: center;
  font-size: 0.85rem;
  color: var(--jsoc-text-muted);
}
.jsoc-notice strong {
  color: var(--jsoc-aqua);
}

/* ── Sections ─────────────────────────────────── */
.jsoc-section {
  padding: 80px 0;
}
.jsoc-section-alt {
  background: var(--jsoc-surface);
}

.jsoc-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.jsoc-section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.jsoc-section-header p {
  color: var(--jsoc-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.jsoc-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--jsoc-magenta), var(--jsoc-aqua));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── Game Cards Grid ──────────────────────────── */
.jsoc-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.jsoc-card {
  background: var(--jsoc-surface);
  border: 1px solid var(--jsoc-border);
  border-radius: var(--jsoc-radius);
  overflow: hidden;
  transition: var(--jsoc-transition);
}
.jsoc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 30, 99, 0.3);
  box-shadow: 0 12px 40px rgba(233, 30, 99, 0.1);
}

.jsoc-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.jsoc-card-body {
  padding: 20px;
}

.jsoc-card-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.jsoc-tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--jsoc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.jsoc-tag-gold {
  background: rgba(255, 109, 0, 0.15);
  color: var(--jsoc-orange-light);
}
.jsoc-tag-aqua {
  background: rgba(0, 229, 255, 0.12);
  color: var(--jsoc-aqua);
}
.jsoc-tag-pink {
  background: rgba(233, 30, 99, 0.15);
  color: var(--jsoc-magenta-light);
}

.jsoc-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.jsoc-card-desc {
  font-size: 0.88rem;
  color: var(--jsoc-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.jsoc-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Info/Features Grid ───────────────────────── */
.jsoc-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.jsoc-info-card {
  background: var(--jsoc-surface);
  border: 1px solid var(--jsoc-border);
  border-radius: var(--jsoc-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--jsoc-transition);
}
.jsoc-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.2);
}

.jsoc-info-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.jsoc-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.jsoc-info-card p {
  font-size: 0.88rem;
  color: var(--jsoc-text-muted);
  line-height: 1.6;
}

/* ── New Games Tabbed Section ─────────────────── */
.jsoc-new-games {
  margin-top: 30px;
}

.jsoc-ng-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.jsoc-ng-tab {
  padding: 12px 28px;
  background: var(--jsoc-surface);
  border: 1px solid var(--jsoc-border);
  border-radius: 50px;
  color: var(--jsoc-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--jsoc-transition);
  font-family: var(--jsoc-font);
}
.jsoc-ng-tab:hover {
  border-color: rgba(233, 30, 99, 0.3);
  color: var(--jsoc-text);
}
.jsoc-ng-tab.active {
  background: linear-gradient(135deg, var(--jsoc-magenta), var(--jsoc-orange));
  color: white;
  border-color: transparent;
}

.jsoc-ng-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.jsoc-ng-panel.active {
  display: grid;
}

.jsoc-ng-panel-img {
  border-radius: var(--jsoc-radius);
  overflow: hidden;
}
.jsoc-ng-panel-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.jsoc-ng-panel-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 12px 0;
}

.jsoc-ng-panel-info p {
  color: var(--jsoc-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.jsoc-ng-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.jsoc-ng-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--jsoc-text-muted);
}
.jsoc-ng-feature::before {
  content: "✨";
  font-size: 0.9rem;
}

/* ── Responsible Gaming ───────────────────────── */
.jsoc-responsible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.jsoc-responsible-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jsoc-responsible-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--jsoc-text-muted);
}
.jsoc-responsible-item .jsoc-check {
  color: var(--jsoc-aqua);
  flex-shrink: 0;
  font-weight: 700;
}

.jsoc-helpline-box {
  background: var(--jsoc-surface);
  border: 1px solid var(--jsoc-border);
  border-radius: var(--jsoc-radius-sm);
  padding: 20px;
  margin-top: 12px;
}

.jsoc-helpline-box p {
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: var(--jsoc-text-muted);
}

.jsoc-responsible-logos {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.jsoc-responsible-logos a img {
  height: 32px;
  filter: brightness(0) invert(0.7);
  transition: var(--jsoc-transition);
}
.jsoc-responsible-logos a:hover img {
  filter: brightness(0) invert(0.9);
}

/* ── CTA Section ──────────────────────────────── */
.jsoc-cta-section {
  text-align: center;
  padding: 80px 0;
  background: var(--jsoc-surface);
}
.jsoc-cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.jsoc-cta-section p {
  color: var(--jsoc-text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ── FAQ Section ──────────────────────────────── */
.jsoc-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jsoc-faq-item {
  background: var(--jsoc-surface);
  border: 1px solid var(--jsoc-border);
  border-radius: var(--jsoc-radius-sm);
  overflow: hidden;
}

.jsoc-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--jsoc-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--jsoc-font);
  text-align: left;
  transition: var(--jsoc-transition);
}
.jsoc-faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}
.jsoc-faq-question .jsoc-faq-icon {
  font-size: 1.2rem;
  transition: var(--jsoc-transition);
  flex-shrink: 0;
}
.jsoc-faq-item.active .jsoc-faq-question .jsoc-faq-icon {
  transform: rotate(45deg);
}

.jsoc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.jsoc-faq-item.active .jsoc-faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}
.jsoc-faq-answer p {
  color: var(--jsoc-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Responsible Bar (above footer) ──────────── */
.jsoc-responsible-bar {
  background: var(--jsoc-midnight);
  border-top: 1px solid var(--jsoc-border);
  padding: 24px 0;
}
.jsoc-responsible-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.jsoc-responsible-bar-text {
  font-size: 0.82rem;
  color: var(--jsoc-text-dim);
  flex: 1;
  min-width: 280px;
  line-height: 1.6;
}
.jsoc-responsible-bar-text a {
  color: var(--jsoc-aqua);
}
.jsoc-responsible-bar-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.jsoc-responsible-bar-logos a img {
  height: 28px;
  filter: brightness(0) invert(0.6);
  transition: var(--jsoc-transition);
}
.jsoc-responsible-bar-logos a:hover img {
  filter: brightness(0) invert(0.9);
}
.jsoc-regulator-badge {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--jsoc-border);
  border-radius: 4px;
  font-size: 0.75rem;
  text-align: center;
  color: var(--jsoc-text-dim);
}
.jsoc-regulator-badge strong {
  display: block;
  color: var(--jsoc-text-muted);
  font-size: 0.85rem;
}

/* ── Footer ───────────────────────────────────── */
.jsoc-footer {
  background: var(--jsoc-midnight-light);
  padding: 60px 0 0;
  border-top: 1px solid var(--jsoc-border);
}

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

.jsoc-footer-brand p {
  font-size: 0.9rem;
  color: var(--jsoc-text-dim);
  margin: 16px 0;
  line-height: 1.7;
  max-width: 320px;
}

.jsoc-footer-social {
  display: flex;
  gap: 12px;
}
.jsoc-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--jsoc-text-muted);
  font-weight: 700;
  transition: var(--jsoc-transition);
  font-size: 0.9rem;
}
.jsoc-social-btn:hover {
  background: var(--jsoc-magenta);
  color: white;
  transform: translateY(-2px);
}

.jsoc-footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--jsoc-text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.jsoc-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jsoc-footer-col ul li a {
  color: var(--jsoc-text-dim);
  font-size: 0.85rem;
  transition: var(--jsoc-transition);
}
.jsoc-footer-col ul li a:hover {
  color: var(--jsoc-aqua);
  padding-left: 4px;
}

.jsoc-footer-logos {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jsoc-footer-logos a img {
  height: 26px;
  filter: brightness(0) invert(0.6);
  transition: var(--jsoc-transition);
}
.jsoc-footer-logos a:hover img {
  filter: brightness(0) invert(0.9);
}

.jsoc-footer-bottom {
  border-top: 1px solid var(--jsoc-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.jsoc-footer-bottom p {
  font-size: 0.8rem;
  color: var(--jsoc-text-dim);
}
.jsoc-footer-bottom-links {
  display: flex;
  gap: 20px;
}
.jsoc-footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--jsoc-text-dim);
}
.jsoc-footer-bottom-links a:hover {
  color: var(--jsoc-aqua);
}

.jsoc-footer-disclaimer {
  background: var(--jsoc-midnight);
  padding: 20px 0;
  border-top: 1px solid var(--jsoc-border);
}
.jsoc-footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--jsoc-text-dim);
  line-height: 1.7;
  text-align: center;
}
.jsoc-footer-disclaimer a {
  color: var(--jsoc-aqua);
}

/* ── Age Popup ────────────────────────────────── */
.jsoc-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.jsoc-popup-overlay.hidden {
  display: none;
}

.jsoc-popup-box {
  background: var(--jsoc-midnight-light);
  border: 1px solid rgba(233, 30, 99, 0.3);
  border-radius: var(--jsoc-radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: jsoc-bounce-in 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes jsoc-bounce-in {
  0% { transform: scale(0.9); opacity: 0; }
  60% { transform: scale(1.02); }
  100% { transform: scale(1); opacity: 1; }
}

.jsoc-popup-icon {
  margin-bottom: 20px;
}
.jsoc-popup-icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.jsoc-popup-box h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--jsoc-magenta), var(--jsoc-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jsoc-popup-box p {
  color: var(--jsoc-text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.jsoc-popup-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.jsoc-popup-disclaimer {
  font-size: 0.75rem !important;
  color: var(--jsoc-text-dim) !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}
.jsoc-popup-disclaimer a {
  color: var(--jsoc-aqua);
}

/* ── Cookie Banner ────────────────────────────── */
.jsoc-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--jsoc-midnight-light);
  border-top: 1px solid var(--jsoc-border);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.jsoc-cookie-banner.show {
  transform: translateY(0);
}
.jsoc-cookie-banner.hidden {
  display: none;
}

.jsoc-cookie-inner {
  max-width: var(--jsoc-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.jsoc-cookie-inner p {
  font-size: 0.85rem;
  color: var(--jsoc-text-muted);
  flex: 1;
  min-width: 280px;
  line-height: 1.6;
}
.jsoc-cookie-inner p a {
  color: var(--jsoc-aqua);
}

/* ── Game Page Styles ─────────────────────────── */
.jsoc-game-page {
  padding: calc(var(--jsoc-header-h) + 40px) 0 60px;
  min-height: 100vh;
}

.jsoc-game-board {
  max-width: 600px;
  margin: 0 auto;
  background: var(--jsoc-surface);
  border: 1px solid var(--jsoc-border);
  border-radius: var(--jsoc-radius-lg);
  padding: 40px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.jsoc-game-header {
  text-align: center;
  margin-bottom: 32px;
}
.jsoc-game-header h1 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.jsoc-game-header p {
  color: var(--jsoc-text-muted);
  font-size: 0.88rem;
}

.jsoc-game-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--jsoc-midnight);
  border-radius: var(--jsoc-radius-sm);
}

.jsoc-game-label {
  font-size: 0.75rem;
  color: var(--jsoc-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.jsoc-game-value {
  font-size: 1.2rem;
  font-weight: 700;
}
.jsoc-game-value.jsoc-credits {
  color: var(--jsoc-aqua);
}
.jsoc-game-value.jsoc-stake {
  color: var(--jsoc-orange-light);
}

.jsoc-game-columns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.jsoc-game-column {
  width: 140px;
  height: 160px;
  background: var(--jsoc-midnight);
  border: 2px solid var(--jsoc-border);
  border-radius: var(--jsoc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--jsoc-transition);
}
.jsoc-game-column.spinning {
  border-color: var(--jsoc-magenta);
  box-shadow: 0 0 20px var(--jsoc-glow-magenta);
}
.jsoc-game-column.win {
  border-color: var(--jsoc-aqua);
  box-shadow: 0 0 20px var(--jsoc-glow-aqua);
}

.jsoc-game-column img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  transition: transform 0.1s;
}
.jsoc-game-column.spinning img {
  animation: jsoc-slot-spin 0.15s linear infinite;
}

@keyframes jsoc-slot-spin {
  0% { transform: translateY(-10px); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(-10px); opacity: 0.5; }
}

@keyframes jsoc-win-flash {
  0%, 100% { box-shadow: 0 0 10px var(--jsoc-glow-aqua); }
  50% { box-shadow: 0 0 30px var(--jsoc-glow-aqua), 0 0 60px var(--jsoc-glow-aqua); }
}

.jsoc-game-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.jsoc-game-stake-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
}
.jsoc-game-stake-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--jsoc-border);
  background: var(--jsoc-midnight);
  color: var(--jsoc-text);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--jsoc-transition);
  font-family: var(--jsoc-font);
}
.jsoc-game-stake-btn:hover {
  border-color: var(--jsoc-aqua);
  color: var(--jsoc-aqua);
}

.jsoc-game-result {
  text-align: center;
  padding: 12px;
  border-radius: var(--jsoc-radius-sm);
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.jsoc-game-result.win {
  background: rgba(0, 229, 255, 0.1);
  color: var(--jsoc-aqua);
  border: 1px solid rgba(0, 229, 255, 0.2);
}
.jsoc-game-result.lose {
  background: rgba(233, 30, 99, 0.08);
  color: var(--jsoc-magenta-light);
  border: 1px solid rgba(233, 30, 99, 0.15);
}
.jsoc-game-result.info {
  background: rgba(255, 109, 0, 0.08);
  color: var(--jsoc-orange-light);
  border: 1px solid rgba(255, 109, 0, 0.15);
}

.jsoc-game-multiplier-table {
  margin-top: 20px;
  border-top: 1px solid var(--jsoc-border);
  padding-top: 20px;
}
.jsoc-game-multiplier-table h4 {
  font-size: 0.85rem;
  color: var(--jsoc-text-muted);
  margin-bottom: 12px;
  text-align: center;
}
.jsoc-game-multiplier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.jsoc-game-multiplier-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: var(--jsoc-midnight);
  border-radius: var(--jsoc-radius-sm);
  font-size: 0.78rem;
}
.jsoc-game-multiplier-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.jsoc-game-multiplier-item span {
  color: var(--jsoc-text-muted);
}

/* ── Game Hub Page ────────────────────────────── */
.jsoc-game-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.jsoc-game-hub-card {
  background: var(--jsoc-surface);
  border: 1px solid var(--jsoc-border);
  border-radius: var(--jsoc-radius);
  overflow: hidden;
  transition: var(--jsoc-transition);
}
.jsoc-game-hub-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 229, 255, 0.2);
}

.jsoc-game-hub-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.jsoc-game-hub-body {
  padding: 24px;
}

.jsoc-game-hub-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.jsoc-game-hub-body p {
  color: var(--jsoc-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── Page Hero (inner pages) ──────────────────── */
.jsoc-page-hero {
  padding: calc(var(--jsoc-header-h) + 60px) 0 50px;
  background: var(--jsoc-midnight);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jsoc-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, var(--jsoc-glow-magenta) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, var(--jsoc-glow-aqua) 0%, transparent 60%);
  opacity: 0.3;
}
.jsoc-page-hero > * {
  position: relative;
  z-index: 1;
}
.jsoc-page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
}
.jsoc-page-hero p {
  color: var(--jsoc-text-muted);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Content Pages ────────────────────────────── */
.jsoc-content-page {
  padding: 60px 0;
}

.jsoc-content-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.jsoc-content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--jsoc-aqua);
}

.jsoc-content-section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 24px;
  color: var(--jsoc-text);
}

.jsoc-content-section p {
  color: var(--jsoc-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.jsoc-content-section ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.jsoc-content-section ul li {
  color: var(--jsoc-text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
  font-size: 0.95rem;
  list-style: disc;
}

/* ── Thank You Page ───────────────────────────── */
.jsoc-thankyou {
  text-align: center;
  padding: 120px 0;
}
.jsoc-thankyou-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}
.jsoc-thankyou h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.jsoc-thankyou p {
  color: var(--jsoc-text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ── Animations ───────────────────────────────── */
@keyframes jsoc-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.jsoc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.jsoc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .jsoc-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .jsoc-hero-left {
    max-width: 100%;
  }
  .jsoc-hero-desc {
    margin: 0 auto 32px;
  }
  .jsoc-hero-actions {
    justify-content: center;
  }
  .jsoc-hero-stats {
    justify-content: center;
  }
  .jsoc-hero-right {
    display: none;
  }
  .jsoc-hero-title {
    font-size: 2.6rem;
  }
  .jsoc-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .jsoc-ng-panel {
    grid-template-columns: 1fr;
  }
  .jsoc-ng-panel-img img {
    height: 250px;
  }
  .jsoc-responsible-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .jsoc-nav-list {
    display: none;
    position: absolute;
    top: var(--jsoc-header-h);
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.98);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--jsoc-border);
  }
  .jsoc-nav-list.open {
    display: flex;
  }
  .jsoc-nav-toggle {
    display: flex;
  }
  .jsoc-hero-title {
    font-size: 2rem;
  }
  .jsoc-hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .jsoc-section-header h2 {
    font-size: 1.6rem;
  }
  .jsoc-footer-grid {
    grid-template-columns: 1fr;
  }
  .jsoc-games-grid {
    grid-template-columns: 1fr;
  }
  .jsoc-info-grid {
    grid-template-columns: 1fr;
  }
  .jsoc-ng-features {
    grid-template-columns: 1fr;
  }
  .jsoc-game-hub-grid {
    grid-template-columns: 1fr;
  }
  .jsoc-game-column {
    width: 100px;
    height: 120px;
  }
  .jsoc-game-column img {
    width: 60px;
    height: 60px;
  }
  .jsoc-game-board {
    padding: 24px 16px;
  }
  .jsoc-page-hero h1 {
    font-size: 1.8rem;
  }
  .jsoc-popup-box {
    padding: 32px 24px;
  }
  .jsoc-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  .jsoc-hero-badge {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .jsoc-hero-title {
    font-size: 1.6rem;
  }
  .jsoc-nav-cta {
    display: none;
  }
  .jsoc-game-info {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .jsoc-game-column {
    width: 80px;
    height: 100px;
  }
  .jsoc-game-column img {
    width: 48px;
    height: 48px;
  }
  .jsoc-game-multiplier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
