/* GameSport Static Site - Design System - Exact React Replica */

:root {
  --background: hsl(0, 0%, 0%);
  --foreground: hsl(0, 0%, 100%);
  --card: hsl(0, 0%, 7%);
  --card-foreground: hsl(0, 0%, 100%);
  --primary: hsl(190, 80%, 50%);
  --primary-foreground: hsl(0, 0%, 0%);
  --secondary: hsl(0, 0%, 12%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(0, 0%, 15%);
  --muted-foreground: hsl(0, 0%, 65%);
  --border: hsl(0, 0%, 20%);
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

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

.btn-sm {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 3rem;
  font-size: 1rem;
}

/* Header */
.header {
  background-color: var(--background);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.lang-toggle-inline {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 0.875rem;
  transition: color 0.2s;
  padding: 0;
}

.lang-toggle-inline:hover {
  color: var(--primary);
}

.lang-toggle-inline .globe-icon {
  width: 1rem;
  height: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.hamburger:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .hamburger {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.mobile-menu-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  max-width: 80vw;
  background-color: var(--background);
  border-left: 1px solid var(--border);
  padding: 1.5rem;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-header {
  margin-top: 0.5rem;
}

.mobile-menu-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.text-primary {
  color: var(--primary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-nav a {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.lang-toggle-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 1.125rem;
  text-align: left;
  padding: 0;
  transition: color 0.2s;
}

.lang-toggle-mobile:hover {
  color: var(--primary);
}

.lang-toggle-mobile .globe-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero Section */
.hero {
  padding: 5rem 1.5rem;
  background-color: var(--background);
}

.hero-container {
  max-width: 64rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--foreground);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.hero-access {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.hero-price-card {
  background-color: hsla(190, 80%, 50%, 0.1);
  border: 2px solid hsla(190, 80%, 50%, 0.3);
  border-radius: 1rem;
  padding: 3rem;
}

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

.price {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--primary);
}

.price-content p {
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

/* Features Section */
.features {
  padding: 4rem 1.5rem;
  background-color: var(--secondary);
}

.features-container {
  max-width: 56rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: hsla(190, 80%, 50%, 0.5);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  background-color: hsla(190, 80%, 50%, 0.1);
  border-radius: 0.5rem;
  color: var(--primary);
}

.feature-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.feature-text p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Steps Section */
.steps {
  padding: 4rem 1.5rem;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-container {
  max-width: 64rem;
}

.steps h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.steps-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

.step-card {
  background-color: var(--secondary);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}

.step-number {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact Section */
.contact {
  padding: 4rem 1.5rem;
  background-color: var(--background);
  text-align: center;
}

.contact h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
}

.mail-icon {
  color: var(--primary);
}

.contact-card a {
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

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

/* Footer */
.footer {
  background-color: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
}

.footer .container {
  max-width: 56rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

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

.footer-links a:hover {
  text-decoration: underline;
}

/* About Page */
.about-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 1.5rem;
}

.about-main .container {
  max-width: 64rem;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-content h1 {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Legal Pages (Privacy, Terms) */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-main {
  flex: 1;
  padding: 3rem 1.5rem;
}

.legal-main .container {
  max-width: 56rem;
}

.legal-content h1 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.legal-content .last-updated {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.legal-section p {
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.legal-section ul {
  color: var(--muted-foreground);
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}