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

:root {
  --primary-color: #2196f3;
  --secondary-color: #4caf50;
  --accent-color: #00bcd4;
  --silver-color: #e8e8e8;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo h1 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  margin: 3px 0;
  transition: var(--transition);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 50%,
    var(--secondary-color) 100%
  );
  opacity: 0.9;
  z-index: -1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  cursor: pointer;
  margin-top: 10px;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white);
  margin-top: 10px;
}

.btn-primary:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(
    135deg,
    var(--light-gray) 0%,
    var(--silver-color) 100%
  );
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #666;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-color);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.featured-news,
.featured-reviews,
.popular-guides,
.gaming-world {
  padding: 80px 0;
}

.featured-news {
  background: var(--light-gray);
}

.news-grid,
.reviews-grid,
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.news-card,
.review-card,
.guide-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.news-card:hover,
.review-card:hover,
.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.news-card h3,
.review-card h3,
.guide-card h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.news-date,
.guide-type {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.world-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.world-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 10px;
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.breaking-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.breaking-news-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: var(--white);
}

.breaking-news-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.news-category {
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.industry-news,
.game-releases,
.esports-news {
  padding: 60px 0;
}

.industry-news {
  background: var(--light-gray);
}

.news-list {
  display: grid;
  gap: 2rem;
}

.news-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.release-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.release-info {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.release-date {
  color: var(--primary-color);
  font-weight: 600;
}

.release-platforms {
  color: #666;
}

.esports-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.esports-highlights {
  display: grid;
  gap: 2rem;
}

.esports-article {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.tournament-schedule {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 10px;
}

.tournament-list {
  list-style: none;
}

.tournament-list li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.tournament-list li:last-child {
  border-bottom: none;
}

.tournament-name {
  font-weight: 600;
}

.tournament-date {
  color: var(--primary-color);
}

.featured-review {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stars {
  color: #ffc107;
  font-size: 1.5rem;
}

.score {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.review-breakdown {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.breakdown-item {
  display: grid;
  grid-template-columns: 100px 1fr 50px;
  align-items: center;
  gap: 1rem;
}

.category {
  font-weight: 600;
}

.rating-bar {
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
  transition: width 0.6s ease;
}

.rating-score {
  text-align: right;
  font-weight: 600;
  color: var(--primary-color);
}

.recent-reviews {
  background: var(--light-gray);
}

.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
}

.pros,
.cons {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
}

.pros h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.cons h4 {
  color: #f44336;
  margin-bottom: 1rem;
}

.pros ul,
.cons ul {
  list-style: none;
}

.pros li,
.cons li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

.cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f44336;
  font-weight: 700;
}

.review-date {
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: block;
}

.genre-reviews {
  padding: 60px 0;
}

.genre-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-button {
  padding: 12px 24px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.tab-button.active,
.tab-button:hover {
  background: var(--primary-color);
  color: var(--white);
}

.genre-content {
  position: relative;
}

.genre-panel {
  display: none;
}

.genre-panel.active {
  display: block;
}

.genre-reviews-list {
  display: grid;
  gap: 2rem;
}

.genre-review-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.mini-rating {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0.5rem 0;
}

.review-methodology {
  background: var(--light-gray);
}

.methodology-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.rating-criteria {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.rating-criteria ul {
  list-style: none;
}

.rating-criteria li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
}

.rating-criteria li:last-child {
  border-bottom: none;
}

.featured-guides {
  background: var(--light-gray);
}

.featured-guide {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.guide-header {
  margin-bottom: 2rem;
}

.guide-meta {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.guide-type,
.guide-difficulty,
.guide-length {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.guide-difficulty {
  background: var(--secondary-color);
}

.guide-length {
  background: var(--accent-color);
}

.guide-sections {
  margin: 2rem 0;
}

.guide-sections ul {
  list-style: none;
  margin-left: 1rem;
}

.guide-sections li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.guide-sections li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.guide-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.highlight-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.guide-categories {
  padding: 60px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.category-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.guide-list {
  list-style: none;
  margin-top: 1.5rem;
}

.guide-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.guide-list li:last-child {
  border-bottom: none;
}

.guide-list li::before {
  content: "📖";
  position: absolute;
  left: 0;
}

.beginner-guides {
  background: var(--light-gray);
}

.beginner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.beginner-guide {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.guide-topics {
  margin-top: 1.5rem;
}

.guide-topics ul {
  list-style: none;
  margin-top: 1rem;
}

.guide-topics li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.guide-topics li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.advanced-strategies {
  padding: 60px 0;
}

.strategies-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.strategy-breakdown {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.strategy-item {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
}

.strategy-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.strategy-tips {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.strategy-tips ul {
  list-style: none;
  margin-top: 1rem;
}

.strategy-tips li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.strategy-tips li:last-child {
  border-bottom: none;
}

.strategy-tips li::before {
  content: "💡";
  position: absolute;
  left: 0;
}

.contact-form-section {
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-methods {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-method {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
}

.contact-method h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-message {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.faq-section,
.community-section,
.response-time-section {
  padding: 60px 0;
}

.faq-section {
  background: var(--light-gray);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.community-features {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 10px;
}

.feature-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.response-time-section {
  background: var(--light-gray);
}

.response-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.response-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

.response-card h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.response-time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.legal-content {
  padding: 80px 0;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.document-info {
  background: var(--light-gray);
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 2rem;
}

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

.legal-section h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-gray);
}

.legal-section h3 {
  color: var(--text-color);
  margin: 1.5rem 0 1rem;
}

.legal-section ul {
  margin-left: 2rem;
}

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

.footer {
  background: var(--text-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #ccc;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-color);
  color: var(--white);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 8px 20px;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .world-content,
  .esports-content,
  .methodology-content,
  .strategies-content,
  .contact-content,
  .community-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .breaking-news-grid {
    grid-template-columns: 1fr;
  }

  .breaking-news-card.featured {
    grid-column: 1;
  }

  .review-pros-cons {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .breakdown-item {
    grid-template-columns: 80px 1fr 40px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .news-grid,
  .reviews-grid,
  .guides-grid,
  .category-grid,
  .beginner-grid,
  .releases-grid {
    grid-template-columns: 1fr;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .breakdown-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }

  .genre-tabs {
    flex-direction: column;
    align-items: center;
  }

  .guide-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .guide-highlights {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .featured-news,
  .featured-reviews,
  .popular-guides,
  .gaming-world,
  .industry-news,
  .game-releases,
  .esports-news,
  .genre-reviews,
  .review-methodology,
  .guide-categories,
  .beginner-guides,
  .advanced-strategies,
  .contact-form-section,
  .faq-section,
  .community-section,
  .response-time-section,
  .legal-content {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .news-card,
  .review-card,
  .guide-card,
  .category-card,
  .beginner-guide,
  .contact-form,
  .faq-item,
  .response-card {
    padding: 1.5rem;
  }

  .featured-review,
  .featured-guide,
  .legal-document {
    padding: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 10px;
  }
}

/* ===== Gaming Atlas · Navbar v3 ===== */
:root {
  --nav-height: 72px;
  --nav-bg: rgba(255, 255, 255, 0.85);
  --nav-border: rgba(0, 0, 0, 0.06);
  --nav-hover: rgba(33, 150, 243, 0.08); /* primary tint */
  --ring: 0 0 0 3px rgba(33, 150, 243, 0.15);
}

/* Bar */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--nav-border);
}
.nav-container {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.nav-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.12);
}
.brand-text {
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* fallback handled by bg-clip */
  font-size: 1.05rem;
}

/* Links (desktop) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}
.nav-link:hover {
  background: var(--nav-hover);
  color: var(--primary-color);
}
.nav-link:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  background: var(--nav-hover);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--primary-color);
  background: var(--nav-hover);
}
.nav-link.active::after {
  transform: scaleX(1);
}

/* Burger */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  position: relative;
  transition: background 0.2s ease;
}
.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}
.nav-toggle .bar {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--text-color);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle .bar:nth-child(1) {
  top: 14px;
}
.nav-toggle .bar:nth-child(2) {
  top: 20px;
}
.nav-toggle .bar:nth-child(3) {
  top: 26px;
}
.nav-toggle.active .bar:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* Mobile sheet */
@media (max-width: 768px) {
  .nav-toggle {
    display: inline-block;
  }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-top: 1px solid var(--nav-border);
    transform: translateY(8px);
    opacity: 0;
    visibility: hidden;
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    transition: transform 0.25s ease, opacity 0.25s ease,
      visibility 0.25s step-end;
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0s;
  }
  .nav-link {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-size: 1.05rem;
  }
  .nav-link::after {
    left: 1rem;
    right: 1rem;
    bottom: 0.55rem;
  }
}
/* ===== Gaming Atlas · Footer ===== */
.footer--ga {
  background: var(--text-color);
  color: var(--white);
  padding: 56px 0 20px;
  position: relative;
  overflow: hidden;
  border-top: 0;
}
.footer--ga::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-color),
    var(--secondary-color)
  );
  opacity: 0.9;
}
.footer--ga .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer--ga .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.footer--ga .footer-logo {
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.3);
  background: radial-gradient(
    ellipse at 35% 35%,
    rgba(255, 255, 255, 0.12),
    transparent 60%
  );
}
.footer--ga .footer-brand span {
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer--ga .footer-tagline {
  opacity: 0.9;
  line-height: 1.7;
  margin-top: 0.25rem;
}
.footer--ga h4 {
  color: var(--silver-color);
  margin-bottom: 1rem;
}
.footer--ga .footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer--ga .footer-list li {
  margin: 0.5rem 0;
}
.footer--ga .footer-list a {
  color: #cfd8dc;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}
.footer--ga .footer-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.2s ease;
}
.footer--ga .footer-list a:hover {
  color: #fff;
  transform: translateX(2px);
}
.footer--ga .footer-list a:hover::after {
  width: 100%;
}
.footer--ga .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #cfd8dc;
  padding-top: 1rem;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .footer--ga {
    padding: 40px 0 16px;
  }
}

/* ===== Cookies · Gaming Atlas ===== */

/* Banner */
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  background: var(--text-color);
  color: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  flex-wrap: wrap;
}
.cookie-title {
  font-weight: 800;
  margin-bottom: 0.35rem;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cookie-text {
  opacity: 0.9;
  max-width: 720px;
}
.cookie-text .read-more {
  color: #b3e5fc;
  text-decoration: none;
}
.cookie-text .read-more:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  border: 2px solid transparent;
}
.cookie-banner .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #e6f2ff;
}
.cookie-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Modal overlay */
.cookie-modal[hidden] {
  display: none !important;
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 1rem;
}
.cookie-modal-card {
  width: min(720px, 92vw);
  background: #fff;
  color: var(--text-color);
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  padding: 1.25rem;
  position: relative;
}
@media (prefers-color-scheme: dark) {
  .cookie-modal-card {
    background: #0f1114;
    color: #eaf1f7;
    border-color: #1f2630;
  }
}
.cookie-modal-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-color),
    var(--secondary-color)
  );
}

/* Head */
.cookie-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.cookie-modal-title {
  font-size: 1.1rem;
  font-weight: 800;
}
.cookie-modal-sub {
  opacity: 0.75;
}
.cookie-icon-btn {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0.25rem;
  border-radius: 8px;
  cursor: pointer;
}
.cookie-icon-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}
@media (prefers-color-scheme: dark) {
  .cookie-icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

/* Pref list */
.cookie-modal-body {
  margin-top: 0.25rem;
  display: grid;
  gap: 0.75rem;
}
.cookie-pref {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: #fafafa;
}
.cookie-pref--locked {
  opacity: 0.95;
}
@media (prefers-color-scheme: dark) {
  .cookie-pref {
    background: #0e141b;
    border-color: #202834;
  }
}
.cookie-pref-text {
  display: grid;
  gap: 0.2rem;
}
.cookie-pref-title {
  font-weight: 700;
}
.cookie-pref-desc {
  font-size: 0.95rem;
  opacity: 0.8;
}

.cookie-pill {
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(0, 188, 212, 0.15);
  color: var(--accent-color);
  border: 1px solid rgba(0, 188, 212, 0.4);
}

/* Switch */
.cookie-switch-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.cookie-switch {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #cfd8dc;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease;
}
.cookie-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}
.cookie-switch-input:checked + .cookie-switch {
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
}
.cookie-switch-input:checked + .cookie-switch::after {
  transform: translateX(20px);
}

/* Actions + footnote */
.cookie-modal-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary {
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
  font-weight: 700;
}
.cookie-footnote {
  margin-top: 0.6rem;
  opacity: 0.75;
  font-size: 0.9rem;
}
.cookie-footnote .read-more {
  color: var(--primary-color);
  text-decoration: none;
}
.cookie-footnote .read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
  }
  .cookie-buttons {
    justify-content: flex-start;
  }
  .cookie-banner .btn-primary,
  .cookie-banner .btn-secondary {
    width: auto;
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .cookie-buttons {
    width: 100%;
  }
  .cookie-banner .btn-primary,
  .cookie-banner .btn-secondary {
    width: 100%;
  }
}

/* Featured Reviews — thumbs & meta */
.review-thumb {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #000;
}
.review-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.review-card .mini-rating {
  color: var(--primary-color);
  font-weight: 600;
}
.review-card .read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}
.review-card .read-more:hover {
  text-decoration: underline;
}
/* Popular Guides – upgraded card styling (scoped) */
.popular-guides .guide-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  overflow: hidden;
}
.popular-guides .guide-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-color),
    var(--secondary-color)
  );
  opacity: 0.9;
}
.popular-guides .guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(33, 150, 243, 0.25);
}
.popular-guides .guide-card:focus-within {
  outline: none;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.15), 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Titles & copy */
