@font-face {
  font-family: "Audiowide";
  src: url("fonts/Audiowide-Regular.woff2") format("woff2"), url("fonts/Audiowide-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.woff2") format("woff2"), url("fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.woff2") format("woff2"), url("fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-base: "Roboto", sans-serif;
  --font-heading: "Audiowide", sans-serif;
  --clr-bg: #0b0d12;
  --clr-surface: #181b26;
  --clr-surface-alt: #2c3040;
  --clr-primary: #6c5ce7;
  --clr-primary-accent: #9b88ff;
  --clr-secondary: #ff7675;
  --clr-secondary-accent: #ffb6b3;
  --clr-text: #fbfbff;
  --clr-muted: #ffb6b3;
  --clr-highlight: #00cec9;
  --font-size-h1: 3.5rem;
  --font-size-h2: 2.5rem;
  --font-size-h3: 1.75rem;
  --font-size-h4: 1.25rem;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.5rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.2);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

* {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  font-size: var(--font-size-h2);
}

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.5;
  background: var(--clr-bg);
  color: var(--clr-text);
}

button {
  border: 0;
  cursor: pointer;
}

figure {
  margin: 0;
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

blockquote {
  margin: 0;
}

.aspect-3-4 {
  aspect-ratio: 3/4;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.aspect-1-1 {
  aspect-ratio: 1/1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  background: var(--clr-primary);
  color: var(--clr-text);
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--clr-primary-accent);
  transform: translateY(-2px);
}

.header {
  background: var(--clr-surface);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  display: block;
  width: 195px;
  height: auto;
}

.nav-main {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.nav-item a {
  color: var(--clr-text);
  text-decoration: none;
  font-size: var(--font-size-base);
  transition: color 0.3s;
  text-transform: uppercase;
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--clr-highlight);
}
.nav-item.active a {
  font-weight: 700;
}

.burger {
  display: none;
  background: none;
  padding: 10px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--clr-text);
  margin: 5px 0;
  transition: all 0.3s;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.banner-section {
  position: relative;
  z-index: 101;
  height: 100vh;
  background-color: #0b0d12;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.banner-section .btn-primary {
  padding: 16px 32px;
  font-size: 20px;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.banner-content p {
  font-size: var(--font-size-large);
  max-width: 800px;
  margin: 0 auto;
}

.hero-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 20px;
}

.hero-text h3 {
  font-size: var(--font-size-h3);
  color: var(--clr-highlight);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: var(--font-size-base);
  margin-bottom: 20px;
}

.hero-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.hero-text ul li {
  font-size: var(--font-size-base);
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.hero-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--clr-secondary);
  border-radius: 50%;
}

.reviews-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.reviews-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.reviews-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.reviews-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), var(--shadow-inset);
}

.review-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}

.review-card .rating {
  font-size: var(--font-size-base);
  color: var(--clr-highlight);
  margin-bottom: 10px;
}

.review-card p {
  font-size: var(--font-size-small);
  margin-bottom: 15px;
}

.reviews-section .cta {
  display: block;
  margin: 30px auto 0;
  text-align: center;
}

.trending-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.trending-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.trending-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.trending-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
}

.trending-card {
  border: 2px solid var(--clr-surface);
  flex: 0 0 300px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
}

.trending-card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--clr-primary-accent), var(--clr-primary));
  border-radius: var(--radius-md);
  z-index: -1;
}

.trending-card:hover::after {
  opacity: 1;
}

.trending-card h3 {
  font-size: var(--font-size-h4);
  text-align: center;
  margin: 1rem 0;
}

.trending-card .score-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--clr-highlight);
  color: var(--clr-bg);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-small);
}

.genres-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.genres-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.genres-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.genre-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-highlight);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  position: relative;
  overflow: hidden;
}

.genre-card:hover .genre-desc {
  opacity: 1;
  transform: translateY(0);
}

.genre-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), var(--shadow-inset);
}

.genre-icon {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
}

.genre-card h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 10px;
}

.genre-desc {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
  opacity: 0.2;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.testimonials-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.testimonials-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.testimonials-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-secondary);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  text-align: center;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), var(--shadow-inset);
}

.testimonial-card p {
  font-style: italic;
  font-size: var(--font-size-base);
  margin-bottom: 15px;
}

.testimonial-card cite {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
  font-style: normal;
}

.avatar {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--clr-highlight);
}

.rotate-1 {
  transform: rotate(1deg);
}

.rotate-2 {
  transform: rotate(2deg);
}

.rotate-3 {
  transform: rotate(3deg);
}

.rotate-neg-1 {
  transform: rotate(-1deg);
}

.rotate-neg-2 {
  transform: rotate(-2deg);
}

.rotate-neg-3 {
  transform: rotate(-3deg);
}

.gotm-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.gotm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.gotm-image {
  border: 2px solid var(--clr-highlight);
  border-radius: var(--radius-md);
  box-shadow: 0 0 15px var(--clr-highlight);
}

