@import url("https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700;800&family=Unbounded:wght@500;600;700;800&display=swap");

:root {
  --tp-ink: #152032;
  --tp-ink-soft: #3d4b63;
  --tp-mute: #66748a;
  --tp-paper: #f3f7fb;
  --tp-snow: #ffffff;
  --tp-lime: #c6f235;
  --tp-lime-deep: #9dca12;
  --tp-cobalt: #2457d6;
  --tp-sky: #d9ebf8;
  --tp-line: #d5e0ec;
  --tp-font-display: "Unbounded", sans-serif;
  --tp-font-body: "Onest", sans-serif;
  --tp-radius: 0.35rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--tp-font-body);
  color: var(--tp-ink);
  background-color: var(--tp-paper);
  background-image:
    linear-gradient(180deg, #eaf4fc 0%, var(--tp-paper) 32%, #eef3f8 100%),
    repeating-linear-gradient(
      -12deg,
      rgba(36, 87, 214, 0.03) 0 2px,
      transparent 2px 14px
    );
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.tp-navbar {
  position: relative;
  z-index: 40;
  padding: 0.95rem 0;
  background: rgba(243, 247, 251, 0.92);
  border-bottom: 2px solid var(--tp-ink);
}

.tp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.tp-brand-mark {
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--tp-ink);
  background: var(--tp-ink);
  border-radius: var(--tp-radius);
}

.tp-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tp-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.tp-brand-copy .tp-name {
  font-family: var(--tp-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--tp-ink);
}

.tp-brand-copy .tp-tag {
  margin-top: 0.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-cobalt);
}

.tp-nav-toggler {
  width: 46px;
  height: 46px;
  border: 2px solid var(--tp-ink);
  background: var(--tp-snow);
  color: var(--tp-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--tp-radius);
}

.tp-nav-toggler:focus {
  outline: none;
  box-shadow: 3px 3px 0 var(--tp-lime);
}

.tp-nav-toggler .navbar-toggler-icon {
  width: 1.15rem;
  height: 1.15rem;
  background-image: none;
  position: relative;
}

.tp-nav-toggler .navbar-toggler-icon,
.tp-nav-toggler .navbar-toggler-icon::before,
.tp-nav-toggler .navbar-toggler-icon::after {
  display: block;
  background: var(--tp-ink);
  height: 2px;
  width: 100%;
  border-radius: 0;
}

.tp-nav-toggler .navbar-toggler-icon::before,
.tp-nav-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.tp-nav-toggler .navbar-toggler-icon::before {
  top: -6px;
}

.tp-nav-toggler .navbar-toggler-icon::after {
  top: 6px;
}

.tp-nav-links {
  gap: 0.15rem;
}

.tp-nav-links .nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--tp-ink-soft) !important;
  padding: 0.5rem 0.8rem !important;
  border: 2px solid transparent;
  border-radius: var(--tp-radius);
}

.tp-nav-links .nav-link:hover,
.tp-nav-links .nav-link:focus {
  color: var(--tp-ink) !important;
  background: var(--tp-snow);
  border-color: var(--tp-line);
}

.tp-nav-links .nav-link.active {
  color: var(--tp-ink) !important;
  background: var(--tp-lime);
  border-color: var(--tp-ink);
}

.tp-nav-cta {
  margin-left: 0.4rem;
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  font-family: var(--tp-font-body);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.85rem 1.35rem;
  cursor: pointer;
}

.tp-btn-primary {
  background: var(--tp-lime);
  color: var(--tp-ink);
  box-shadow: 4px 4px 0 var(--tp-ink);
}

.tp-btn-primary:hover {
  transform: translate(-2px, -2px);
  color: var(--tp-ink);
  box-shadow: 6px 6px 0 var(--tp-ink);
}

.tp-btn-ghost {
  background: var(--tp-snow);
  color: var(--tp-ink);
  box-shadow: 4px 4px 0 var(--tp-cobalt);
}

.tp-btn-ghost:hover {
  transform: translate(-2px, -2px);
  color: var(--tp-ink);
  box-shadow: 6px 6px 0 var(--tp-cobalt);
}

.tp-hero {
  position: relative;
  padding: 4.2rem 0 5rem;
  overflow: hidden;
}

