html,
body {
  font-family: "Estedad", sans-serif;
}

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

body {
  background: #0c1117;
  color: white;
}

/* HEADER */

header {
  background: #020408;
  height: 80px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 80px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.discord-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 20px;

  background: #5865f2;
  color: white;

  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.discord-cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.discord-cta i {
  display: inline-block;
  animation: discordBounce 2s infinite;
}

@keyframes discordBounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
  }

  85% {
    transform: translateY(-5px);
  }

  90% {
    transform: translateY(0);
  }

  95% {
    transform: translateY(-3px);
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
  transition: opacity 0.2s ease;
}

.logo:hover img {
  opacity: 0.8;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;

  padding-bottom: 4px;

  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

/* Page active */

nav a.active {
  font-weight: 900;
  color: darkgray;
}

/* Hover */

nav a:hover {
  border-bottom-color: white;
}

/* HERO */

.hero-centered {
  padding: 20px 40px 50px;
  display: flex;
  justify-content: center;
}

.wishlist-cta {
  display: flex;
  justify-content: center;
  margin: 30px 0 50px;
}

.steam-wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 38px;

  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: white;
  text-decoration: none;

  background: linear-gradient(135deg, #1b2838, #2a475e);
  border: 2px solid #66c0f4;
  border-radius: 12px;

  box-shadow:
    0 0 20px rgba(102, 192, 244, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.3);

  transition: all 0.2s ease;
}

.steam-wishlist-btn i {
  font-size: 1.6rem;
}

.steam-wishlist-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 30px rgba(102, 192, 244, 0.5),
    0 12px 30px rgba(0, 0, 0, 0.4);
}

.main-image {
  width: min(100%, 1100px);
  border-radius: 16px;
  display: block;
}

.steam-widget {
  position: relative;

  background: black;

  padding: 60px 40px;

  display: flex;
  justify-content: center;
}

.steam-widget::before {
  content: "";

  position: absolute;
  top: -40px;
  left: 0;

  width: 100%;
  height: 40px;

  background: linear-gradient(to bottom left, transparent 49%, black 50%);
}

.steam-widget::after {
  content: "";

  position: absolute;
  bottom: -40px;
  left: 0;

  width: 100%;
  height: 40px;

  background: linear-gradient(to top right, transparent 49%, black 50%);
}

/* CONTENT */

.section-divider {
  width: 80%;
  max-width: 1200px;
  height: 1px;

  background: rgba(255, 255, 255, 0.262);

  margin: 100px auto;
}

.game-pitch {
  max-width: 1000px;
  margin: 90px auto 40px;
  padding: 0 40px;
  text-align: center;
}

.game-pitch p:first-child {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.pitch-secondary {
  font-size: 22px;
  line-height: 1.45;
  color: #d0d0d0;
  max-width: 820px;
  margin: 0 auto;
}
.content-row {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
  gap: 80px;
}

.content-row.reverse {
  flex-direction: row-reverse;
}

.content-text,
.content-media {
  flex: 1;
}

.content-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.content-text p {
  color: #d0d0d0;
  line-height: 1.7;
}

.content-media video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* SCREENSHOTS */

.screenshots-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 40px;
}

.screenshots-section h2 {
  text-align: left;
  font-size: 48px;
  margin-bottom: 20px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.screenshots-grid img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.screenshots-grid img:hover {
  transform: scale(1.02);
}

/* FOOTER */

footer {
  margin-top: 120px;
}

.footer-slant {
  height: 80px;

  background: linear-gradient(to bottom left, transparent 49%, black 50%);
}

.footer-content {
  background: black;

  min-height: 250px;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 60px 20px;
}

.social-links {
  display: flex;
  gap: 40px;

  margin-bottom: 40px;
}

.social-links a {
  color: white;
  font-size: 36px;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.social-links a:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

.footer-nav {
  display: flex;
  gap: 32px;

  margin-bottom: 30px;
}

.footer-nav a {
  color: white;
  text-decoration: none;

  font-size: 14px;
  letter-spacing: 0.05em;

  opacity: 0.8;

  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-copyright {
  color: #777;
  font-size: 13px;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  header {
    padding: 0 24px;
  }

  nav {
    gap: 20px;
  }

  .content-row,
  .content-row.reverse {
    flex-direction: column;
    gap: 32px;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }
}

/* PRESS KIT */

.presskit-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 0;
}

.presskit-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 100px;
}

.presskit-hero img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.presskit-hero-text h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.9;
  margin-bottom: 24px;
}