.gotm-text h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.gotm-text h4 {
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.gotm-text p {
  font-size: var(--font-size-base);
  margin-bottom: 20px;
}

.gotm-text ol {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.gotm-text ol li {
  font-size: var(--font-size-base);
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.gotm-text ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--clr-secondary);
  border-radius: 50%;
}

.scores-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.scores-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.scores-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.scores-timeline {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.scores-timeline li {
  display: flex;
  align-items: center;
  padding: 20px;
  position: relative;
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
}

.scores-timeline li:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), var(--shadow-inset);
}

.scores-timeline li::after {
  content: "";
  position: absolute;
  left: 50px;
  top: 70px;
  height: calc(100% + 20px);
  width: 2px;
  background: dashed var(--clr-muted);
}

.scores-timeline li:last-child::after {
  display: none;
}

.timeline-icon {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

.scores-timeline h3 {
  font-size: var(--font-size-h3);
  margin: 0;
}

.scores-timeline p {
  font-size: var(--font-size-small);
  margin: 0;
}

.scores-section .cta {
  display: block;
  margin: 30px auto 0;
  text-align: center;
}

.rating-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.rating-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.rating-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rating-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary-accent);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
}

.rating-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), var(--shadow-inset);
}

.rating-icon {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
}

.rating-card h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 10px;
}

.rating-card p {
  font-size: var(--font-size-small);
}

.progress-bar {
  background: var(--clr-surface-alt);
  height: 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-bar .progress-fill {
  display: block;
  height: 100%;
  background: var(--clr-highlight);
  transition: width 0.3s;
}

.progress-bar .graphics {
  width: 80%;
}

.progress-bar .gameplay {
  width: 90%;
}

.progress-bar .storyline {
  width: 85%;
}

.progress-bar .replay {
  width: 75%;
}

.cta-section {
  padding: 80px 0;
  background: url(images/cta.svg), radial-gradient(circle, var(--clr-surface-alt), var(--clr-bg));
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%, auto;
  text-align: center;
}

.cta-section h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.cta-section h4 {
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 20px;
}

.footer {
  background: var(--clr-surface);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
}

.footer-brand img {
  width: 195px;
  height: auto;
}

.footer-brand p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
}

.footer-links h4 {
  font-size: var(--font-size-h4);
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--clr-text);
  text-decoration: none;
  font-size: var(--font-size-small);
}

.footer-links a:hover {
  color: var(--clr-highlight);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-muted);
}

.footer-bottom p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
}

@media (max-width: 1023px) {
  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--clr-surface);
    padding: 20px;
  }

  .nav-main.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
  }

  .burger {
    display: block;
  }

  .hero-grid,
  .gotm-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .genres-grid,
  .testimonials-grid,
  .rating-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .banner-section {
    padding: 20px 0;
  }

  .hero-section,
  .reviews-section,
  .trending-section,
  .genres-section,
  .testimonials-section,
  .gotm-section,
  .scores-section,
  .rating-section,
  .cta-section {
    padding: 40px 0;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .genres-grid,
  .testimonials-grid,
  .rating-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    margin: 0 0 20px;
  }

  .footer-brand,
  .footer-links:last-child {
    grid-column: 1 / -1;
  }

  .footer-links:last-child ul {
    display: flex;
    gap: 20px;
  }

  .scores-timeline li {
    flex-direction: column;
  }
}

.hero-reviews {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-surface-alt);
}

.hero-reviews-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

.hero-reviews-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-reviews-content {
  text-align: center;
  padding: 80px 0;
  z-index: 1;
}

.hero-reviews-content h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-reviews-content p {
  font-size: var(--font-size-large);
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-muted);
}

.review-feed-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.review-feed-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.review-feed-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.review-feed-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.review-feed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.review-feed-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary-accent);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  text-align: center;
}

.review-feed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.review-feed-card .review-tag {
  display: inline-block;
  background: var(--clr-highlight);
  color: var(--clr-bg);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-small);
  margin-bottom: 10px;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.review-feed-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}

.review-feed-card p {
  font-size: var(--font-size-small);
  margin-bottom: 15px;
}

.review-feed-card .rating {
  font-size: var(--font-size-base);
  color: var(--clr-highlight);
}

.top-rated-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.top-rated-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.top-rated-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.top-rated-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.top-rated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.top-rated-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-secondary);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
}

.top-rated-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), var(--shadow-inset);
}

.top-rated-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}

.top-rated-card p {
  font-size: var(--font-size-small);
  margin-bottom: 15px;
}

.top-rated-card .score-badge {
  font-size: var(--font-size-base);
  background: green;
  color: #fff;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.top-rated-card .score-badge.animated {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.indie-reviews-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.indie-reviews-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.indie-reviews-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.indie-reviews-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.indie-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.indie-card {
  position: relative;
  background: linear-gradient(135deg, var(--clr-surface), var(--clr-surface-alt));
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.indie-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}

.indie-card p {
  font-size: var(--font-size-small);
  margin-bottom: 15px;
}

.indie-icon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 50px;
  height: 50px;
  background-color: var(--clr-surface);
  border-radius: 100%;
  padding: 5px;
}

.spotlight-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
  position: relative;
}

.spotlight-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 206, 201, 0.2), transparent);
  z-index: 0;
}

.spotlight-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.spotlight-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.spotlight-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

