:root {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  font-weight: 400;

  --primary: #ff006e;
  --secondary: #8338ec;
  --accent: #ffbe0b;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-900: #111827;

  color-scheme: light;
  color: var(--neutral-900);
  background-color: var(--neutral-50);

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.2em;
  color: var(--neutral-900);
  margin-bottom: 1.5em;
  text-align: center;
}

h3 {
  font-size: 1.3em;
  color: var(--neutral-900);
}

h4 {
  font-size: 1.1em;
}

p {
  color: var(--neutral-600);
  margin-bottom: 1em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header */
.header {
  background: white;
  border-bottom: 1px solid var(--neutral-200);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

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

.brand-name {
  font-size: 1.25em;
  color: var(--neutral-900);
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  color: white;
  font-size: 3.5em;
  margin-bottom: 0;
  line-height: 1.1;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4em;
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 180px;
}

.hero-btn.primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 2px solid transparent;
}

.hero-btn.primary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--neutral-50);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--neutral-200);
}

.feature-card:hover {
  border-color: var(--primary);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: block;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin: 0;
  color: var(--neutral-600);
  font-size: 0.95em;
}

/* Game Rooms Section */
.game-rooms {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.rooms-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.rooms-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rooms-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.rooms-text h3 {
  margin-bottom: 24px;
  font-size: 1.8em;
}

.rooms-list {
  list-style: none;
  text-align: left;
}

.rooms-list li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  color: var(--neutral-600);
}

.rooms-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--neutral-50);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.service-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
  text-align: center;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: block;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 20px;
  font-size: 0.95em;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: var(--neutral-50);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.pricing-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px rgba(255, 0, 110, 0.15);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 600;
}

.pricing-card h3 {
  margin: 16px 0 12px;
}

.price {
  font-size: 1.8em;
  color: var(--primary);
  font-weight: 600;
  margin: 16px 0;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 24px 0;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--neutral-600);
  border-bottom: 1px solid var(--neutral-200);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  width: 100%;
  margin-top: 20px;
}

.pricing-btn.featured {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.pricing-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.review-card {
  background: var(--neutral-50);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
}

.review-card:hover {
  border-color: var(--primary);
}

.review-stars {
  color: var(--accent);
  font-size: 1.2em;
  margin-bottom: 12px;
}

.review-text {
  margin-bottom: 12px;
  font-style: italic;
  color: var(--neutral-700);
}

.review-author {
  margin: 0;
  font-weight: 500;
  color: var(--neutral-600);
  font-size: 0.9em;
}

/* Info Section */
.info-section {
  padding: 80px 0;
  background: var(--neutral-50);
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.info-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
  text-align: center;
}

.info-card:hover {
  border-color: var(--secondary);
}

.info-card h3 {
  margin-bottom: 12px;
}

.info-card p {
  margin: 0;
  color: var(--neutral-600);
  line-height: 1.8;
}

/* Contacts Section */
.contacts {
  padding: 80px 0;
  background: white;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.contact-card {
  background: var(--neutral-50);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
  text-align: center;
}

.contact-card:hover {
  border-color: var(--primary);
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: block;
}

.contact-card h3 {
  margin-bottom: 12px;
}

.contact-card p {
  margin: 0;
  color: var(--neutral-600);
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
}

/* Buttons */
button {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 0.95em;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}

.service-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  width: 100%;
}

.service-btn:hover {
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--neutral-900);
  color: white;
  padding: 60px 0 24px;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo {
  width: 40px;
  height: 40px;
}

.footer-brand-name {
  font-size: 1.4em;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

.footer-navigation {
  display: flex;
  gap: 48px;
  flex: 2;
}

.footer-nav-section {
  flex: 1;
}

.footer-nav-section h4 {
  margin-bottom: 12px;
  color: white;
  font-size: 1.1em;
  font-weight: 600;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-links a,
.footer-nav-links span {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95em;
}

.footer-nav-links a:hover {
  color: white;
}

.footer-nav-links span {
  cursor: default;
}

/* Legacy footer-links for compatibility */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2em;
  }

  h2 {
    font-size: 1.8em;
  }

  h3 {
    font-size: 1.1em;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-image-container {
    order: 2;
  }

  .hero h1 {
    font-size: 2.5em;
  }

  .hero-subtitle {
    font-size: 1.2em;
  }

  .hero-buttons {
    justify-content: center;
  }

  .features-grid,
  .services-grid,
  .pricing-grid,
  .reviews-grid,
  .info-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .rooms-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-navigation {
    flex-direction: column;
    gap: 32px;
  }

  .header-content {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .features,
  .game-rooms,
  .services,
  .pricing,
  .reviews,
  .info-section,
  .contacts {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.5em;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero-subtitle {
    font-size: 1em;
  }

  .hero {
    padding: 60px 0;
  }

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

  .hero-btn {
    width: 100%;
    max-width: 280px;
  }

  .features,
  .game-rooms,
  .services,
  .pricing,
  .reviews,
  .info-section,
  .contacts {
    padding: 48px 0;
  }

  .footer-navigation {
    gap: 24px;
  }
}