.popular-guides .guide-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--text-color);
}
.popular-guides .guide-card p {
  margin: 0.25rem 0 0.9rem;
  color: #555;
}

/* Meta pills */
.popular-guides .guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.25rem 0 0.75rem;
}
.popular-guides .pill {
  display: inline-block;
  padding: 0.28rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  color: var(--primary-color);
  background: rgba(33, 150, 243, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.25);
}

/* Badge at bottom-right */
.popular-guides .guide-type {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .popular-guides .guide-type {
    position: static;
    display: inline-block;
    margin-top: 0.25rem;
  }
}
/* ===== Reviews · Gaming Atlas (scoped enhancements) ===== */

/* Featured */
.featured-review {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 2rem;
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.featured-review .review-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.featured-review .review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.featured-review h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-color);
}
.review-intro {
  color: #555;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.stars {
  letter-spacing: 0.08em;
  color: #ffc107;
  font-size: 1.1rem;
}
.score-pill {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: #fff;
  font-weight: 800;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Breakdown bars */
.review-breakdown {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}
.breakdown-item {
  display: grid;
  grid-template-columns: 110px 1fr 48px;
  gap: 1rem;
  align-items: center;
}
.breakdown-item .category {
  font-weight: 700;
  color: #333;
}
.rating-bar {
  position: relative;
  height: 10px;
  background: #e0e6ea;
  border-radius: 6px;
  overflow: hidden;
}
.rating-bar .rating-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--primary-color)
  );
  transition: width 0.6s ease;
  border-radius: 6px;
}
.rating-score {
  text-align: right;
  font-weight: 700;
  color: var(--primary-color);
}