.spotlight-quote {
  text-align: center;
  font-style: italic;
  font-size: var(--font-size-large);
  color: var(--clr-highlight);
  margin: 20px 0;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.spotlight-image {
  border: 2px solid var(--clr-highlight);
  border-radius: var(--radius-md);
}

.spotlight-grid .spotlight-text * {
  text-align: left;
}

.spotlight-text h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 10px;
}

.spotlight-text .rating {
  font-size: var(--font-size-base);
  color: var(--clr-highlight);
  margin-bottom: 10px;
}

.spotlight-text p {
  font-size: var(--font-size-base);
  margin-bottom: 15px;
}

.charts-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.charts-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.charts-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.charts-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.charts-table-wrapper {
  overflow: auto;
}

.charts-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-surface);
}

.charts-table th,
.charts-table td {
  padding: 10px;
  text-align: center;
  border: 1px solid var(--clr-muted);
}

.charts-table th {
  background: var(--clr-surface-alt);
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
}

.chart-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 150px;
  height: 12px;
  background: var(--clr-surface-alt);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.chart-fill {
  height: 100%;
  background: var(--clr-highlight);
  transition: width 0.3s;
}

.chart-score {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
}

.bar-95 {
  width: 95%;
}
.bar-92 {
  width: 92%;
}
.bar-90 {
  width: 90%;
}
.bar-88 {
  width: 88%;
}
.bar-87 {
  width: 87%;
}
.bar-85 {
  width: 85%;
}
.bar-82 {
  width: 82%;
}
.bar-83 {
  width: 83%;
}
.bar-80 {
  width: 80%;
}
.bar-78 {
  width: 78%;
}

.faq-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.faq-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.faq-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.faq-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

summary {
  border-radius: var(--radius-md);
}

.faq-item summary {
  padding: 15px;
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  cursor: pointer;
  transition: background 0.3s;
}

.faq-item summary:hover {
  background: var(--clr-surface-alt);
}

.faq-content {
  padding: 15px;
  font-size: var(--font-size-base);
}
.faq-content p {
  text-align: left;
}

.reader-form-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.reader-form-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.reader-form-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.reader-form-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.reader-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reader-form label {
  font-size: var(--font-size-base);
  font-family: var(--font-heading);
}

.reader-form input,
.reader-form textarea {
  background: var(--clr-surface);
  border: 1px solid var(--clr-primary);
  border-radius: var(--radius-sm);
  padding: 10px;
  color: var(--clr-text);
  font-size: var(--font-size-base);
  box-shadow: var(--shadow-sm);
}

.reader-form input::placeholder,
.reader-form textarea::placeholder {
  color: var(--clr-muted);
}

.reader-form textarea {
  min-height: 150px;
  resize: vertical;
}

.reader-form .privacy-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-small);
}

.reader-form .privacy-checkbox a {
  color: var(--clr-highlight);
  text-decoration: none;
}

.reader-form .privacy-checkbox a:hover {
  text-decoration: underline;
}

.reader-form button {
  margin-top: 10px;
}

/* Modal styles for JavaScript-based modals */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  padding: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-content button.btn-primary {
  display: inline-block;
  margin-top: 15px;
  float: right;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

.modal-content h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 15px;
}

.modal-content h3 {
  font-size: var(--font-size-h3);
  margin: 20px 0 10px;
}

.modal-content p {
  font-size: var(--font-size-base);
  margin-bottom: 15px;
}

.modal-content .btn-primary {
  position: sticky;
  bottom: 20px;
  right: 20px;
  margin-top: 20px;
  display: block;
  width: fit-content;
  margin-left: auto;
}

@media (max-width: 1023px) {
  .review-feed-grid,
  .top-rated-grid,
  .indie-reviews-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-reviews {
    min-height: 300px;
  }

  .hero-reviews-content {
    padding: 40px 0;
  }

  .review-feed-section,
  .top-rated-section,
  .indie-reviews-section,
  .spotlight-section,
  .charts-section,
  .faq-section,
  .reader-form-section {
    padding: 40px 0;
  }

  .modal-content {
    max-height: 85vh;
    margin: 10px;
    padding: 15px;
  }
}

.hero-top {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, var(--clr-surface-alt), var(--clr-surface-alt) 10px, var(--clr-surface) 10px, var(--clr-surface) 20px);
}

.hero-top-content {
  text-align: center;
  padding: 80px 0;
  z-index: 1;
}

.hero-top-content h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 20px;
  color: var(--clr-highlight);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-top-content p {
  font-size: var(--font-size-large);
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-muted);
}

.staff-picks-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.staff-picks-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.staff-picks-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.staff-picks-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.staff-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.staff-pick-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.staff-pick-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.staff-pick-card .ribbon-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--clr-highlight);
  color: var(--clr-bg);
  padding: 5px 15px;
  font-size: var(--font-size-small);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.staff-pick-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}

.staff-pick-card p {
  font-size: var(--font-size-small);
  margin-bottom: 15px;
}

.staff-pick-card .rating {
  font-size: var(--font-size-base);
  color: var(--clr-highlight);
}

.annual-favorites-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.annual-favorites-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.annual-favorites-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.annual-favorites-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.annual-row {
  padding: 40px 0;
}

