* {
  box-sizing: border-box;
}

:root {
  --ink: #0b1e2a;
  --ocean: #0f2f3b;
  --lagoon: #14506a;
  --teal: #22c1a5;
  --coral: #ff7a5c;
  --gold: #f7c66a;
  --sky: #8ad9ff;
  --mist: #f5fbff;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 30px 60px rgba(7, 27, 38, 0.45);
  --glass: rgba(10, 36, 49, 0.6);
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Gill Sans MT", "Verdana", sans-serif;
  color: #f5fbff;
  background: linear-gradient(180deg, #071f2a 0%, #0b2e3a 35%, #124053 70%, #184c60 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  cursor: pointer;
}
.site-frame {
  max-width: 1400px;
  margin: 24px auto;
  width: calc(100% - 32px);
  background: rgba(7, 24, 32, 0.35);
  box-shadow: 0 30px 80px rgba(2, 8, 12, 0.45);
  border-radius: 28px;
  overflow: hidden;
}

.container {
  max-width: 1320px;
}

.site-main {
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  letter-spacing: 0.4px;
}

.section-wrap .container,
.page-hero .container,
.hero-section .container {
  position: relative;
  z-index: 2;
}

.h-100 { height: 100%; }
.position-relative { position: relative; }

.gap-3 { gap: 16px; }
.gap-4 { gap: 24px; }

.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 6px; }
.mb-3 { margin-bottom: 16px; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }
.justify-content-between { justify-content: space-between; }
.text-center { text-align: center; }
.text-muted { color: rgba(7, 27, 38, 0.6); }
.text-white { color: #fff; }
.text-white-50 { color: rgba(255, 255, 255, 0.65); }
.small { font-size: 0.85rem; }
.ms-auto { margin-left: auto; }
.h3 { font-size: 1.75rem; }

.shadow { box-shadow: var(--shadow); }
.rounded-4 { border-radius: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-dark {
  background: #0b1e2a;
  color: #fff;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
}

.card {
  border-radius: 18px;
  overflow: hidden;
}

.card-body {
  padding: 18px;
}

.form-control,
.form-select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 14px;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.page-card .form-control,
.page-card .form-select {
  background: #fff;
  color: #0d1c26;
  border: 1px solid rgba(7, 27, 38, 0.15);
}

.page-card .form-control::placeholder {
  color: rgba(7, 27, 38, 0.5);
}

.page-card .form-label {
  color: rgba(7, 27, 38, 0.7);
}

.form-control-lg {
  padding: 14px 16px;
  font-size: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.accordion-body {
  padding: 0 18px 16px;
  color: rgba(255, 255, 255, 0.8);
}

.notice-bar {
  background: rgba(7, 24, 32, 0.85);
  color: #d9f2ff;
  font-size: 0.85rem;
}

.notice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 10px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 28, 38, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.brand-badge img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 12px rgba(247, 198, 106, 0.6));
}

.navbar-nav .nav-link {
  color: #f5fbff;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar {
  padding: 14px 0;
}


.hero-section {
  position: relative;
  padding: 110px 0 90px;
  color: #fff;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(34, 193, 165, 0.35), transparent 60%),
    radial-gradient(1000px 500px at 90% 20%, rgba(255, 122, 92, 0.35), transparent 60%),
    linear-gradient(165deg, #0a2a3a 0%, #134258 45%, #1b546e 100%);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  opacity: 0;
}

.carousel-catalog {
  padding: 10px 0 30px;
}

.carousel-catalog .carousel-item {
  transition-duration: 0.65s;
}

.carousel-catalog .carousel-control-prev,
.carousel-catalog .carousel-control-next {
  width: 48px;
}

.carousel-catalog .carousel-control-prev-icon,
.carousel-catalog .carousel-control-next-icon {
  background-size: 100% 100%;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}

@media (max-width: 767.98px) {
  .carousel-catalog .carousel-item .col-12 {
    max-width: 420px;
    margin: 0 auto;
  }

  .carousel-catalog .carousel-item .col-12:nth-child(n + 2) {
    display: none;
  }
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(6, 16, 22, 0.82);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-card {
  width: min(520px, 100%);
  background: rgba(12, 32, 44, 0.95);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.age-card h2 {
  margin: 0 0 12px;
}

.age-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 18px;
}

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

.age-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.floating-token {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(34, 193, 165, 0.2) 55%, rgba(255, 122, 92, 0.2) 100%);
  filter: blur(0.5px);
  animation: float 10s ease-in-out infinite;
  opacity: 0.6;
}

.token-a {
  top: 15%;
  left: -40px;
}

.token-b {
  top: 30%;
  right: -30px;
  animation-delay: -2s;
}

.token-c {
  bottom: -30px;
  left: 35%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
  margin: 18px 0 18px;
}

.hero-lead {
  font-size: 1.05rem;
  max-width: 580px;
  color: #e3f5ff;
}

.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  border-radius: 28px;
  padding: 18px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-card--tall img {
  min-height: 360px;
  object-fit: cover;
}

.hero-card img {
  border-radius: 20px;
}

.btn-glow {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  border: none;
  color: #3a2301;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(255, 122, 92, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.section-wrap {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;
  height: 60px;
  background: radial-gradient(80% 120% at 50% 100%, rgba(255, 255, 255, 0.08), transparent 70%);
}

.section-catalog {
  background: linear-gradient(180deg, rgba(10, 42, 58, 0.6), rgba(12, 55, 72, 0.6));
  background-image:
    linear-gradient(180deg, rgba(10, 42, 58, 0.6), rgba(12, 55, 72, 0.6)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 10px);
}

.section-catalog::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(138, 217, 255, 0.35), transparent 70%);
  pointer-events: none;
}