/* Recent review cards */
.reviews-grid .review-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.reviews-grid .review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.review-thumb {
  position: relative;
}
.review-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.score-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  opacity: 0.92;
}
.reviews-grid .review-card h3 {
  padding: 1rem 1rem 0.25rem;
  font-size: 1.15rem;
}
.reviews-grid .review-card .review-rating {
  padding: 0 1rem;
}
.reviews-grid .review-card p {
  padding: 0.25rem 1rem 1rem;
  color: #555;
}
.reviews-grid .review-card .review-date {
  display: block;
  padding: 0 1rem 1rem;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .featured-review {
    grid-template-columns: 1fr;
  }
}
/* Thumbs for news cards */
.news-card {
  overflow: hidden;
}
.news-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--primary-dark);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(1.05) contrast(1.05);
}
.news-card:hover .news-thumb img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.1);
}
/* ===== Hero · Gaming Atlas (framed/glass panel) ===== */
.hero--ga .hero-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 28px 22px;
  border-radius: 16px;
  /* glass card */
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  /* gradient frame */
  border: 1px solid transparent;
  background: linear-gradient(
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.06)
      )
      padding-box,
    linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color),
        var(--secondary-color)
      )
      border-box;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  text-align: center;
}
@media (max-width: 560px) {
  .hero--ga .hero-panel {
    padding: 22px 18px;
  }
}

.hero--ga .hero-kicker {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #eaf1f7;
  opacity: 0.9;
}

.hero--ga .hero-title {
  margin: 0.15rem 0 0.35rem;
  font-size: 3.1rem;
  line-height: 1.08;
}
@media (max-width: 768px) {
  .hero--ga .hero-title {
    font-size: 2.4rem;
  }
}

.hero--ga .hero-subtitle {
  max-width: 780px;
  margin: 0 auto 1rem;
  color: #eaf1f7;
  opacity: 0.95;
}

.hero--ga .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  justify-content: center;
  margin: 0.6rem auto 1rem;
  padding: 0;
  list-style: none;
}
.hero--ga .badge {
  padding: 0.38rem 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero--ga .hero-copy {
  max-width: 820px;
  margin: 0 auto 6px;
  color: #f5f9ff;
}
.hero--ga .hero-copy p {
  margin: 0 0 0.6rem;
}
.hero--ga .hero-copy strong {
  color: #ffffff;
}

.hero--ga .hero-note {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Buttons inherit your .btn styles; add a tiny tweak for spacing */
.hero--ga .hero-buttons .btn {
  margin-top: 12px;
}