.annual-row h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.retro-badge {
  display: inline-block;
  background: var(--clr-secondary);
  color: var(--clr-bg);
  padding: 5px 15px;
  font-size: var(--font-size-small);
  border-radius: var(--radius-sm);
  border: 2px solid var(--clr-primary);
  font-family: var(--font-heading);
}

.annual-2024 {
  background: var(--clr-primary);
}

.annual-2023 {
  background: var(--clr-secondary);
}

.annual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.annual-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-muted);
  border-radius: var(--radius-md);
  padding: 20px;
}

.annual-card h4 {
  font-size: var(--font-size-h4);
  margin: 10px 0;
}

.annual-card p {
  font-size: var(--font-size-small);
  margin-bottom: 15px;
}

.annual-card .rating {
  font-size: var(--font-size-base);
  color: var(--clr-highlight);
}

.comparison-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.comparison-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.comparison-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.comparison-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.comparison-table-wrapper {
  overflow: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-surface);
}

.comparison-table th,
.comparison-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid var(--clr-muted);
}

.comparison-table th {
  background: var(--clr-surface-alt);
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
}

.comparison-table tbody tr:nth-child(odd) {
  background: var(--clr-bg);
}

.comparison-table tbody tr:hover {
  background: var(--clr-surface-alt);
}

.badges-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.badges-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.badges-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badges-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.badge-item {
  text-align: center;
}

.badge-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
}

.badge-icon img {
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.badge-item h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 10px;
}

.badge-item p {
  font-size: var(--font-size-small);
}

.cta-section-top {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-highlight));
}

.cta-section-top h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.cta-section-top h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-section-top p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #fff;
}

.btn-cta {
  display: block;
  margin: 0 auto;
  padding: 15px 30px;
  font-size: var(--font-size-large);
  background: var(--clr-bg);
  color: var(--clr-highlight);
  border: 2px solid var(--clr-highlight);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  text-align: center;
}

.btn-cta:hover {
  background: var(--clr-highlight);
  color: var(--clr-bg);
}

@media (max-width: 1023px) {
  .staff-picks-grid,
  .annual-grid,
  .badges-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .hero-top {
    min-height: 300px;
  }

  .hero-top-content {
    padding: 40px 0;
  }

  .staff-picks-section,
  .annual-favorites-section,
  .comparison-section,
  .badges-section,
  .cta-section {
    padding: 40px 0;
  }

  .staff-picks-grid,
  .annual-grid,
  .badges-grid {
    grid-template-columns: 1fr;
  }

  .btn-cta {
    padding: 10px 20px;
    font-size: var(--font-size-base);
  }
}

.awarded-games-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.awarded-games-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.awarded-games-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.awarded-games-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.awarded-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.award-item {
  text-align: center;
  box-shadow: 0 0 2px var(--clr-primary), inset 0 0 10px rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
}

.award-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
}

.award-icon img {
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.award-item h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 10px;
}
.award-item h3 span {
  display: block;
  font-size: 0.8em;
  color: var(--clr-highlight);
  margin: 0.5rem 0 0;
}

.award-item p {
  font-size: var(--font-size-small);
}

@media (max-width: 1023px) {
  .awarded-games-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .awarded-games-section {
    padding: 40px 0;
  }

  .awarded-games-grid {
    grid-template-columns: 1fr;
  }
}

.hero-news {
  position: relative;
  min-height: 400px;
  background: var(--clr-surface-alt) url(images/banner.svg);
  position: relative;
}

.hero-news-content {
  text-align: center;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  overflow: hidden;
  background: var(--clr-primary);
  padding: 20px 0;
  white-space: nowrap;
}

.ticker-scroll {
  display: inline-flex;
  animation: ticker-slide 40s linear infinite;
}

.ticker-item {
  display: inline-block;
}

.ticker-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: red;
  margin: 0 20px;
  animation: pulse-red 1.5s infinite both;
  display: inline-block;
}

@keyframes ticker-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes pulse-red {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1.5);
  }
}

.hero-news-content h1 {
  font-size: var(--font-size-h1);
  margin-top: 20px;
}

.headlines-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.headlines-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.headlines-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.headlines-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.headlines-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.headline-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
}

.headline-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--clr-highlight);
  color: var(--clr-bg);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-small);
}

.headline-tag.new {
  background: var(--clr-secondary);
}

.headline-label {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-small);
}

.headline-label.update {
  background: var(--clr-primary);
  color: var(--clr-bg);
}

.headline-label.rumor {
  background: var(--clr-muted);
  color: var(--clr-text);
}

.headline-label.confirmed {
  background: var(--clr-highlight);
  color: var(--clr-bg);
}

.headline-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}

.headline-card p {
  font-size: var(--font-size-small);
  margin-bottom: 15px;
}

.studio-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.studio-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.studio-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.studio-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.studio-card {
  background: var(--clr-surface);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid var(--clr-primary);
  border-radius: var(--radius-md);
  padding: 20px;
}

.studio-logo {
  width: 100px;
  height: 50px;
  margin-bottom: 10px;
}

