

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@600;700;800&display=swap');

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

:root {
  --bg:      #0a0f1e;
  --surface: #111827;
  --surface2: #161f31;
  --border:  #1e2a3a;
  --cyan:    #00c8e0;
  --orange:  #ff5e2e;
  --yellow:  #ffc72c;
  --text:    #e4eaf4;
  --muted:   #7a8fa8;
  --radius:  8px;
  --max-w:   1200px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
  color: var(--text);
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  color: var(--orange);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--cyan);
  color: var(--bg);
  border-color: var(--cyan);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--cyan);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-orange {
  background-color: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.btn-orange:hover {
  background-color: transparent;
  color: var(--orange);
}

.divider {
  width: 48px;
  height: 3px;
  background-color: var(--cyan);
  margin: 20px 0;
}

.site-header {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  background-color: var(--bg);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--cyan);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted);
}

.header-phone:hover {
  color: var(--cyan);
}

.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--cyan);
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-title .accent {
  color: var(--cyan);
}

.hero-title .accent-orange {
  color: var(--orange);
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--cyan);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.875rem;
  overflow: hidden;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-placeholder svg {
  opacity: 0.4;
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background-color: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
}

.about {
  padding: 96px 0;
  background-color: var(--surface2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-placeholder {
  width: 100%;
  
  height: 100%;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.875rem;
  overflow: hidden;
}

.about-text .section-subtitle {
  margin-bottom: 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background-color: #00c8e01a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.about-feature-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.services {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

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

.services .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  padding: 32px 28px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.service-card:hover {
  border-color: var(--cyan);
}

.service-icon {
  width: 52px;
  height: 52px;
  background-color: #00c8e01a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.rooms {
  padding: 96px 0;
  background-color: var(--surface2);
  border-bottom: 1px solid var(--border);
}

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

.rooms .section-subtitle {
  margin: 0 auto;
}

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

.room-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.room-card.featured {
  border-color: var(--cyan);
}

.room-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8125rem;
  position: relative;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: var(--orange);
  color: #fff;
}

.room-badge.popular {
  background-color: var(--cyan);
  color: var(--bg);
}

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

.room-card-title {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.room-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.room-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 4px;
}

.room-card-price-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.room-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-feature-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  background-color: #00c8e012;
  border: 1px solid #00c8e030;
  border-radius: 100px;
  color: var(--cyan);
  font-weight: 500;
}

.tournaments {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

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

.tournaments .section-subtitle {
  margin: 0 auto;
}

.tournaments .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tournament-visual {
  position: relative;
}

.tournament-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.875rem;
}

.tournament-prizes {
  position: absolute;
  top: 16px;
  right: -20px;
  background-color: var(--yellow);
  color: var(--bg);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
}

.tournament-prizes .big {
  display: block;
  font-size: 1.375rem;
  line-height: 1;
}

.tournament-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tournament-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tl-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background-color: #ff5e2e18;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.tl-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.tl-desc {
  font-size: 0.8375rem;
  color: var(--muted);
}

.vr-section {
  padding: 96px 0;
  background-color: var(--surface2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

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

.vr-section .section-subtitle {
  margin: 0 auto;
}

.vr-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vr-content {}

.vr-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.875rem;
}

.vr-highlights {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vr-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vh-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--cyan);
  color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vh-text {
  font-size: 0.9375rem;
  color: var(--text);
}

.how-it-works {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-it-works .section-subtitle {
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  padding: 32px 24px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-icon {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  background-color: #00c8e01a;
  border-radius: 8px;
}

.equipment {
  padding: 96px 0;
  background-color: var(--surface2);
  border-bottom: 1px solid var(--border);
}

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

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.equipment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.equipment-item:hover {
  border-color: var(--cyan);
}

.equipment-icon {
  width: 56px;
  height: 56px;
  background-color: #00c8e01a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 16px;
}

.equipment-name {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.equipment-desc {
  font-size: 0.8125rem;
  color: var(--muted);
}

.testimonials {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

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

.testimonials .section-subtitle {
  margin: 0 auto;
}

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

.testimonial-card {
  padding: 32px 28px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  width: 16px;
  height: 16px;
  color: var(--yellow);
  fill: var(--yellow);
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9375rem;
  font-weight: 600;
}

.author-role {
  font-size: 0.8125rem;
  color: var(--muted);
}

.contacts {
  padding: 96px 0;
  background-color: var(--surface2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

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

.contacts .section-subtitle {
  margin: 0 auto;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background-color: #00c8e01a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--text);
}

.contact-value a {
  color: var(--text);
}

.contact-value a:hover {
  color: var(--cyan);
}

.contacts-map {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.875rem;
  overflow: hidden;
}

.contacts-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-footer {
  padding: 40px 0;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: 24px 0;
  z-index: 9999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.cookie-banner-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-banner-desc a {
  color: var(--cyan);
}

.cookie-banner-desc a:hover {
  color: var(--orange);
}

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

.cookie-banner .btn {
  white-space: nowrap;
}

.btn-cookie-reject {
  background-color: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.btn-cookie-reject:hover {
  background-color: var(--surface2);
  border-color: var(--cyan);
  color: var(--cyan);
}

.cookie-settings-panel {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  max-width: 500px;
  width: 90%;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
  margin-bottom: 20px;
}

.cookie-settings-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.cookie-settings-desc {
  font-size: 0.875rem;
  color: var(--muted);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--cyan);
}

.cookie-option-text {
  flex: 1;
}

.cookie-option-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.cookie-option-desc {
  font-size: 0.8125rem;
  color: var(--muted);
}

.cookie-option input:disabled + .cookie-option-text .cookie-option-label {
  color: var(--cyan);
}

.cookie-settings-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-settings-actions .btn {
  font-size: 0.875rem;
  padding: 10px 20px;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-brand-logo {
  width: 32px;
  height: 32px;
}

.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
}

.footer-brand-name span {
  color: var(--cyan);
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--cyan);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--muted);
}

.placeholder-icon {
  color: var(--muted);
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 768px) {
  .hero .container,
  .about .container,
  .tournaments .container,
  .vr-section .container,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-badge {
    left: 0;
    bottom: -12px;
  }

  .services-grid,
  .rooms-grid,
  .testimonials-grid,
  .steps-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

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

  .tournament-prizes {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }

  .header-cta .btn {
    display: none;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-nav {
    justify-content: center;
  }
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image {
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

/* wh-img-fill */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