.section-features {
  background: linear-gradient(120deg, rgba(7, 27, 38, 0.9), rgba(16, 63, 79, 0.8));
}

.section-features::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(247, 198, 106, 0.35), transparent 70%);
  pointer-events: none;
}

.section-social {
  background: linear-gradient(140deg, rgba(9, 32, 44, 0.7), rgba(18, 72, 92, 0.7));
}

.section-social::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(34, 193, 165, 0.35), transparent 70%);
  pointer-events: none;
}

.section-cta {
  background: linear-gradient(120deg, rgba(34, 193, 165, 0.3), rgba(255, 122, 92, 0.28));
}

.section-cta::after {
  content: "";
  position: absolute;
  left: 10%;
  top: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
  pointer-events: none;
}

.section-reviews {
  background: linear-gradient(180deg, rgba(10, 42, 58, 0.65), rgba(12, 49, 64, 0.65));
  background-image:
    linear-gradient(180deg, rgba(10, 42, 58, 0.65), rgba(12, 49, 64, 0.65)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%);
}

.section-reviews::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 122, 92, 0.28), transparent 70%);
  pointer-events: none;
}

.section-blog {
  background: linear-gradient(160deg, rgba(9, 36, 50, 0.7), rgba(16, 58, 75, 0.7));
  background-image:
    linear-gradient(160deg, rgba(9, 36, 50, 0.7), rgba(16, 58, 75, 0.7)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px);
}

.section-blog::after {
  content: "";
  position: absolute;
  left: -120px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(138, 217, 255, 0.3), transparent 70%);
  pointer-events: none;
}

.section-faq {
  background: linear-gradient(180deg, rgba(10, 33, 45, 0.85), rgba(12, 48, 64, 0.85));
}

.section-faq::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(247, 198, 106, 0.3), transparent 70%);
  pointer-events: none;
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 12px;
  color: #fff;
}

.section-lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.75);
}

.section-title,
.section-lead,
.hero-title,
.hero-lead {
  max-width: 700px;
}

.game-card {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  color: #0d1c26;
  box-shadow: 0 18px 34px rgba(7, 27, 38, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px rgba(7, 27, 38, 0.25);
}

.game-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: rgba(8, 26, 34, 0.06);
  padding: 14px;
}

.game-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-card .btn {
  margin-top: auto;
}
.game-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 34, 46, 0.85);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ribbon-section {
  background: linear-gradient(165deg, rgba(7, 27, 38, 0.9), rgba(14, 47, 59, 0.9));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e9f6ff;
  min-height: 160px;
}

