@font-face {
  font-family: "Sora";
  src: url("https://3pattino1.online/fonts/sora-semibold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("https://3pattino1.online/fonts/sora-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("https://3pattino1.online/fonts/dmsans-regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("https://3pattino1.online/fonts/dmsans-medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --emerald-900: #022c22;
  --emerald-800: #064e3b;
  --emerald-700: #065f46;
  --emerald-600: #047857;
  --emerald-500: #059669;
  --emerald-400: #10b981;
  --emerald-100: #d1fae5;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --gold-dark: #d97706;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 72px 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--emerald-800);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 40px;
}
.gold-line {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 78, 59, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.3px;
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.logo span {
  color: var(--gold);
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover {
  color: var(--gold);
}
nav a.active {
  color: var(--gold);
}
.header-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--emerald-900) !important;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.9rem !important;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s !important;
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.5) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.5);
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--emerald-700);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--emerald-500);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  background: var(--emerald-800);
  color: var(--white);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--emerald-900);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 17px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(245, 158, 11, 0.55);
}

.breadcrumb-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}
.breadcrumb__link {
  color: #047857;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.breadcrumb__link:hover {
  color: var(--emerald-800);
}
.breadcrumb__sep {
  color: var(--gray-400);
}
.breadcrumb__current {
  color: var(--gray-700);
  font-weight: 600;
}

.about-hero {
  background: linear-gradient(
    160deg,
    var(--emerald-900) 0%,
    var(--emerald-800) 55%,
    #0a3d2d 100%
  );
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.about-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(5, 150, 105, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.about-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}
.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}
.about-hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.about-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-pill-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(5, 150, 105, 0.18);
  border: 1px solid rgba(5, 150, 105, 0.35);
  color: #6ee7b7;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.about-hero-stats {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-stat-card {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-stat-card:last-child {
  border-bottom: none;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about-stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 500;
}
.about-stat-sub {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
}

.about-game {
  background: var(--white);
}
.about-game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-game-content p {
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.about-pillar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.about-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.api-gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.api-green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.api-blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.api-purple {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}
.about-pillar-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--emerald-800);
  margin-bottom: 3px;
}
.about-pillar-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--emerald-800);
  margin-bottom: 3px;
}
.about-pillar-body p {
  color: var(--gray-600);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
}
.about-game-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agv-card {
  background: linear-gradient(160deg, var(--emerald-900), #0a3d2d);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.agv-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.agv-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.agv-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
}
.agv-stat-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.agv-stat-lbl {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}
.agv-features-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
}
.agv-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
}
.agv-features-list li::before {
  content: "✓";
  color: var(--emerald-400);
  font-weight: 800;
  flex-shrink: 0;
}

.fair-play {
  background: var(--gray-50);
}
.fair-play-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.fp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-500), var(--emerald-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.fp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.fp-card:hover::before {
  transform: scaleX(1);
}
.fp-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.fpi-green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.fpi-gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.fpi-blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.fpi-teal {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}
.fpi-purple {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}
.fpi-rose {
  background: linear-gradient(135deg, #ffe4e6, #fecdd3);
}
.fp-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--emerald-900);
}
.fp-card p {
  color: var(--gray-600);
  font-size: 0.86rem;
  line-height: 1.65;
}
.fp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 50px;
  margin-top: auto;
  width: fit-content;
}
.fp-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-500);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.security-banner {
  background: linear-gradient(135deg, var(--emerald-900), #0a3d2d);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 36px;
  box-shadow: 0 12px 40px rgba(6, 78, 59, 0.3);
  overflow: hidden;
}
.sb-item {
  padding: 20px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.sb-item:last-child {
  border-right: none;
}
.sb-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.sb-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  line-height: 1.3;
}

.game-variants {
  background: var(--white);
}
.variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.variant-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.variant-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.variant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.variant-card:hover::before {
  transform: scaleX(1);
}
.variant-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.vi-gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.vi-green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.vi-blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.vi-pink {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}
.vi-purple {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}
.vi-teal {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}
.vi-rose {
  background: linear-gradient(135deg, #ffe4e6, #fecdd3);
}
.vi-orange {
  background: linear-gradient(135deg, #ffedd5, #fed7aa);
}
.vi-indigo {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}
.vi-lime {
  background: linear-gradient(135deg, #ecfccb, #d9f99d);
}
.variant-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--emerald-800);
}
.variant-desc {
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}
.variant-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  width: fit-content;
  margin-top: auto;
}

.community {
  background: var(--gray-50);
}
.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.community-content .section-sub {
  max-width: 100%;
}
.community-content p {
  color: var(--gray-600);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.community-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comm-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.comm-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.comm-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.cci-gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.cci-green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.cci-blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.comm-card-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--emerald-800);
  margin-bottom: 3px;
}
.comm-card-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--emerald-800);
  margin-bottom: 3px;
}
.comm-card-body p {
  color: var(--gray-600);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
}
.community-visual {
  background: linear-gradient(160deg, var(--emerald-900), #0a3d2d);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.cv-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 24px;
}
.cv-testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cv-testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 16px;
}
.cv-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.cv-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}
.cv-reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cv-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.cv-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.cv-city {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.responsible {
  background: var(--emerald-900);
  position: relative;
  overflow: hidden;
}
.responsible::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(245, 158, 11, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.responsible .section-title {
  color: var(--white);
}
.responsible .section-sub {
  color: rgba(255, 255, 255, 0.6);
}
.responsible .gold-line {
  background: var(--gold);
}
.rg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.rg-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rg-icon {
  font-size: 2rem;
  line-height: 1;
}
.rg-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-light);
}
.rg-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.87rem;
  line-height: 1.65;
}
.rg-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
}
.rg-notice {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.rg-notice p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}
.rg-notice strong {
  color: var(--gold-light);
}

