:root {
  --surface-base: #1A1F2E;
  --surface-elevated: #0F1923;
  --surface-accent: #241428;
  --surface-card: #252B3B;
  --surface-card-hover: #2E3545;
  --surface-overlay: rgba(0, 0, 0, 0.35);
  --surface-glass: rgba(255, 255, 255, 0.08);
  --surface-dark: rgba(15, 20, 35, 0.95);
  --color-mint: #AAB1D3;
  --color-mint-hover: #9198BA;
  --color-mint-faint: rgba(170, 177, 211, 0.12);
  --color-mint-soft: rgba(170, 177, 211, 0.18);
  --color-mint-subtle: rgba(170, 177, 211, 0.06);
  --color-lime: #B4E3A8;
  --color-lime-faint: rgba(180, 227, 168, 0.12);
  --color-lime-soft: rgba(180, 227, 168, 0.18);
  --color-lime-subtle: rgba(180, 227, 168, 0.06);
  --color-violet: #816DC9;
  --color-amber: #E8C083;
  --color-amber-soft: rgba(232, 192, 131, 0.18);
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8B8;
  --text-muted: #9A9A9A;
  --text-inverse: #1A1020;
  --border-default: #2A2A2A;
  --border-light: #3D3D3D;
  --shadow-soft: rgba(0, 0, 0, 0.25);
  --shadow-medium: 0 16px 35px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 20px 55px rgba(0, 0, 0, 0.32);
  --shadow-intense: 0 25px 60px rgba(0, 0, 0, 0.35);
  --gradient-base: linear-gradient(135deg, var(--surface-elevated) 0%, var(--surface-base) 100%);
  --gradient-brand: linear-gradient(135deg, var(--color-mint) 0%, var(--color-lime) 100%);
  --gradient-card: linear-gradient(135deg, rgba(30, 40, 55, 0.75) 0%, rgba(20, 28, 45, 0.88) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(15, 20, 35, 0.22) 0%, rgba(20, 28, 45, 0.48) 100%);
  --gradient-fade: linear-gradient(to bottom, rgba(15, 20, 35, 0.25) 0%, rgba(15, 20, 35, 0.85) 100%);
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--surface-base);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.25;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.25s ease;
}
.button .icon {
  width: 18px;
  height: 18px;
}
.button-primary {
  background-color: var(--color-mint);
  color: var(--text-primary);
}
.button-primary:hover {
  background-color: var(--color-mint-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(170, 177, 211, 0.25);
}
.button-ghost {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.button-ghost:hover {
  background-color: var(--surface-glass);
  border-color: var(--text-primary);
}
.content-block {
  padding: 90px 0;
}
.block-heading {
  font-size: 34px;
  text-align: center;
  margin-bottom: 18px;
}
.block-intro {
  text-align: center;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 52px;
  font-size: 15px;
}
.announcement-strip {
  background-color: var(--surface-elevated);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-default);
}
.announcement-strip.dismissed {
  display: none;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.strip-message {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.strip-message .icon {
  width: 20px;
  height: 20px;
  color: var(--color-lime);
}
.strip-dismiss {
  background: transparent;
  color: var(--text-secondary);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.strip-dismiss:hover {
  color: var(--text-primary);
}
.strip-dismiss .icon {
  width: 18px;
  height: 18px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--surface-dark);
  backdrop-filter: blur(14px);
  padding: 18px 0;
  border-bottom: 1px solid var(--border-default);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--text-primary);
}
.brand-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  gap: 36px;
}
.nav-item {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-item:hover,
.nav-item.active {
  color: var(--text-primary);
}
.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-mint);
  border-radius: 1px;
}
.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text-primary);
  padding: 8px;
}
.hero-banner {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero), url("https://shockspinzone.com/wp-content/themes/shockspinzone-com/img/bg.png") center / cover no-repeat;
  z-index: -1;
}
.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero-copy {
  text-align: center;
}
.hero-headline {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.12;
}
.hero-text {
  font-size: 17px;
  color: white;
  margin: 0 auto 34px;
  max-width: 580px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  justify-content: center;
}
.hero-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  justify-content: center;
}
.hero-notice .icon {
  width: 15px;
  height: 15px;
}
.game-showcase {
  background-color: var(--surface-base);
}
.game-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.game-tile {
  background-color: var(--surface-card);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(25px);
}
.game-tile.visible {
  opacity: 1;
  transform: translateY(0);
}
.game-tile:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}
.tile-visual {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.game-tile:hover .tile-visual img {
  transform: scale(1.12);
}
.tile-details {
  padding: 22px;
}
.tile-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.tile-summary {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tile-action {
  width: 100%;
  padding: 11px 22px;
  font-size: 13px;
}
.platform-info {
  background: 
    radial-gradient(ellipse at 15% 45%, var(--color-mint-subtle) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, var(--color-lime-subtle) 0%, transparent 55%),
    linear-gradient(180deg, var(--surface-base) 0%, var(--surface-elevated) 100%);
  padding: 110px 0;
}
.info-wrapper {
  background: 
    radial-gradient(circle at 8% 18%, var(--color-mint-faint) 0%, transparent 45%),
    radial-gradient(circle at 92% 82%, var(--color-lime-faint) 0%, transparent 45%),
    var(--gradient-card);
  border-radius: 26px;
  padding: 65px;
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}
.info-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-mint) 0%, var(--color-lime) 100%);
}
.info-wrapper .block-heading {
  text-align: left;
  font-size: 38px;
  margin-bottom: 22px;
}
.info-wrapper .block-intro {
  text-align: left;
  margin-left: 0;
  margin-bottom: 55px;
  font-size: 16px;
  color: var(--text-muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 45px;
}
.feature-box {
  text-align: center;
  padding: 38px 30px;
  background-color: rgba(30, 40, 55, 0.55);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(25px);
}
.feature-box.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-box:hover {
  background-color: rgba(30, 40, 55, 0.85);
  border-color: var(--color-mint);
  transform: translateY(-5px);
}
.feature-symbol {
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-symbol .icon {
  width: 38px;
  height: 38px;
}
.feature-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.feature-blurb {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}
.info-cta {
  text-align: center;
  margin-top: 52px;
}
.info-cta .button {
  padding: 15px 34px;
  font-size: 15px;
}
.mindful-gaming {
  background-color: var(--surface-base);
}
.mindful-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 52px;
}
.mindful-card {
  background-color: var(--surface-card);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border-default);
  transition: border-color 0.25s ease;
  opacity: 0;
  transform: translateY(25px);
}
.mindful-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.mindful-card:hover {
  border-color: var(--border-light);
}
.mindful-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.mindful-icon .icon {
  width: 30px;
  height: 30px;
}
.mindful-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.mindful-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.mindful-cta {
  text-align: center;
  padding: 42px;
  background-color: var(--surface-card);
  border-radius: 18px;
  border: 1px solid var(--border-default);
}
.mindful-cta p {
  color: var(--text-secondary);
  margin-bottom: 22px;
  font-size: 14px;
}
.email-signup {
  background: linear-gradient(180deg, var(--surface-base) 0%, var(--surface-accent) 100%);
  padding: 110px 0;
}
.signup-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.signup-field {
  width: 100%;
  padding: 17px 22px;
  background-color: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease;
}
.signup-field::placeholder {
  color: var(--text-secondary);
}
.signup-field:focus {
  border-color: var(--color-mint);
}
.signup-submit {
  width: 100%;
  padding: 17px;
}
.signup-note {
  font-size: 12px;
  color: var(--text-secondary);
}
.site-footer {
  background-color: var(--surface-elevated);
  padding: 65px 0 35px;
  border-top: 1px solid var(--border-default);
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-bottom: 45px;
}
.footer-heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.footer-menu li {
  margin-bottom: 14px;
}
.footer-menu a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-menu a:hover {
  color: var(--color-lime);
}
.footer-notice {
  background-color: var(--surface-overlay);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 32px;
  text-align: center;
}
.footer-notice p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.footer-resources {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-default);
}
.resources-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.resources-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
}
.resource-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.88;
}
.resource-badge:hover {
  opacity: 0.98;
  transform: scale(1.03);
}
.resource-badge img {
  max-width: 100%;
  height: 52px;
  width: auto;
  object-fit: contain;
}
.footer-bottom {
  text-align: center;
}
.age-marker {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.age-img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.copyright-text {
  font-size: 12px;
  color: var(--text-secondary);
}
@media (max-width: 1024px) {
  .game-gallery,
  .mindful-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-headline {
    font-size: 44px;
  }
  .hero-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .strip-message span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-dark);
    border-bottom: 1px solid var(--border-default);
    padding: 20px;
  }
  .main-nav.open {
    display: block;
  }
  .nav-menu {
    flex-direction: column;
    gap: 0;
  }
  .nav-item {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-default);
  }
  .nav-item:last-child {
    border-bottom: none;
  }
  .nav-item.active::after {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .game-gallery,
  .mindful-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 34px;
  }
  .hero-text {
    font-size: 15px;
  }
  .info-wrapper {
    padding: 42px 26px;
  }
  .info-wrapper .block-heading {
    font-size: 30px;
    text-align: center;
  }
  .info-wrapper .block-intro {
    font-size: 15px;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 26px;
  }
  .block-heading {
    font-size: 26px;
  }
  .platform-info {
    padding: 70px 0;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}