.social-panel {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(34, 193, 165, 0.25), rgba(255, 122, 92, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-pill {
  padding: 14px;
  border-radius: 16px;
  background: rgba(7, 27, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: center;
}

.stats-pill strong {
  display: block;
  font-size: 1.2rem;
}

.cta-section {
  background: linear-gradient(120deg, rgba(34, 193, 165, 0.28), rgba(255, 122, 92, 0.25));
}

.review-card {
  padding: 20px;
  border-radius: 20px;
  background: var(--card);
  color: #0d1c26;
  border: 1px solid rgba(7, 27, 38, 0.08);
}

.review-stars {
  color: #f7c66a;
  font-size: 1rem;
  letter-spacing: 2px;
}

.avatar-pill {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0d1c26;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.rating-badge {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
}

.blog-card {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  color: #0d1c26;
  box-shadow: 0 18px 34px rgba(7, 27, 38, 0.18);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(7, 27, 38, 0.1);
  color: #0d1c26;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-shell {
  padding: 32px;
  border-radius: 26px;
  background: rgba(10, 35, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-button {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.accordion-item {
  background: transparent;
  border: none;
}

.page-hero {
  padding: 80px 0 70px;
  position: relative;
  background: radial-gradient(900px 420px at 10% 20%, rgba(34, 193, 165, 0.25), transparent 60%),
    linear-gradient(160deg, rgba(10, 42, 58, 0.9), rgba(18, 64, 83, 0.9));
}

.catalog-hero {
  background: radial-gradient(900px 420px at 90% 10%, rgba(138, 217, 255, 0.35), transparent 60%),
    linear-gradient(160deg, rgba(10, 38, 50, 0.92), rgba(18, 61, 80, 0.92));
}

.about-hero {
  background: radial-gradient(900px 420px at 20% 10%, rgba(247, 198, 106, 0.35), transparent 60%),
    linear-gradient(160deg, rgba(12, 38, 56, 0.92), rgba(22, 68, 90, 0.92));
}

.progress-hero {
  background: radial-gradient(900px 420px at 80% 20%, rgba(34, 193, 165, 0.35), transparent 60%),
    linear-gradient(160deg, rgba(10, 40, 52, 0.92), rgba(18, 60, 78, 0.92));
}

.blog-hero {
  background: radial-gradient(900px 420px at 15% 10%, rgba(255, 122, 92, 0.35), transparent 60%),
    linear-gradient(160deg, rgba(12, 38, 56, 0.92), rgba(18, 54, 72, 0.92));
}

.responsible-hero {
  background: radial-gradient(900px 420px at 85% 20%, rgba(247, 198, 106, 0.32), transparent 60%),
    linear-gradient(160deg, rgba(10, 35, 50, 0.92), rgba(16, 54, 70, 0.92));
}

.page-card {
  padding: 22px;
  border-radius: 18px;
  background: var(--card);
  color: #0d1c26;
  border: 1px solid rgba(7, 27, 38, 0.08);
}

.catalog-shell {
  padding-top: 40px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 30px;
}

.catalog-panel .panel-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #e7f5ff;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.panel-lead {
  color: rgba(255, 255, 255, 0.75);
}

.filter-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 0.8rem;
}

.filter-pill.active {
  background: rgba(255, 255, 255, 0.2);
}

.stats-grid {
  display: grid;
  gap: 12px;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.stat-value {
  font-size: 1.2rem;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 24px;
}

.featured-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.featured-lead {
  color: rgba(255, 255, 255, 0.75);
}

.featured-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.featured-art img {
  border-radius: 18px;
}

.spotlight-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.spotlight-card img {
  border-radius: 12px;
  margin-bottom: 10px;
}

.spotlight-body a {
  font-weight: 700;
}

.catalog-list {
  display: grid;
  gap: 16px;
}

.catalog-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.catalog-thumb {
  position: relative;
}

.catalog-thumb img {
  border-radius: 12px;
}

.catalog-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.about-panel {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-stack {
  display: grid;
  gap: 12px;
}

.stat-stack strong {
  display: block;
  font-size: 1.4rem;
}

.pillar-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
}

.progress-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rhythm-step {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(34, 193, 165, 0.25), rgba(255, 122, 92, 0.2));
}

.frame-shell {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.frame-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.game-frame {
  position: relative;
  padding: 24px;
  border-radius: 18px;
  background: rgba(7, 27, 38, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.frame-glow {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 193, 165, 0.3), transparent 60%);
  pointer-events: none;
}

.game-iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
  border-radius: 14px;
  background: rgba(5, 14, 19, 0.5);
}

@media (max-width: 992px) {
  .game-iframe {
    min-height: 520px;
  }
}

@media (max-width: 576px) {
  .game-iframe {
    min-height: 420px;
  }
}

.link-list {
  padding-left: 18px;
}

.link-list li {
  margin-bottom: 8px;
}

.site-footer {
  padding: 60px 0 40px;
  background: rgba(7, 23, 32, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.disclaimer {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .catalog-item {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .text-lg-end { text-align: right; }
}
