:root {
  --bg-main: #E3E6E4;
  --bg-soft: #0E1416;
  --primary: #0B7C80;
  --secondary: #2FB7B2;
  --white: #FFFFFF;
  --font-title: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--white);
}

h1, h2, h3 {
  font-family: var(--font-title);
}

.content {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(47,183,178,0.15);
  backdrop-filter: blur(8px);
}

h1 {
  color: var( --bg-soft);
  font-size: clamp(2.2rem, 4vw, 3rem);
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

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

.tag {
  color: var(--secondary);
  border: 1px solid var(--secondary);
  font-family: var(--font-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1.5rem 3rem;
}

.intro {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.text h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var( --primary);
}

.text .sub {
  margin-top: 1rem;
  color: #555;
}

.text .sub span {
  font-size: 0.95rem;
  opacity: 0.85;
}

.image img {
  max-width: 340px;
  width: 100%;
}

.game {
  text-align: center;
}

canvas {
  max-width: 100%;
  border: 1px solid rgba(47,183,178,0.4);
  background-color: rgba(11,124,128,0.05);
  border-radius: 14px;
  background: linear-gradient(#ffffff, #f6f6f6);
}

.hint {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: #666;
}

.services {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service {
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}

.service h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--primary);
}

.service p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}


/* Responsive */
@media (max-width: 768px) {
  .services {
    flex-direction: column;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .intro {
    flex-direction: column;
    text-align: center;
  }

  .text h1 {
    font-size: 2rem;
  }
}