.tp-hero-grid {
  position: absolute;
  inset: 8% 6% auto auto;
  width: min(420px, 40vw);
  height: min(420px, 40vw);
  border: 2px solid rgba(36, 87, 214, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.tp-hero-grid::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 2px dashed rgba(21, 32, 50, 0.12);
  border-radius: 50%;
}

.tp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  padding: 0.45rem 0.75rem;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  color: var(--tp-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--tp-radius);
  animation: tp-rise 0.7s ease both;
}

.tp-kicker i {
  color: var(--tp-cobalt);
}

.tp-hero-title {
  font-family: var(--tp-font-display);
  font-weight: 800;
  font-size: clamp(2.15rem, 4.8vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 1.1rem;
  color: var(--tp-ink);
  animation: tp-rise 0.75s ease 0.05s both;
}

.tp-hero-title span {
  display: inline;
  background-image: linear-gradient(180deg, transparent 62%, var(--tp-lime) 62%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.tp-hero-text {
  font-size: 1.05rem;
  color: var(--tp-mute);
  max-width: 34rem;
  margin-bottom: 1.6rem;
  animation: tp-rise 0.8s ease 0.1s both;
}

.tp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
  animation: tp-rise 0.85s ease 0.15s both;
}

.tp-hero-features {
  display: grid;
  gap: 0.65rem;
  animation: tp-rise 0.9s ease 0.2s both;
}

.tp-feature {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid var(--tp-line);
  border-radius: var(--tp-radius);
}

.tp-feature i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--tp-cobalt);
  color: var(--tp-snow);
  border-radius: var(--tp-radius);
}

.tp-feature strong {
  display: block;
  font-size: 0.92rem;
  color: var(--tp-ink);
}

.tp-feature span {
  display: block;
  font-size: 0.82rem;
  color: var(--tp-mute);
}

.tp-hero-visual {
  position: relative;
  animation: tp-slide 0.95s ease 0.12s both;
}

.tp-hero-frame {
  position: relative;
  z-index: 2;
  border: 2px solid var(--tp-ink);
  background: var(--tp-snow);
  border-radius: var(--tp-radius);
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--tp-cobalt);
}

.tp-hero-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.tp-games {
  position: relative;
  padding: 1rem 0 5rem;
}

.tp-section-head {
  max-width: 42rem;
  margin: 0 0 2.25rem;
}

.tp-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.7rem;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tp-ink);
}

.tp-section-kicker i {
  color: var(--tp-cobalt);
}

.tp-section-title {
  font-family: var(--tp-font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: var(--tp-ink);
}

.tp-section-text {
  margin: 0;
  color: var(--tp-mute);
  font-size: 1.02rem;
}

.tp-game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--tp-ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-game-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--tp-cobalt);
}

.tp-game-media {
  border-bottom: 2px solid var(--tp-ink);
  background: var(--tp-sky);
  overflow: hidden;
}

.tp-game-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.tp-game-card:hover .tp-game-media img {
  transform: scale(1.04);
}

.tp-game-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.15rem 1.15rem 1.3rem;
  flex: 1;
}

.tp-game-type {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.28rem 0.55rem;
  border: 2px solid var(--tp-line);
  background: var(--tp-paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tp-cobalt);
  border-radius: var(--tp-radius);
}

.tp-game-title {
  margin: 0;
  font-family: var(--tp-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tp-game-title a {
  color: var(--tp-ink);
}

.tp-game-title a:hover {
  color: var(--tp-cobalt);
}

.tp-game-text {
  margin: 0;
  color: var(--tp-mute);
  font-size: 0.92rem;
  flex: 1;
}

.tp-game-play {
  width: 100%;
  margin-top: 0.35rem;
}

.tp-hero-slash {
  position: absolute;
  z-index: 1;
  inset: auto auto -1rem -1rem;
  width: 55%;
  height: 42%;
  background: var(--tp-sky);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
}

.tp-about,
.tp-experience,
.tp-disclaimer,
.tp-values {
  padding: 4.5rem 0;
}

.tp-section-head-center {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tp-section-head-center .tp-section-kicker {
  margin-left: auto;
  margin-right: auto;
}

.tp-prose p {
  margin: 0 0 1.15rem;
  color: var(--tp-ink-soft);
  font-size: 1.02rem;
}

.tp-prose p:last-child {
  margin-bottom: 0;
}

.tp-about-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.tp-about-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  box-shadow: 4px 4px 0 var(--tp-sky);
}

.tp-about-point i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--tp-lime);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  color: var(--tp-ink);
}

