:root {
  --tgh-bg: #090e0c;
  --tgh-surface: #121a17;
  --tgh-surface-alt: #1a2420;
  --tgh-accent: #d4af37;
  --tgh-accent-hover: #f1cf65;
  --tgh-text: #eaeaea;
  --tgh-text-muted: #9ba6a0;
  --tgh-border: #2c3a33;
  --tgh-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --tgh-font-serif: "Georgia", "Times New Roman", Times, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--tgh-font-sans);
  background-color: var(--tgh-bg);
  color: var(--tgh-text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--tgh-font-serif);
  font-weight: normal;
  color: var(--tgh-accent);
}
a { color: var(--tgh-text); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--tgh-accent); }
ul { list-style: none; }

.tgh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.tgh-header-bar {
  background-color: rgba(9, 14, 12, 0.95);
  border-bottom: 1px solid var(--tgh-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
}
.tgh-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tgh-brand-box {
  display: flex;
  flex-direction: column;
}
.tgh-logo-text {
  font-family: var(--tgh-font-serif);
  font-size: 28px;
  color: var(--tgh-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.tgh-brand-subtitle {
  font-size: 12px;
  color: var(--tgh-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tgh-age-badge {
  border: 1px solid var(--tgh-accent);
  color: var(--tgh-accent);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Hero Section */
.tgh-showcase-zone {
  padding: 120px 0 100px;
  background: radial-gradient(circle at top center, var(--tgh-surface-alt) 0%, var(--tgh-bg) 70%);
  border-bottom: 1px solid var(--tgh-border);
  text-align: center;
}
.tgh-hero-label {
  display: inline-block;
  font-size: 14px;
  color: var(--tgh-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--tgh-accent);
  padding-bottom: 5px;
}
.tgh-hero-title {
  font-size: 64px;
  margin-bottom: 30px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.tgh-hero-desc {
  max-width: 800px;
  margin: 0 auto 70px;
  font-size: 18px;
  color: var(--tgh-text-muted);
}
.tgh-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tgh-hero-card {
  background-color: var(--tgh-surface);
  border: 1px solid var(--tgh-border);
  padding: 35px 25px;
  border-radius: 4px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.tgh-hero-card:hover {
  transform: translateY(-5px);
  border-color: var(--tgh-accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.tgh-hcard-title {
  font-family: var(--tgh-font-sans);
  font-size: 16px;
  color: var(--tgh-text);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.tgh-hcard-text {
  font-size: 14px;
  color: var(--tgh-text-muted);
}

/* Generic Section (Safety & Play) */
.tgh-generic-segment {
  padding: 120px 0;
  border-bottom: 1px solid var(--tgh-border);
}
.tgh-section-head {
  text-align: center;
  margin-bottom: 70px;
}
.tgh-section-title {
  font-size: 44px;
  margin-bottom: 25px;
}
.tgh-section-intro {
  max-width: 750px;
  margin: 0 auto;
  color: var(--tgh-text-muted);
  font-size: 17px;
}
.tgh-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tgh-content-card {
  background-color: var(--tgh-surface);
  border: 1px solid var(--tgh-border);
  padding: 45px 35px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.tgh-content-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background-color: var(--tgh-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.tgh-content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.tgh-content-card:hover::before {
  transform: scaleX(1);
}
.tgh-card-kicker {
  font-size: 12px;
  color: var(--tgh-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}
.tgh-card-title {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--tgh-text);
  font-family: var(--tgh-font-serif);
}
.tgh-card-text {
  font-size: 15px;
  color: var(--tgh-text-muted);
  margin-bottom: 30px;
  min-height: 65px;
}
.tgh-card-list {
  border-top: 1px solid var(--tgh-border);
  padding-top: 25px;
}
.tgh-card-list li {
  font-size: 14px;
  color: var(--tgh-text);
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}
.tgh-card-list li:last-child {
  margin-bottom: 0;
}
.tgh-card-list li::before {
  content: '♦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--tgh-accent);
  font-size: 14px;
}

/* Alternating section background */
.tgh-safety-segment { background-color: var(--tgh-bg); }
.tgh-play-segment { background-color: var(--tgh-surface-alt); }

/* Footer */
.tgh-footer-area {
  background-color: #050807;
  padding: 90px 0 40px;
}
.tgh-footer-slogan {
  text-align: center;
  font-size: 28px;
  color: var(--tgh-accent);
  margin-bottom: 60px;
  font-style: italic;
  font-family: var(--tgh-font-serif);
}
.tgh-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.tgh-footer-col h4 {
  font-family: var(--tgh-font-sans);
  color: var(--tgh-text);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--tgh-border);
  padding-bottom: 15px;
}
.tgh-footer-text {
  color: var(--tgh-text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}
.tgh-warning-box {
  border: 1px solid var(--tgh-border);
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}
.tgh-warning-box p {
  color: var(--tgh-text-muted);
  font-size: 14px;
  margin: 0;
}
.tgh-footer-nav li, .tgh-footer-contact li {
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--tgh-text-muted);
}
.tgh-footer-nav li a {
  display: inline-block;
}
.tgh-footer-contact strong {
  color: var(--tgh-text);
  font-weight: normal;
  display: block;
  margin-bottom: 5px;
}
.tgh-footer-bottom {
  text-align: center;
  border-top: 1px solid var(--tgh-border);
  padding-top: 25px;
  font-size: 13px;
  color: var(--tgh-text-muted);
}

/* Responsive */
@media (max-width: 992px) {
  .tgh-hero-grid, .tgh-cards-grid, .tgh-footer-grid {
    grid-template-columns: 1fr;
  }
  .tgh-hero-title {
    font-size: 44px;
  }
  .tgh-footer-grid {
    gap: 40px;
  }
  .tgh-card-text {
    min-height: auto;
  }
}
@media (max-width: 576px) {
  .tgh-header-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .tgh-hero-title {
    font-size: 36px;
  }
  .tgh-section-title {
    font-size: 32px;
  }
}
