:root {
  --color-bg: #FAFAFA;
  --color-text: #1A1A2E;
  --color-heading: #16213E;
  --color-accent: #E8913A;
  --color-accent-dark: #C47A2F;
  --color-footer-bg: #16213E;
  --color-footer-text: #E0E0E0;
  --max-width: 1100px;
  --section-padding: 5rem 1.5rem;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-accent-dark); }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
  text-align: center;
  padding: 3rem 1.5rem;
  overflow: hidden;
  background: #0f1a2e;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(15, 26, 46, 0.3) 0%, rgba(15, 26, 46, 0.65) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.hero__scroll {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 28px;
  height: 28px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding);
}

/* About */
.about {
  background: #fff;
}
.about .container {
  max-width: 720px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
}
.about__text {
  font-size: 1.05rem;
  color: #444;
}

/* Game section */
.game {
  background: var(--color-bg);
}
.game__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.game__image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.game__image img {
  width: 100%;
}
.game__subtitle {
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.game__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1rem;
}
.game__description {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 2rem;
}
.game__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
}
.btn--secondary {
  background: #e8e8e8;
  color: var(--color-heading);
}
.btn--secondary:hover {
  background: #d8d8d8;
  color: var(--color-heading);
}

/* Footer */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  text-align: center;
  padding: 3rem 1.5rem;
}
.footer__icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer__icons a {
  color: var(--color-footer-text);
  transition: color 0.2s, transform 0.15s;
  display: inline-flex;
}
.footer__icons a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}
.footer__icons svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.footer__copy {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Responsive: Tablet+ */
@media (min-width: 768px) {
  .hero__title { font-size: 5rem; }
  .hero { min-height: 60vh; }
  .section-title { font-size: 2.2rem; }
}

/* Responsive: Desktop */
@media (min-width: 1024px) {
  .game__content {
    flex-direction: row;
    align-items: center;
  }
  .game__image {
    flex: 0 0 58%;
  }
  .game__info {
    flex: 1;
  }
}