.tp-about-point strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--tp-ink);
}

.tp-about-point span {
  color: var(--tp-mute);
  font-size: 0.92rem;
}

.tp-experience {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(217, 235, 248, 0.45));
  border-top: 2px solid var(--tp-line);
  border-bottom: 2px solid var(--tp-line);
}

.tp-step {
  height: 100%;
  padding: 1.35rem 1.25rem;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  box-shadow: 5px 5px 0 var(--tp-ink);
}

.tp-step-num {
  font-family: var(--tp-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--tp-cobalt);
  margin-bottom: 0.7rem;
}

.tp-step h3 {
  font-family: var(--tp-font-display);
  font-size: 1.15rem;
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
}

.tp-step p {
  margin: 0;
  color: var(--tp-mute);
  font-size: 0.95rem;
}

.tp-experience-panel {
  margin-top: 2rem;
  padding: 1.6rem 1.4rem;
  background: var(--tp-ink);
  color: #e8f0f8;
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  box-shadow: 8px 8px 0 var(--tp-lime);
}

.tp-experience-panel h3 {
  font-family: var(--tp-font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.9rem;
}

.tp-experience-panel p {
  color: #b7c7d8;
  margin: 0 0 1rem;
}

.tp-experience-panel p:last-child {
  margin-bottom: 0;
}

.tp-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.tp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--tp-radius);
  color: #eef4fb;
  font-size: 0.92rem;
}

.tp-check-list i {
  color: var(--tp-lime);
  margin-top: 0.15rem;
}

.tp-disclaimer-box {
  padding: 1.8rem 1.5rem;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  box-shadow: 8px 8px 0 var(--tp-cobalt);
}

.tp-disclaimer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.tp-value {
  height: 100%;
  padding: 1.4rem 1.25rem;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
}

.tp-value i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: var(--tp-lime);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  color: var(--tp-ink);
}

.tp-value h3 {
  font-family: var(--tp-font-display);
  font-size: 1.12rem;
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
}

.tp-value p {
  margin: 0;
  color: var(--tp-mute);
  font-size: 0.95rem;
}

.tp-footer {
  border-top: 2px solid var(--tp-ink);
  background: var(--tp-ink);
  color: #b8c7d9;
  padding: 3.2rem 0 1.6rem;
}

.tp-footer-brand .tp-name {
  color: #f4f8fc;
}

.tp-footer-brand .tp-tag {
  color: var(--tp-lime);
}

.tp-footer-lead {
  margin: 1.1rem 0 1.25rem;
  color: #a9bbcf;
  font-size: 0.95rem;
}

.tp-footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.tp-footer-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.45rem 0.6rem;
  background: #0f1c2c;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--tp-radius);
}

.tp-footer-badges img {
  max-height: 36px;
  width: auto;
}

.tp-footer-heading {
  font-family: var(--tp-font-display);
  font-size: 0.95rem;
  color: #f4f8fc;
  margin: 0 0 0.9rem;
  letter-spacing: -0.01em;
}

.tp-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.tp-footer-links a {
  color: #a9bbcf;
  font-weight: 500;
  font-size: 0.92rem;
}

.tp-footer-links a:hover {
  color: var(--tp-lime);
}

.tp-footer-disclaimer {
  margin-top: 2.2rem;
  padding: 1.2rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--tp-radius);
  background: rgba(255, 255, 255, 0.03);
}

.tp-footer-disclaimer p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #a9bbcf;
}

.tp-footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.tp-footer-disclaimer strong {
  color: #eef4fb;
}

.tp-footer-bottom {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: #8fa3b8;
}

