*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand: #0f766e;
  --brand-dark: #115e59;
  --brand-deep: #14324a;
  --accent: #f59e0b;
  --accent-soft: #fff2cf;
  --surface: #fffcf7;
  --surface-muted: #eef7f4;
  --surface-strong: #e0f2fe;
  --surface-card: rgba(255, 255, 255, 0.8);
  --text-dark: #152536;
  --text-muted: #526273;
  --text-inverse: #f8fafc;
  --border: rgba(21, 37, 54, 0.12);
  --border-strong: rgba(21, 37, 54, 0.18);
  --shadow-soft: 0 20px 60px rgba(20, 40, 60, 0.12);
  --shadow-strong: 0 28px 80px rgba(20, 40, 60, 0.2);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #f8fbff 48%, #fffdf8 100%);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
}

body.nav-menu-open {
  overscroll-behavior: contain;
}

body.nav-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.16) 0%, rgba(21, 37, 54, 0.16) 100%),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

main {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 18px 0;
  background: transparent;
  isolation: isolate;
}

.header.menu-open {
  background: transparent;
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 18px;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 37, 54, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(20, 40, 60, 0.08);
  backdrop-filter: blur(10px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-dark);
  flex-shrink: 0;
  min-width: 0;
}

.logo span {
  min-width: 0;
}

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #fb7185 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.28);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: clamp(4px, 0.8vw, 12px);
  min-width: 0;
  margin-left: auto;
}

.nav-menu li {
  flex: 0 0 auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}

.nav-link i {
  color: var(--brand);
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text-dark);
  background: rgba(15, 118, 110, 0.1);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 6px;
}

.login-link {
  text-decoration: none;
}

.btn-primary,
.btn-secondary,
.price-btn,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 14px 22px;
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, #0ea5e9 100%);
  box-shadow: 0 18px 36px rgba(14, 116, 144, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(14, 116, 144, 0.3);
}

.btn-secondary {
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--border);
  box-shadow: 0 14px 28px rgba(20, 40, 60, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--brand-dark);
  border-color: rgba(15, 118, 110, 0.24);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--text-dark);
  cursor: pointer;
  min-height: 52px;
  flex-shrink: 0;
}

.hamburger-box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 22px;
  flex-shrink: 0;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger .hamburger-label {
  width: auto;
  height: auto;
  background: none;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.hamburger.active .hamburger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hamburger.active .hamburger-label {
  transform: none;
  opacity: 1;
}

.hero,
.section-container,
.faq-container,
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.hero {
  padding: 72px 24px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 500px);
  align-items: center;
  gap: 56px;
}

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

.hero-content,
.hero-image,
.about-text,
.about-stats,
.contact-info,
.contact-form,
.footer-brand,
.footer-section,
.section-header,
.price-card,
.game-card,
.contact-details {
  min-width: 0;
}

.badge,
.section-kicker,
.game-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.badge {
  padding: 10px 16px;
  background: rgba(255, 242, 207, 0.9);
  color: #9a5d00;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.14);
  margin-bottom: 22px;
}

.hero-title,
.section-title,
.about-text h2,
.contact-info h2 {
  font-family: 'Fredoka', sans-serif;
  overflow-wrap: anywhere;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--text-dark);
}

.highlight {
  color: var(--brand);
}