.studio-nameplate {
  display: inline-block;
  background: var(--clr-primary);
  float: right;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-small);
  margin-bottom: 10px;
}

.studio-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}

.studio-card p {
  font-size: var(--font-size-small);
  margin-bottom: 15px;
  text-align: left;
}

.event-section {
  padding: 80px 0;
  background: var(--clr-bg);
  border-bottom: 10px solid var(--clr-primary-accent);
}

.event-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.event-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.event-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.event-timeline {
  position: relative;
  padding-left: 60px;
  max-width: 600px;
  margin: auto;
}

.event-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--clr-muted);
}

.event-block {
  position: relative;
  margin-bottom: 20px;
}

.event-timestamp {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
}

.event-icon {
  width: 60px;
}

.event-block h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}

.event-block p {
  font-size: var(--font-size-small);
  margin: 0 0 20px;
  text-align: left;
}

.releases-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.releases-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.releases-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.releases-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.releases-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.release-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-muted);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.release-date {
  font-size: var(--font-size-small);
  color: var(--clr-highlight);
  background: var(--clr-bg);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.release-item h3 {
  font-size: var(--font-size-h3);
}

.platform-tags {
  display: flex;
  gap: 10px;
}

.platform-tag {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: var(--font-size-small);
  background: var(--clr-primary);
  color: var(--clr-bg);
}

.platform-tag.pc {
  background: var(--clr-primary);
}
.platform-tag.ps5 {
  background: var(--clr-secondary);
}
.platform-tag.xbox {
  background: var(--clr-highlight);
}
.platform-tag.switch {
  background: var(--clr-muted);
}

.leaks-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.leaks-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.leaks-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.leaks-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.leaks-list {
  max-width: 800px;
  margin: 0 auto;
}

.leak-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-muted);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

.leak-item summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  cursor: pointer;
}

.leak-title {
  flex-grow: 1;
  font-size: var(--font-size-h3);
}

.credibility-stars {
  font-size: var(--font-size-base);
  color: var(--clr-highlight);
}

.leak-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leak-icon img {
  width: 100%;
  height: 100%;
}

.leak-icon.unverified img {
  filter: blur(2px);
}

.leak-content {
  padding: 15px;
}

.leak-content p {
  font-size: var(--font-size-small);
  margin-bottom: 15px;
}

.economics-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.economics-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.economics-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.economics-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.economics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.economics-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-muted);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.economics-card h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 10px;
}

.economics-card .game-image {
  margin: 10px 0;
}

.economics-card .game-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.economics-card p {
  font-size: var(--font-size-small);
}

.interviews-section {
  padding: 80px 0;
  background: var(--clr-bg);
}

.interviews-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.interviews-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.interviews-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.interviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.interview-quote {
  background: var(--clr-surface);
  border-left: 4px solid var(--clr-highlight);
  padding: 20px;
}

.interview-quote p {
  font-size: var(--font-size-base);
  font-style: italic;
  margin-bottom: 10px;
}

.interview-quote footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.interview-initials {
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  color: var(--clr-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-base);
}

.interview-quote cite {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
}

.filter-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}

.filter-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.filter-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.filter-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.filter-panel {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  position: sticky;
  top: 0;
  z-index: 10;
  overflow-x: auto;
}

.filter-btn {
  padding: 10px 20px;
  border: none;
  background: var(--clr-surface);
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: var(--font-size-small);
}

.filter-btn:hover {
  background: var(--clr-highlight);
  color: var(--clr-bg);
}

.subscribe-section {
  padding: 80px 0;
  background: var(--clr-bg) url(images/news.svg) center/cover no-repeat;
}

.subscribe-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}

.subscribe-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.subscribe-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.subscribe-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscribe-form label {
  font-size: var(--font-size-base);
  font-family: var(--font-heading);
}

.subscribe-form input {
  background: transparent;
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-sm);
  padding: 10px;
  color: var(--clr-text);
  font-size: var(--font-size-base);
}

.subscribe-form input::placeholder {
  color: var(--clr-muted);
}

.subscribe-form button {
  margin-top: 10px;
}

@media (max-width: 1023px) {
  .studio-grid,
  .economics-grid,
  .interviews-grid {
    grid-template-columns: 1fr;
  }

  .releases-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-news {
    min-height: 300px;
  }

  .hero-news-content {
    padding: 40px 0;
  }

  .headlines-section,
  .studio-section,
  .event-section,
  .releases-section,
  .leaks-section,
  .economics-section,
  .interviews-section,
  .filter-section,
  .subscribe-section {
    padding: 40px 0;
  }

  .headlines-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .event-timeline::before {
    left: 10px;
  }
}

a {
  color: inherit;
}

/* Hero Guides Section */
.hero-guides {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-surface-alt);
}
.hero-guides-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}
.hero-guides-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-guides-content {
  text-align: center;
  padding: 80px 0;
  z-index: 1;
}
.hero-guides-content h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 20px;
  color: var(--clr-highlight);
  text-shadow: 0 0 10px rgba(0, 206, 201, 0.5);
}
.hero-guides-content p {
  font-size: var(--font-size-large);
  max-width: 600px;
  margin: 0 auto;
  color: var(--clr-muted);
}