@keyframes tp-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tp-slide {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991.98px) {
  .tp-navbar .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.85rem;
    border: 2px solid var(--tp-ink);
    background: var(--tp-snow);
    border-radius: var(--tp-radius);
  }

  .tp-nav-cta {
    margin: 0.55rem 0 0;
  }

  .tp-nav-cta .tp-btn {
    width: 100%;
  }

  .tp-hero {
    padding: 2.8rem 0 3.5rem;
  }

  .tp-hero-visual {
    margin-top: 2rem;
  }

  .tp-hero-frame {
    box-shadow: 7px 7px 0 var(--tp-cobalt);
  }

  .tp-about,
  .tp-experience,
  .tp-disclaimer,
  .tp-values {
    padding: 3.2rem 0;
  }

  .tp-experience-panel {
    box-shadow: 6px 6px 0 var(--tp-lime);
  }

  .tp-disclaimer-box {
    box-shadow: 6px 6px 0 var(--tp-cobalt);
  }
}

@media (max-width: 575.98px) {
  .tp-brand-copy .tp-name {
    font-size: 0.95rem;
  }

  .tp-hero-frame img {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.tp-scroll-lock {
  overflow: hidden !important;
  height: 100% !important;
}

.tp-age-gate,
.tp-age-restrict {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(21, 32, 50, 0.28);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
}

.tp-age-gate.is-open,
.tp-age-restrict.is-open {
  display: flex;
}

.tp-age-card {
  width: min(420px, 100%);
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  box-shadow: 8px 8px 0 var(--tp-lime);
  padding: 1.6rem 1.35rem;
  text-align: center;
}

.tp-age-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.9rem;
  display: grid;
  place-items: center;
  background: var(--tp-lime);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  color: var(--tp-ink);
  font-size: 1.25rem;
}

.tp-age-card h2 {
  font-family: var(--tp-font-display);
  font-size: 1.35rem;
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
}

.tp-age-card p {
  margin: 0 0 1.2rem;
  color: var(--tp-mute);
  font-size: 0.95rem;
}

.tp-age-actions,
.tp-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.tp-cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1900;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  box-shadow: 6px 6px 0 var(--tp-cobalt);
  padding: 1rem 1.1rem;
}

.tp-cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.tp-cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  color: var(--tp-ink-soft);
  font-size: 0.9rem;
}

.tp-cookie-inner a {
  color: var(--tp-cobalt);
  font-weight: 700;
  text-decoration: underline;
}

.tp-page-hero {
  padding: 3.2rem 0 2rem;
  border-bottom: 2px solid var(--tp-line);
  background: linear-gradient(180deg, #eaf4fc 0%, transparent 100%);
}

.tp-page-hero h1 {
  font-family: var(--tp-font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
}

.tp-page-hero p {
  max-width: 46rem;
  margin: 0;
  color: var(--tp-mute);
  font-size: 1.05rem;
}

.tp-page-content {
  padding: 3rem 0 4.5rem;
}

.tp-page-content .tp-prose p,
.tp-page-content .tp-prose li {
  font-size: 1.02rem;
  color: var(--tp-ink-soft);
}

.tp-page-content .tp-prose h2 {
  font-family: var(--tp-font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.8rem;
  letter-spacing: -0.02em;
}

.tp-page-content .tp-prose h3 {
  font-family: var(--tp-font-display);
  font-size: 1.1rem;
  margin: 1.4rem 0 0.55rem;
}

.tp-faq-item {
  margin-bottom: 0.9rem;
  padding: 1.1rem 1.15rem;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
}

.tp-faq-item h3 {
  font-family: var(--tp-font-display);
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
}

.tp-faq-item p {
  margin: 0;
  color: var(--tp-mute);
}

.tp-news-card {
  height: 100%;
  padding: 1.25rem;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  box-shadow: 5px 5px 0 var(--tp-sky);
}

.tp-news-card .tp-news-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tp-cobalt);
  margin-bottom: 0.55rem;
}

.tp-news-card h3 {
  font-family: var(--tp-font-display);
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
}

.tp-news-card p {
  margin: 0;
  color: var(--tp-mute);
}

.tp-contact-panel {
  padding: 1.5rem;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  box-shadow: 8px 8px 0 var(--tp-lime);
}

.tp-contact-panel a {
  color: var(--tp-cobalt);
  font-weight: 700;
}

.tp-game-playpage {
  padding: 2.5rem 0 4rem;
}

.tp-game-stage {
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
  background: linear-gradient(160deg, #10243a 0%, #1a3a58 45%, #0d1c2d 100%);
  box-shadow: 10px 10px 0 var(--tp-cobalt);
  overflow: hidden;
  color: #eef5fb;
  padding: 1.25rem;
  position: relative;
}

.tp-game-stage::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(198, 242, 53, 0.25), transparent 70%);
  pointer-events: none;
}