.hero-desc {
  max-width: 640px;
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  overflow-wrap: anywhere;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.hero-image {
  position: relative;
}

.hero-visual-card {
  position: relative;
  min-height: 560px;
  padding: 22px 18px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(160deg, #14324a 0%, #185c73 46%, #0f766e 100%);
  box-shadow: var(--shadow-strong);
}



.hero-visual-card::before {
  width: 240px;
  height: 240px;
  top: -80px;
  right: -60px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-visual-card::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -30px;
  background: rgba(245, 158, 11, 0.16);
}

.hero-character {
  position: relative;
  inset: auto;
  width: min(100%, 468px);
  filter: drop-shadow(0 24px 44px rgba(12, 24, 38, 0.38));
  user-select: none;
  pointer-events: none;
}

.games-section,
.about-section,
.pricing-section,
.contact-section,
.faq-section {
  padding: 96px 24px;
}

.games-section {
  background:
    linear-gradient(180deg, rgba(20, 50, 74, 0.04) 0%, rgba(20, 50, 74, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-kicker {
  padding: 8px 14px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  margin-bottom: 14px;
}

.section-desc {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.game-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(20, 40, 60, 0.16);
  border-color: rgba(14, 165, 233, 0.28);
}

.game-card-header {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}

.game-image {
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}

.game-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.game-chip {
  align-self: flex-start;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 118, 110, 0.12);
  color: var(--brand-dark);
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.game-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.game-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 22px;
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 37, 54, 0.08);
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: var(--surface-muted);
  border-radius: 999px;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.meta-item i {
  color: var(--brand);
}

.game-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 18px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, var(--brand) 0%, #0ea5e9 100%);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(14, 116, 144, 0.24);
}

.about-section {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(247, 252, 250, 0.96) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.about-feature-item,
.stat-card,
.contact-form,
.faq-item,
.price-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.about-feature-item {
  padding: 20px;
  border-radius: 24px;
}

.about-feature-item i {
  font-size: 1.4rem;
  color: var(--brand);
  margin-bottom: 12px;
}

.about-feature-item h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.about-feature-item p {
  margin: 0;
  font-size: 0.94rem;
}

.about-stats {
  display: grid;
  gap: 16px;
}

.stat-card {
  padding: 26px;
  border-radius: 28px;
}

.stat-number {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--brand-deep);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 700;
}

.pricing-section {
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 30%),
    linear-gradient(180deg, #14324a 0%, #0f2438 100%);
}

.pricing-section .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #d8f3ff;
}

.pricing-section .section-title,
.pricing-section .section-desc {
  color: #fff;
}

.pricing-section .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 30px;
}

.price-card.featured {
  transform: translateY(-10px);
  border-color: rgba(245, 158, 11, 0.34);
  box-shadow: 0 30px 70px rgba(6, 20, 32, 0.3);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.price-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price-amount {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.price-amount span {
  font-size: 1rem;
  font-family: 'Manrope', sans-serif;
}

.price-period,
.price-description,
.price-features li {
  color: var(--text-muted);
}

.price-period {
  font-weight: 800;
  margin-bottom: 12px;
}

.price-description {
  font-size: 0.96rem;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-features i {
  color: var(--brand);
  margin-top: 3px;
}

.price-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--brand) 0%, #0ea5e9 100%);
  color: #fff;
}

.price-card:not(.featured) .price-btn {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}

.price-card:not(.featured) .price-btn:hover {
  color: var(--brand-dark);
  border-color: rgba(15, 118, 110, 0.24);
}

.contact-section {
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 252, 255, 0.98) 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 32px rgba(20, 40, 60, 0.08);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(20, 40, 60, 0.12);
  border-color: rgba(14, 165, 233, 0.22);
}

.contact-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, #0ea5e9 100%);
  color: #fff;
  box-shadow: 0 14px 24px rgba(14, 116, 144, 0.24);
}

.contact-details h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-details p {
  margin: 0;
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: 30px;
  border-radius: 30px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-dark);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7a8a9a;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(14, 165, 233, 0.42);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
  background: #fff;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, #0ea5e9 100%);
}