/* Getting Started Tips Section */
.getting-started-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.getting-started-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.getting-started-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.getting-started-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.getting-started-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.getting-started-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  transition: transform 0.3s, box-shadow 0.3s;
}
.getting-started-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), var(--shadow-inset);
}
.getting-started-icon {
  width: 60px;
  overflow: visible;
  margin: 0 auto 10px;
}
.getting-started-icon img {
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s;
}
.getting-started-card:hover .getting-started-icon img {
  filter: grayscale(0%) opacity(1) drop-shadow(0 0 8px var(--clr-primary-accent));
}
.getting-started-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}
.getting-started-card p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
}

/* Advanced Tactics Section */
.advanced-tactics-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}
.advanced-tactics-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.advanced-tactics-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.advanced-tactics-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.advanced-tactics-list {
  max-width: 800px;
  margin: 0 auto;
}
.tactics-item {
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary-accent);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}
.tactics-item .summary {
  padding: 15px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  cursor: pointer;
  background: linear-gradient(90deg, var(--clr-surface-alt), var(--clr-surface));
  transition: background 0.3s;
  border-radius: var(--radius-md);
}
.tactics-item .summary:hover {
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-accent));
}
.tactics-content {
  padding: 15px;
  display: block;
}
.tactics-content p {
  font-size: var(--font-size-base);
  margin-bottom: 15px;
  text-align: left;
}
.tactics-content ul {
  list-style: none;
  padding: 0;
}
.tactics-content ul li {
  font-size: var(--font-size-base);
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.tactics-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--clr-secondary);
  border-radius: 50%;
}

/* Build Recommendations Section */
.build-recommendations-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.build-recommendations-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.build-recommendations-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.build-recommendations-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.build-recommendations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.build-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-highlight);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  transition: transform 0.3s, box-shadow 0.3s;
}
.build-card.mythic-realms {
  border-color: var(--clr-primary);
}
.build-card.blaze-horizon {
  border-color: var(--clr-secondary);
}
.build-card.lunar-echoes {
  border-color: var(--clr-highlight);
}
.build-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), var(--shadow-inset);
}
.build-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}
.build-card p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
}
.build-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.build-icons img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 5px var(--clr-primary-accent));
}

/* Common Mistakes Section */
.common-mistakes-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}
.common-mistakes-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.common-mistakes-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.common-mistakes-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.mistakes-table-wrapper {
  overflow-x: auto;
  max-width: 800px;
  margin: 0 auto;
}
.mistakes-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-surface);
}
.mistakes-table th,
.mistakes-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid var(--clr-muted);
}
.mistakes-table th {
  background: var(--clr-surface-alt);
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
}
.mistakes-table tbody tr:nth-child(odd) {
  background: var(--clr-bg);
}
.mistakes-table tbody tr:hover {
  background: var(--clr-surface-alt);
}
.indicator.do {
  color: var(--clr-highlight);
  font-size: var(--font-size-base);
  margin-right: 5px;
}
.indicator.dont {
  color: var(--clr-secondary);
  font-size: var(--font-size-base);
  margin-right: 5px;
}

/* Gear Guides Section */
.gear-guides-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.gear-guides-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.gear-guides-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.gear-guides-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.gear-guides-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.gear-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary-accent);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3), -4px -4px 12px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gear-card:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.4), -6px -6px 20px rgba(255, 255, 255, 0.2);
}
.gear-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}
.gear-card p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
  text-align: left;
}

/* Meta Shifts Section */
.meta-shifts-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}
.meta-shifts-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.meta-shifts-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.meta-shifts-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.meta-timeline {
  position: relative;
  padding-left: 60px;
  max-width: 800px;
  margin: 0 auto;
}
.meta-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--clr-muted), var(--clr-muted) 5px, transparent 5px, transparent 10px);
}
.meta-block {
  position: relative;
  margin-bottom: 20px;
}
.meta-timestamp {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
  margin-bottom: 5px;
}
.meta-icon {
  position: absolute;
  left: -60px;
  top: 0;
  filter: drop-shadow(0 0 5px var(--clr-highlight));
}
.meta-icon img {
  width: 40px;
  height: 40px;
}
.meta-block h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}
.meta-block p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
  text-align: left;
}

/* Most Popular Tips Section */
.popular-tips-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.popular-tips-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.popular-tips-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.popular-tips-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.popular-tips-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.popular-tip-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-highlight);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  transition: transform 0.3s, box-shadow 0.3s;
}
.popular-tip-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), var(--shadow-inset);
}
.popular-tip-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}
.popular-tip-card p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
  text-align: left;
}
.upvote-badge {
  display: inline-block;
  background: var(--clr-primary-accent);
  color: var(--clr-bg);
  padding: 5px 15px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-small);
  margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .getting-started-grid,
  .build-recommendations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .hero-guides {
    min-height: 300px;
  }
  .hero-guides-content {
    padding: 40px 0;
  }
  .getting-started-section,
  .advanced-tactics-section,
  .build-recommendations-section,
  .common-mistakes-section,
  .gear-guides-section,
  .meta-shifts-section,
  .popular-tips-section {
    padding: 40px 0;
  }
  .getting-started-grid,
  .build-recommendations-grid {
    grid-template-columns: 1fr;
  }
  .meta-timeline::before {
    left: 10px;
  }
  .meta-icon {
    left: -70px;
  }
}