.presskit-hero-text p {
  font-size: 22px;
  line-height: 1.5;
  color: #dddddd;
}

.presskit-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

.presskit-sidebar {
  position: sticky;
  top: 20px;
  background: #111;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.presskit-sidebar h2,
.presskit-block h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.fact {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
}

.fact span {
  display: block;
  color: #999;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.fact strong {
  color: white;
  font-size: 16px;
}

.presskit-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.presskit-block {
  background: #333;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.presskit-block h3 {
  font-size: 22px;
  margin: 28px 0 12px;
}

.presskit-block p,
.presskit-block li {
  color: #dddddd;
  font-size: 18px;
  line-height: 1.7;
}

.presskit-block a {
  color: black;
  font-weight: 800;
}

.presskit-block .mail {
  color: white;
  font-weight: 800;
}

.feature-list,
.team-list {
  padding-left: 22px;
}

.feature-list li {
  margin-bottom: 12px;
}

.presskit-button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 20px;
  background: white;
  color: black;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.presskit-button:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.presskit-button.small {
  margin-top: 12px;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #111;
  display: grid;
  place-items: center;
  color: #aaa;
}

.presskit-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.presskit-images img {
  width: 100%;
  border-radius: 18px;
  display: block;
  transition: transform 0.25s ease;
}

.presskit-images img:hover {
  transform: scale(1.025);
}

.steam-capsules-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;

  margin: 24px 0;
}

.steam-capsules-grid img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

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

  margin: 24px 0;
}

.logo-grid img {
  width: 100%;
  max-height: 180px;

  object-fit: contain;

  background: #222;
  border-radius: 16px;
  padding: 20px;
}

/* ABOUT PAGE */

.about-page {
  display: grid;
  grid-template-columns: 1fr 0.001fr 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 120px auto;
  padding: 0 32px;
}

.vertical-divider {
  width: 1px;
  background: white;
}

.about-column {
  background: #111;
  padding: 48px;
  border-radius: 18px;
}

.about-column h1 {
  margin-bottom: 24px;
  font-size: 42px;
}

.about-column p {
  font-size: 20px;
  line-height: 1.6;
  color: #ddd;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-links a {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 14px;
  align-items: center;
  gap: 14px;
  color: white;
  font-size: 22px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.contact-links a:hover {
  transform: translateX(6px);
  opacity: 0.8;
}

.contact-links i {
  font-size: 28px;
}

/* FAQ */

.faq-page {
  max-width: 1000px;
  margin: 120px auto;
  padding: 0 32px;
}

.faq-page h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
}

.faq-item {
  margin-bottom: 30px;
  padding: 24px 32px;

  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid white;
  border-radius: 8px;
}

.faq-item h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.faq-item p {
  color: #d0d0d0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-page {
    margin: 80px auto;
  }

  .faq-page h1 {
    font-size: 2.2rem;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 800px) {
  .about-page {
    grid-template-columns: 1fr;
    margin: 80px auto;
  }

  .about-column {
    padding: 32px;
  }
}

@media (max-width: 900px) {
  .presskit-hero,
  .presskit-layout {
    grid-template-columns: 1fr;
  }

  .presskit-sidebar {
    position: static;
  }

  .presskit-images {
    grid-template-columns: 1fr;
  }

  .presskit-block {
    padding: 32px;
  }
}