.tp-game-disclaimer {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  background: var(--tp-snow);
  border: 2px solid var(--tp-ink);
  border-radius: var(--tp-radius);
}

.tp-game-disclaimer h3 {
  font-family: var(--tp-font-display);
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
}

.tp-game-disclaimer p {
  margin: 0;
  color: var(--tp-mute);
  font-size: 0.95rem;
}

.tp-slot-wrap {
  position: relative;
  z-index: 1;
}

.tp-slot-hud {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tp-slot-hud .chip {
  padding: 0.55rem 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--tp-radius);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.tp-slot-machine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.tp-slot-reel {
  min-height: 150px;
  border: 2px solid rgba(198, 242, 53, 0.55);
  border-radius: var(--tp-radius);
  background: linear-gradient(180deg, #0b1726, #17324d);
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  box-shadow: inset 0 0 24px rgba(36, 87, 214, 0.35), 0 0 18px rgba(198, 242, 53, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-slot-reel.is-spin {
  animation: tp-reel-spin 0.18s linear infinite;
}

.tp-slot-msg {
  min-height: 1.5rem;
  margin-bottom: 0.9rem;
  font-weight: 700;
  color: var(--tp-lime);
  text-align: center;
}

.tp-bj-table,
.tp-roulette-table {
  position: relative;
  z-index: 1;
}

.tp-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.6rem 0 1rem;
  min-height: 94px;
}

.tp-card-face {
  width: 62px;
  height: 88px;
  border-radius: 0.45rem;
  border: 2px solid #152032;
  background: linear-gradient(160deg, #fff, #e8eef8);
  color: #152032;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  animation: tp-card-in 0.35s ease both;
}

.tp-card-face.red {
  color: #d62828;
}

.tp-card-face.back {
  background: linear-gradient(145deg, #2457d6, #1a3f9b);
  color: #fff;
  border-color: #0d1c2d;
}

.tp-bj-actions,
.tp-roulette-actions,
.tp-slot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tp-wheel-box {
  display: grid;
  place-items: center;
  margin: 0.5rem 0 1rem;
}

.tp-wheel {
  width: min(280px, 78vw);
  height: min(280px, 78vw);
  border-radius: 50%;
  border: 6px solid #c6f235;
  box-shadow: 0 0 0 4px #152032, 0 0 30px rgba(198, 242, 53, 0.35), inset 0 0 40px rgba(0, 0, 0, 0.35);
  background: conic-gradient(
    #2457d6 0 30deg,
    #c6f235 30deg 60deg,
    #ff5a4e 60deg 90deg,
    #2457d6 90deg 120deg,
    #c6f235 120deg 150deg,
    #1cd4c3 150deg 180deg,
    #2457d6 180deg 210deg,
    #c6f235 210deg 240deg,
    #ff5a4e 240deg 270deg,
    #2457d6 270deg 300deg,
    #c6f235 300deg 330deg,
    #1cd4c3 330deg 360deg
  );
  position: relative;
  transition: transform 3.4s cubic-bezier(0.12, 0.75, 0.1, 1);
}

.tp-wheel::after {
  content: "";
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: #10243a;
  border: 3px solid #c6f235;
}

.tp-wheel-pointer {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 22px solid #c6f235;
  margin-bottom: 0.35rem;
  filter: drop-shadow(0 2px 0 #152032);
}

.tp-bet-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.tp-bet-row button {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: var(--tp-radius);
  padding: 0.45rem 0.75rem;
  font-weight: 700;
}

.tp-bet-row button.is-active {
  background: var(--tp-lime);
  color: var(--tp-ink);
  border-color: var(--tp-ink);
}

@keyframes tp-reel-spin {
  from {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}

@keyframes tp-card-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 575.98px) {
  .tp-cookie-bar {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .tp-slot-reel {
    min-height: 110px;
    font-size: 2rem;
  }
}