/* Hero About Section */
.hero-about {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-surface-alt);
}
.hero-about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}
.hero-about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-about-content {
  text-align: center;
  padding: 80px 0;
  z-index: 1;
}
.hero-about-content h1 {
  font-size: var(--font-size-h1);
  margin-bottom: 20px;
  color: var(--clr-highlight);
  text-shadow: 0 0 10px rgba(0, 206, 201, 0.5);
}
.hero-about-content blockquote {
  font-size: var(--font-size-large);
  font-style: italic;
  color: var(--clr-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Vision Section */
.vision-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.vision-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.vision-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.vision-section p {
  font-size: var(--font-size-base);
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--clr-muted);
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}
.values-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.values-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.values-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.value-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
}
.value-icon img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 8px var(--clr-primary-accent));
}
.value-content h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 10px;
}
.value-content p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
  text-align: left;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.team-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.team-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.team-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--clr-surface);
  border: 2px solid var(--clr-highlight);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm), var(--shadow-inset);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: rotate(2deg) translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), var(--shadow-inset);
}
.team-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 10px var(--clr-highlight);
}
.team-card h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}
.team-card .team-role {
  font-size: var(--font-size-small);
  color: var(--clr-primary-accent);
  margin-bottom: 10px;
}
.team-card p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
}

/* Behind the Name Section */
.name-story-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}
.name-story-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.name-story-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.name-story-section p {
  font-family: "Courier New", monospace;
  font-size: var(--font-size-base);
  max-width: 800px;
  margin: 0 auto;
  color: var(--clr-text);
  position: relative;
}
.name-story-section p::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-highlight);
  animation: underline 2s forwards;
}
@keyframes underline {
  to {
    width: 100%;
  }
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.stats-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.stats-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.stats-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-counter {
  text-align: center;
  padding: 20px;
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm), var(--shadow-inset);
}
.stat-counter h3 {
  font-size: var(--font-size-h3);
  color: var(--clr-highlight);
  text-shadow: 0 0 10px var(--clr-highlight);
}
.stat-counter p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
}

/* Join CTA Section */
.join-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-highlight));
  text-align: center;
}
.join-cta-section h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.join-cta-section h4 {
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.join-cta-section p {
  max-width: 600px;
  margin: 0 auto 20px;
  color: var(--clr-text);
}
.btn-join {
  display: inline-flex;
  padding: 15px 30px;
  background: var(--clr-bg);
  color: var(--clr-highlight);
  border: 2px solid var(--clr-highlight);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-join:hover {
  background: var(--clr-highlight);
  color: var(--clr-bg);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .team-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .hero-about {
    min-height: 300px;
  }
  .hero-about-content {
    padding: 40px 0;
  }
  .vision-section,
  .values-section,
  .team-section,
  .name-story-section,
  .stats-section,
  .join-cta-section {
    padding: 40px 0;
  }
  .team-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .value-row {
    flex-direction: column;
    text-align: center;
  }
}

/* Hero Contact Section */
.hero-contact {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-surface-alt);
}
.hero-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}
.hero-contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-contact-content {
  text-align: center;
  padding: 80px 0;
  z-index: 1;
}
.hero-contact-content h1 {
  font-size: var(--font-size-h1);
  color: var(--clr-highlight);
  text-shadow: 0 0 10px rgba(0, 206, 201, 0.5);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.contact-form-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.contact-form-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-form-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  position: relative;
}
.contact-form label {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: var(--font-size-small);
  color: var(--clr-muted);
  transition: all 0.3s;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-sm);
  padding: 15px;
  font-size: var(--font-size-base);
  color: var(--clr-text);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--clr-highlight);
  box-shadow: 0 0 8px var(--clr-highlight);
}
.contact-form input:focus + label,
.contact-form select:focus + label,
.contact-form textarea:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form select:not(:placeholder-shown) + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: var(--font-size-small);
  background: var(--clr-surface);
  padding: 0 5px;
  color: var(--clr-highlight);
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.form-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-privacy label {
  position: static;
  font-size: var(--font-size-small);
}
.form-privacy input {
  width: auto;
}
.form-privacy a {
  color: var(--clr-highlight);
  text-decoration: none;
}
.form-privacy a:hover {
  text-decoration: underline;
}

/* FAQ Contact Section */
.faq-contact-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}
.faq-contact-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.faq-contact-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.faq-contact-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.faq-contact-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-contact-item {
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}
.faq-contact-item[open] {
  border-left: 4px solid var(--clr-highlight);
}
.faq-contact-item summary {
  padding: 15px;
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  cursor: pointer;
  transition: background 0.3s;
}
.faq-contact-item summary:hover {
  background: var(--clr-surface-alt);
}
.faq-content {
  padding: 15px;
}
.faq-content p {
  font-size: var(--font-size-base);
  color: var(--clr-muted);
}