.technical {
  background: var(--white);
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tech-content p {
  color: var(--gray-600);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.tech-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tech-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.tech-spec:last-child {
  border-bottom: none;
}
.ts-label {
  color: var(--gray-500);
  font-size: 0.85rem;
}
.ts-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--emerald-700);
}
.tech-compat {
  background: linear-gradient(135deg, var(--emerald-900), #0a3d2d);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.tc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.tc-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 16px;
}
.tc-item-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.tc-item-body {
  flex: 1;
}
.tc-item-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 2px;
}
.tc-item-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}
.tc-check {
  color: var(--emerald-400);
  font-size: 1rem;
  font-weight: 800;
}

.about-faq {
  background: var(--gray-50);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--emerald-800);
}
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition:
    transform 0.3s,
    background 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--emerald-600);
  color: var(--white);
}
.faq-answer {
  display: none;
  padding: 16px 24px 20px;
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}
.faq-item.open .faq-answer {
  display: block;
}

.about-cta {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 20px;
}
.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(245, 158, 11, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.about-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.about-cta-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.about-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.safe-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 999px;
  position: relative;
  z-index: 1;
}
.req-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
.req-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}
.req-item::before {
  content: "•";
  color: var(--gold);
}

.disclaimer {
  background: #111827;
  padding: 32px 0;
  border-top: 3px solid var(--gold);
}
.disclaimer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.disclaimer-icon {
  font-size: 1.5rem;
  min-width: 32px;
  margin-top: 4px;
}
.disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.disclaimer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.75;
}
.disclaimer-subtext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}
.disclaimer-text strong {
  color: var(--gold);
  font-weight: 700;
}
.disclaimer-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.disclaimer-link:hover {
  opacity: 0.7;
  color: var(--gold);
}

footer {
  background: var(--emerald-900);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.social-btn[aria-label*="Facebook"]:hover {
  color: #1877f2;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
  background: rgba(24, 119, 242, 0.12);
}
.social-btn[aria-label*="Instagram"]:hover {
  color: #e1306c;
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.5);
  background: rgba(225, 48, 108, 0.12);
}
.social-btn[aria-label*="YouTube"]:hover {
  color: #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  background: rgba(255, 0, 0, 0.12);
}
.footer-col h3,
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.sticky-dl-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--emerald-900);
  border-top: 2px solid var(--gold);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.35);
}
.sticky-dl-bar.sdb-visible {
  transform: translateY(0);
}
.sdb-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: contain;
  flex-shrink: 0;
}
.sdb-text {
  flex: 1;
  min-width: 0;
}
.sdb-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sdb-rating {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 1px;
}
.sdb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--emerald-900);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 9px 16px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.4);
}
.sdb-dismiss {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}
.sdb-dismiss:hover {
  color: rgba(255, 255, 255, 0.7);
}

.mt-20 {
  margin-top: 20px;
}
.mt-32 {
  margin-top: 32px;
}
.earn-notice {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-left: 4px solid #22c55e;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 32px;
  color: #166534;
  font-size: 0.9rem;
  line-height: 1.5;
}
.earn-notice strong {
  color: var(--gold-dark);
}
.earn-notice a {
  color: var(--emerald-700);
  font-weight: 600;
  text-decoration: underline;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .container {
    padding: 0 16px;
  }
  nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--emerald-900);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
  }
  nav.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .about-hero-sub {
    margin: 0 auto 32px;
    text-align: center;
  }
  .about-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .about-hero-actions a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin: 0 auto;
  }
  .trust-pill-row {
    justify-content: center;
  }
  .about-hero-stats {
    align-self: auto;
  }
  .about-stat-card {
    border-right: none;
  }
  .about-game-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fair-play-grid {
    grid-template-columns: 1fr;
  }
  .security-banner {
    grid-template-columns: repeat(2, 1fr);
  }
  .sb-item:nth-child(2) {
    border-right: none;
  }
  .sb-item:nth-child(1),
  .sb-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .variants-grid {
    grid-template-columns: 1fr 1fr;
  }
  .community-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rg-grid {
    grid-template-columns: 1fr;
  }
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .about-cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .about-cta-actions a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin: 0 auto;
  }
  .disclaimer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .section {
    padding: 52px 0;
  }
}
@media (max-width: 480px) {
  .variants-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .security-banner {
    grid-template-columns: 1fr 1fr;
  }
  .agv-stat-val {
    font-size: 1.1rem;
  }
  .tech-spec {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 769px) {
  .sticky-dl-bar {
    display: none !important;
  }
}

.about-game-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap; /* 🔥 MOST IMPORTANT */
}

.about-game-content,
.about-game-visual {
  flex: 1 1 320px; /* allows shrinking properly */
  min-width: 0; /* 🔥 prevents text overflow cut */
}

.about-game-content p,
.about-game-content h2,
.about-game-content h4 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.agv-card {
  width: 100%;
  max-width: 100%;
}

.agv-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.agv-stat {
  flex: 1 1 120px;
  min-width: 120px;
}

.agv-features-list {
  padding-left: 18px;
}

@media (max-width: 480px) {
  .about-game-grid {
    flex-direction: column;
  }

  .agv-stat {
    flex: 1 1 100%;
  }

  .container {
    padding: 0 12px;
  }
}