.animate-entrance {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.legal-hero {
  background: linear-gradient(135deg, var(--surface-elevated) 0%, var(--surface-base) 100%);
  padding: 65px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-default);
}
.legal-hero h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
}
.legal-hero .hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 10px;
}
.legal-content {
  background-color: var(--surface-base);
}
.legal-content .content-wrapper {
  max-width: 820px;
  margin: 0 auto;
}
.legal-intro {
  background-color: var(--surface-card);
  border-left: 4px solid var(--color-mint);
  border-radius: 10px;
  padding: 26px;
  margin-bottom: 44px;
}
.legal-intro p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}
.legal-section {
  margin-bottom: 44px;
}
.legal-section:last-child {
  margin-bottom: 0;
}
.legal-section h2 {
  font-size: 23px;
  color: var(--text-primary);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-default);
}
.legal-section h3 {
  font-size: 18px;
  color: var(--text-primary);
  margin-top: 26px;
  margin-bottom: 14px;
}
.legal-section h3:first-of-type {
  margin-top: 18px;
}
.legal-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section ul {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.legal-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.legal-section ul li::before {
  content: '•';
  position: absolute;
  left: 14px;
  color: var(--color-mint);
  font-weight: bold;
  font-size: 18px;
}
.legal-section a {
  color: var(--color-lime);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.legal-section a:hover {
  color: var(--color-mint);
}
.legal-card {
  background-color: var(--surface-card);
  border-radius: 14px;
  padding: 26px;
  margin-bottom: 22px;
  border: 1px solid var(--border-default);
  transition: border-color 0.25s ease;
}
.legal-card:hover {
  border-color: var(--border-light);
}
.legal-card:last-child {
  margin-bottom: 0;
}
.legal-card h2 {
  font-size: 21px;
  color: var(--text-primary);
  margin-bottom: 18px;
  border-bottom: none;
  padding-bottom: 0;
}
.legal-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.legal-card p:last-child {
  margin-bottom: 0;
}
.legal-card ul {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.legal-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.legal-card ul li::before {
  content: '•';
  position: absolute;
  left: 14px;
  color: var(--color-mint);
  font-weight: bold;
  font-size: 18px;
}
.legal-card strong {
  color: var(--text-primary);
  font-weight: 600;
}
.legal-card a {
  color: var(--color-lime);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.legal-card a:hover {
  color: var(--color-mint);
}
.cookies-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 55px;
  align-items: start;
}
.cookies-toc {
  position: sticky;
  top: 105px;
  background-color: var(--surface-card);
  border-radius: 14px;
  padding: 26px;
  border: 1px solid var(--border-default);
}
.cookies-toc h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.cookies-toc nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cookies-toc nav ul li {
  margin-bottom: 14px;
}
.cookies-toc nav ul li:last-child {
  margin-bottom: 0;
}
.cookies-toc nav ul li a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 7px 0;
  transition: color 0.2s ease;
  position: relative;
}
.cookies-toc nav ul li a:hover {
  color: var(--color-mint);
}
.cookies-toc nav ul li a::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background-color: var(--color-mint);
  transition: height 0.2s ease;
}
.cookies-toc nav ul li a:hover::before {
  height: 100%;
}
.cookies-main {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .cookies-layout {
    grid-template-columns: 230px 1fr;
    gap: 44px;
  }
  .cookies-toc {
    padding: 22px;
  }
}
@media (max-width: 768px) {
  .legal-hero h1 {
    font-size: 30px;
  }
  .legal-intro {
    padding: 22px;
  }
  .legal-section h2,
  .legal-card h2 {
    font-size: 21px;
  }
  .legal-section p,
  .legal-section ul li,
  .legal-card p,
  .legal-card ul li {
    font-size: 14px;
  }
  .cookies-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cookies-toc {
    position: static;
    order: 2;
  }
  .cookies-main {
    order: 1;
  }
  .cookies-toc h3 {
    font-size: 13px;
  }
  .cookies-toc nav ul li a {
    font-size: 13px;
  }
}
.rg-hero {
  background: linear-gradient(135deg, var(--surface-elevated) 0%, var(--surface-base) 100%);
  padding: 85px 0;
  border-bottom: 1px solid var(--border-default);
}
.rg-hero-content {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}
.rg-hero-icon {
  width: 85px;
  height: 85px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-lime) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rg-hero-icon .icon {
  width: 42px;
  height: 42px;
  color: var(--text-primary);
}
.rg-hero-text h1 {
  font-size: 38px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.rg-hero-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}
.rg-safety {
  background-color: var(--surface-base);
}
.rg-header {
  text-align: center;
  margin-bottom: 55px;
}
.rg-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-mint-soft) 0%, var(--color-lime-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.rg-icon .icon {
  width: 34px;
  height: 34px;
  color: var(--color-mint);
}
.rg-header h2 {
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.rg-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}
.rg-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.rg-tips {
  background-color: var(--surface-card);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border-default);
}
.rg-tips h3 {
  font-size: 21px;
  margin-bottom: 26px;
  color: var(--text-primary);
}
.tips-list {
  list-style: none;
}
.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}
.tips-list li:last-child {
  margin-bottom: 0;
}
.tips-list li .icon {
  width: 22px;
  height: 22px;
  color: var(--color-mint);
  flex-shrink: 0;
  margin-top: 2px;
}
.rg-resources-mini {
  background-color: var(--surface-card);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border-default);
}
.rg-resources-mini h3 {
  font-size: 21px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.rg-resources-mini > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  line-height: 1.65;
}
.resource-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.resource-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background-color: var(--surface-card-hover);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.resource-card:hover {
  background-color: var(--color-mint);
}
.resource-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.rg-timeline {
  background: linear-gradient(180deg, var(--surface-base) 0%, var(--surface-elevated) 100%);
}
.timeline-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 55px;
}
.timeline {
  max-width: 720px;
  margin: 0 auto;
}
.timeline-item {
  display: flex;
  gap: 26px;
  margin-bottom: 32px;
  position: relative;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 65px;
  bottom: -32px;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-mint), var(--color-lime));
}
.timeline-item:last-child::before {
  display: none;
}
.timeline-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-lime) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-content {
  background-color: var(--surface-card);
  border-radius: 14px;
  padding: 26px;
  flex: 1;
  border: 1px solid var(--border-default);
}
.timeline-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.timeline-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.rg-resources-extended {
  background-color: var(--surface-elevated);
}
.resources-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 55px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.resource-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 22px;
  background-color: var(--surface-card);
  border-radius: 18px;
  border: 1px solid var(--border-default);
  transition: all 0.3s ease;
}
.resource-btn:hover {
  border-color: var(--color-mint);
  transform: translateY(-6px);
}
.resource-icon-wrapper {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.15;
}
.resource-icon-wrapper .icon {
  width: 32px;
  height: 32px;
}
.resource-icon-wrapper.gambleaware {
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--text-inverse);
}
.resource-icon-wrapper.gambleaware span {
  text-align: center;
}
.resource-icon-wrapper.gamcare {
  background-color: #7c3aed;
  color: white;
  font-size: 34px;
}
.resource-icon-wrapper.ncpg {
  background: linear-gradient(135deg, #5A2D84 0%, #7C7554 100%);
  color: white;
}
.resource-icon-wrapper.rgc {
  background: linear-gradient(135deg, #B92A2C 0%, #B6C7B0 100%);
  color: white;
  font-size: 19px;
}
.resource-icon-wrapper.gordon {
  background: linear-gradient(135deg, #8E3076 0%, #953084 100%);
  color: white;
}
.resource-icon-wrapper.peluuri {
  background: linear-gradient(135deg, #757589 0%, #C53697 100%);
  color: white;
}
.resource-btn h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.resource-btn p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .rg-hero-content {
    flex-direction: column;
    text-align: center;
  }
  .rg-hero-text h1 {
    font-size: 30px;
  }
  .rg-content {
    grid-template-columns: 1fr;
  }
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .timeline-item::before {
    display: none;
  }
}
.contact-hero {
  background: linear-gradient(135deg, var(--surface-elevated) 0%, var(--surface-base) 100%);
  padding: 85px 0;
  border-bottom: 1px solid var(--border-default);
}
.contact-hero-content {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}
.contact-hero-icon {
  width: 85px;
  height: 85px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-mint) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-hero-icon .icon {
  width: 42px;
  height: 42px;
  color: var(--text-primary);
}
.contact-hero-text h1 {
  font-size: 38px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.contact-hero-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}
.contact-content {
  background-color: var(--surface-base);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.contact-form-section h2,
.contact-info-section h2 {
  font-size: 26px;
  margin-bottom: 26px;
  color: var(--text-primary);
}
.contact-info-section > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-form {
  background-color: var(--surface-card);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border-default);
}
.form-group {
  margin-bottom: 22px;
}
.form-group:last-of-type {
  margin-bottom: 26px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--surface-base);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.25s ease;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-mint);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-secondary);
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
}
.btn-large {
  width: 100%;
  padding: 16px 26px;
  font-size: 15px;
}
.btn-large .icon {
  width: 18px;
  height: 18px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.contact-info-card {
  background-color: var(--surface-card);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--border-default);
  transition: border-color 0.25s ease;
}
.contact-info-card:hover {
  border-color: var(--color-mint);
}
.contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background-color: var(--color-mint-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon .icon {
  width: 26px;
  height: 26px;
  color: var(--color-mint);
}
.contact-info-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.contact-info-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.contact-note {
  background-color: var(--surface-card);
  border-left: 4px solid var(--color-lime);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  gap: 18px;
}
.note-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--color-lime-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.note-icon .icon {
  width: 22px;
  height: 22px;
  color: var(--color-lime);
}
.note-content h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.note-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.note-content a {
  color: var(--color-lime);
  text-decoration: underline;
}
.note-content a:hover {
  color: var(--color-mint);
}
@media (max-width: 768px) {
  .contact-hero-content {
    flex-direction: column;
    text-align: center;
  }
  .contact-hero-text h1 {
    font-size: 30px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact-form {
    padding: 26px;
  }
  .contact-note {
    flex-direction: column;
  }
}
.about-hero {
  background: linear-gradient(135deg, var(--surface-elevated) 0%, var(--surface-base) 100%);
  padding: 85px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-default);
}
.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.about-hero .hero-tagline {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}
.about-content {
  background-color: var(--surface-base);
}
.about-content .content-wrapper {
  max-width: 820px;
  margin: 0 auto;
}
.about-content h2 {
  font-size: 30px;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.about-content h3 {
  font-size: 22px;
  color: var(--text-primary);
  margin-top: 44px;
  margin-bottom: 18px;
}
.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-content p:last-child {
  margin-bottom: 0;
}
.about-values {
  background: linear-gradient(180deg, var(--surface-base) 0%, var(--surface-elevated) 100%);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value-item {
  background-color: var(--surface-card);
  border-radius: 18px;
  padding: 38px 28px;
  text-align: center;
  border: 1px solid var(--border-default);
  transition: all 0.3s ease;
}
.value-item:hover {
  border-color: var(--color-mint);
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.value-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-mint-soft) 0%, var(--color-lime-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.value-icon .icon {
  width: 32px;
  height: 32px;
  color: var(--color-mint);
}
.value-item h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.value-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 32px;
  }
  .about-hero .hero-tagline {
    font-size: 16px;
  }
  .about-content h2 {
    font-size: 26px;
  }
  .about-content h3 {
    font-size: 20px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .value-item {
    padding: 32px 24px;
  }
}
.games-hero {
  position: relative;
  padding: 85px 0;
  overflow: hidden;
}
.games-hero .hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--surface-elevated) 0%, var(--surface-base) 100%);
  z-index: -1;
}
.games-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, var(--color-mint-subtle) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, var(--color-lime-subtle) 0%, transparent 50%);
}
.games-hero .hero-container {
  position: relative;
  z-index: 1;
}
.games-hero .hero-content {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.games-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.games-hero p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}
.games-grid-section {
  background-color: var(--surface-base);
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.game-card-large {
  background-color: var(--surface-card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-default);
  transition: all 0.3s ease;
}
.game-card-large:hover {
  border-color: var(--color-mint);
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}
.game-card-large .game-image {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.game-card-large .game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card-large:hover .game-image img {
  transform: scale(1.08);
}
.game-card-large .game-info {
  padding: 26px;
}
.game-card-large .game-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.game-card-large .game-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.game-card-large .game-info .button {
  width: 100%;
  padding: 13px 24px;
  font-size: 14px;
}
.games-info-section {
  background: linear-gradient(180deg, var(--surface-base) 0%, var(--surface-elevated) 100%);
  padding: 70px 0;
}
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  background-color: var(--surface-card);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border-default);
  border-left: 4px solid var(--color-lime);
  max-width: 900px;
  margin: 0 auto;
}
.info-box-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-lime-soft) 0%, var(--color-mint-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-box-icon .icon {
  width: 28px;
  height: 28px;
  color: var(--color-lime);
}
.info-box-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.info-box-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 1024px) {
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .games-hero h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .games-hero {
    padding: 65px 0;
  }
  .games-hero h1 {
    font-size: 30px;
  }
  .games-hero p {
    font-size: 15px;
  }
  .game-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .game-card-large .game-info {
    padding: 22px;
  }
  .game-card-large .game-info h3 {
    font-size: 18px;
  }
  .info-box {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }
  .info-box-icon {
    margin: 0 auto;
  }
  .info-box-content h3 {
    font-size: 18px;
  }
  .info-box-content p {
    font-size: 14px;
  }
}