/* Support Topics Section */
.support-topics-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.support-topics-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.support-topics-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.support-topics-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.support-topics-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.support-topic {
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary-accent);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.support-topic::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--clr-highlight), transparent);
  opacity: 0;
  transition: all 0.5s;
}
.support-topic:hover::after {
  width: 200%;
  height: 200%;
  opacity: 0.3;
  top: -50%;
  left: -50%;
}
.topic-icon img {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  filter: drop-shadow(0 0 8px var(--clr-primary-accent));
}
.support-topic h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 10px;
}
.support-topic p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: var(--clr-surface-alt);
}
.process-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.process-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.process-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}
.process-row {
  display: flex;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.process-step {
  flex: 1;
  background: var(--clr-surface);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.process-step h3 {
  font-size: var(--font-size-h3);
  margin: 10px 0;
}
.process-step p {
  font-size: var(--font-size-small);
  color: var(--clr-muted);
}
.step-badge {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--clr-highlight);
  color: var(--clr-bg);
  border-radius: 50%;
  font-size: var(--font-size-base);
  margin-bottom: 10px;
  box-shadow: 0 0 10px var(--clr-highlight);
}

/* Ethics Section */
.ethics-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.ethics-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.ethics-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ethics-section p {
  font-size: var(--font-size-base);
  max-width: 800px;
  margin: 0 auto;
  color: var(--clr-muted);
}

/* Join Team Section */
.join-team-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-highlight));
}
.join-team-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.join-team-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.join-team-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--clr-text);
}
.btn-join-team {
  display: inline-block;
  margin: 0 auto;
  padding: 15px 30px;
  background: var(--clr-bg);
  color: var(--clr-highlight);
  border: 2px solid var(--clr-highlight);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-join-team:hover {
  background: var(--clr-highlight);
  color: var(--clr-bg);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .process-row {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .hero-contact {
    min-height: 300px;
  }
  .hero-contact-content {
    padding: 40px 0;
  }
  .contact-form-section,
  .faq-contact-section,
  .support-topics-section,
  .process-section,
  .ethics-section,
  .join-team-section {
    padding: 40px 0;
  }

  :root {
    --font-size-h1: 3rem;
    --font-size-h2: 2rem;
  }
}

/* Hero Privacy Section */
.hero-privacy {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-highlight));
}
.hero-privacy-content {
  text-align: center;
}
.hero-privacy-content h1 {
  font-size: var(--font-size-h1);
  color: var(--clr-text);
  text-shadow: 0 0 10px rgba(0, 206, 201, 0.5);
}

/* Privacy Section */
.privacy-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.privacy-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.privacy-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.privacy-section p {
  font-size: var(--font-size-base);
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--clr-muted);
}
.privacy-section h3 {
  font-size: var(--font-size-h3);
  margin: 20px auto 10px;
  max-width: 800px;
  color: var(--clr-text);
}
.privacy-section a {
  color: var(--clr-highlight);
  text-decoration: none;
}
.privacy-section a:hover {
  text-decoration: underline;
}

/* Hero Terms Section */
.hero-terms {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-highlight));
}
.hero-terms-content {
  text-align: center;
}
.hero-terms-content h1 {
  font-size: var(--font-size-h1);
  color: var(--clr-text);
  text-shadow: 0 0 10px rgba(0, 206, 201, 0.5);
}

/* Terms Section */
.terms-section {
  padding: 80px 0;
  background: var(--clr-bg);
}
.terms-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.terms-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.terms-section p {
  font-size: var(--font-size-base);
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--clr-muted);
}
.terms-section h3 {
  font-size: var(--font-size-h3);
  margin: 20px auto 10px;
  max-width: 800px;
  color: var(--clr-text);
}
.terms-section a {
  color: var(--clr-highlight);
  text-decoration: none;
}
.terms-section a:hover {
  text-decoration: underline;
}

/* Hero Thanks Section */
.hero-thanks {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-highlight));
}
.hero-thanks-content {
  text-align: center;
}
.hero-thanks-content h1 {
  font-size: var(--font-size-h1);
  color: var(--clr-text);
  text-shadow: 0 0 10px rgba(0, 206, 201, 0.5);
}

/* Thanks Section */
.thanks-section {
  padding: 80px 0;
  background: var(--clr-bg);
  text-align: center;
}
.thanks-section h2 {
  text-align: center;
  font-size: var(--font-size-h2);
  margin-bottom: 10px;
}
.thanks-section h4 {
  text-align: center;
  font-size: var(--font-size-h4);
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.thanks-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--clr-muted);
}
.thanks-section a {
  color: var(--clr-highlight);
  text-decoration: none;
}
.thanks-section a:hover {
  text-decoration: underline;
}
.btn-home {
  display: inline-block;
  margin: 0 auto;
  padding: 15px 30px;
  background: var(--clr-surface);
  color: var(--clr-highlight);
  border: 2px solid var(--clr-highlight);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-home:hover {
  background: var(--clr-highlight);
  color: var(--clr-bg);
  text-decoration: none !important;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero-privacy,
  .hero-terms,
  .hero-thanks {
    min-height: 200px;
  }
  .privacy-section,
  .terms-section,
  .thanks-section {
    padding: 40px 0;
  }
}