.faq-section {
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.faq-container {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: none;
  background: transparent;
  color: var(--text-dark);
  text-align: left;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.18rem;
  cursor: pointer;
}

.faq-question span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-icon {
  color: var(--brand);
  transition: transform 0.24s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 260px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.footer {
  padding: 68px 24px 26px;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 24%),
    linear-gradient(180deg, #0d2032 0%, #0a1724 100%);
  color: var(--text-inverse);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 34px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
}

.footer-desc {
  color: rgba(248, 250, 252, 0.72);
  margin-bottom: 22px;
  overflow-wrap: anywhere;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.social-link:hover {
  background: rgba(14, 165, 233, 0.24);
  transform: translateY(-2px);
}

.footer-section h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(248, 250, 252, 0.7);
  transition: color 0.2s ease, transform 0.2s ease;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 252, 0.56);
  text-align: center;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

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

  .hero-image {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-content,
  .contact-container,
  .pricing-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1380px) {
  .nav-container {
    max-width: 1320px;
    padding: 12px 16px;
    gap: 14px;
  }

  .logo {
    font-size: 1.28rem;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  .nav-link {
    padding: 10px 12px;
    gap: 8px;
    font-size: 0.88rem;
  }

  .btn-secondary {
    padding: 13px 18px;
    font-size: 0.92rem;
  }
}

@media (max-width: 1240px) {
  .header {
    padding: 14px 14px 0;
  }

  .nav-container {
    padding: 14px 16px;
    gap: 12px;
  }

  .header.menu-open .nav-container {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 40px rgba(20, 40, 60, 0.14);
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--mobile-menu-top, 92px);
    left: var(--mobile-menu-left, 14px);
    right: var(--mobile-menu-right, 14px);
    z-index: 130;
    margin: 0;
    padding: 16px;
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100dvh - var(--mobile-menu-top, 92px) - 12px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(21, 37, 54, 0.1);
    box-shadow: 0 24px 56px rgba(20, 40, 60, 0.16);
    backdrop-filter: blur(16px);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    justify-content: flex-start;
    width: 100%;
    padding: 14px 16px;
    font-size: 0.96rem;
    border-radius: 18px;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero {
    padding-top: 46px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .nav-container {
    border-radius: 22px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-actions .btn-secondary {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 720px) {
  .hero,
  .games-section,
  .about-section,
  .pricing-section,
  .contact-section,
  .faq-section,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }

  .games-grid,
  .about-features {
    grid-template-columns: 1fr;
  }

  .hero-visual-card {
    min-height: 440px;
    padding: 16px 10px 0;
  }

  .hero-character {
    width: min(100%, 360px);
  }

  .game-card-header {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 12px 12px 0;
  }

  .nav-container {
    padding: 12px;
    gap: 8px;
  }

  .logo {
    flex: 1 1 auto;
    gap: 10px;
    font-size: 1rem;
  }

  .logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-actions {
    gap: 8px;
    margin-left: 0;
  }

  .nav-actions .btn-secondary {
    min-width: 46px;
    min-height: 46px;
    padding: 10px 12px;
  }

  .hamburger {
    min-width: 46px;
    min-height: 46px;
    justify-content: center;
    padding: 10px 11px;
  }

  .hamburger .hamburger-label {
    display: none;
  }

  .hero,
  .games-section,
  .about-section,
  .pricing-section,
  .contact-section,
  .faq-section,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 30px;
    gap: 28px;
  }

  .badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 14px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-visual-card {
    min-height: 380px;
  }

  .contact-method {
    align-items: flex-start;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 1.02rem;
  }

  .faq-answer-content {
    padding: 0 18px 18px;
  }
}

@media (max-width: 560px) {
  .logo {
    font-size: 0.98rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .nav-actions .btn-secondary {
    padding: 11px 13px;
    min-height: 48px;
  }

  .nav-actions .btn-secondary span {
    display: none;
  }

  .nav-actions .btn-secondary i {
    margin: 0;
  }

  .hero {
    padding-top: 34px;
    gap: 34px;
  }

  .badge,
  .game-chip,
  .meta-item,
  .contact-method,
  .faq-question {
    border-radius: 18px;
  }

  .contact-form,
  .price-card,
  .faq-item,
  .game-card,
  .hero-visual-card {
    border-radius: 24px;
  }

  .game-card-body,
  .price-card,
  .contact-form {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 420px) {
  .header {
    padding: 10px 10px 0;
  }

  .nav-container {
    padding: 12px;
    border-radius: 20px;
  }

  .logo {
    gap: 10px;
    font-size: 0.94rem;
  }

  .logo span {
    max-width: 10.5rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .hero,
  .games-section,
  .about-section,
  .pricing-section,
  .contact-section,
  .faq-section,
  .footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }

  .nav-menu {
    top: calc(100% + 8px);
    padding: 12px;
    border-radius: 20px;
  }
}
