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

:root {
  --primary-dark: #0a0f1c;
  --secondary-dark: #1a1f2e;
  --accent-blue: #2563eb;
  --accent-emerald: #10b981;
  --accent-orange: #f59e0b;
  --accent-neon: #22d3ee;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --gradient-primary: linear-gradient(
    135deg,
    var(--accent-blue),
    var(--accent-emerald)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--accent-neon)
  );
  --shadow-glow: 0 0 20px rgba(34, 211, 238, 0.3);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.navbar {
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
}

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

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-neon);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

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

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--secondary-dark) 100%
  );
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(37, 99, 235, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(16, 185, 129, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(245, 158, 11, 0.2) 0%,
      transparent 50%
    );
  z-index: 1;
}

.hero-content {
  text-align: right;
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent-neon);
}

.btn-secondary:hover {
  background: var(--accent-neon);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: var(--secondary-dark);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

section {
  padding: 80px 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

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

.news-card,
.review-card,
.guide-card {
  background: var(--secondary-dark);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-card::before,
.review-card::before,
.guide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.news-card:hover,
.review-card:hover,
.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.news-category,
.guide-type {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--gradient-secondary);
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.review-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

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

.news-card p,
.review-card p,
.guide-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  color: var(--accent-neon);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--accent-orange);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.review-tags,
.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.review-tags span,
.guide-tags span {
  padding: 0.3rem 0.6rem;
  background: rgba(34, 211, 238, 0.2);
  color: var(--accent-neon);
  border-radius: 12px;
  font-size: 0.8rem;
}

.community-section {
  background: var(--secondary-dark);
  text-align: center;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

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

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

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

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

.footer-section ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--secondary-dark);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  z-index: 1001;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.breaking-news {
  background: var(--secondary-dark);
}

.breaking-article {
  background: var(--primary-dark);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--accent-orange);
  position: relative;
}

.breaking-badge {
  background: var(--accent-orange);
  color: var(--primary-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.news-articles {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.news-article {
  background: var(--secondary-dark);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.news-article:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-glow);
}

.esports-articles {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.esports-article {
  background: var(--secondary-dark);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--accent-neon);
  transition: all 0.3s ease;
}

.esports-badge {
  background: var(--accent-neon);
  color: var(--primary-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

.tournament-details,
.player-stats,
.league-info {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.detail,
.stat,
.info {
  padding: 0.3rem 0.6rem;
  background: rgba(34, 211, 238, 0.2);
  color: var(--accent-neon);
  border-radius: 12px;
  font-size: 0.8rem;
}

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

.release-card {
  background: var(--secondary-dark);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.release-status {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

.release-status.upcoming {
  background: var(--accent-blue);
  color: white;
}

.release-status.announced {
  background: var(--accent-emerald);
  color: white;
}

.release-status.released {
  background: var(--gradient-secondary);
  color: var(--primary-dark);
}

.release-details {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.featured-review {
  background: var(--secondary-dark);
}

.featured-review-card {
  background: var(--primary-dark);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid var(--border-color);
  position: relative;
}

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

.review-score {
  text-align: center;
}

.score-number {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.review-breakdown {
  margin: 2rem 0;
}

.breakdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.breakdown-label {
  min-width: 80px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breakdown-bar {
  flex: 1;
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 1s ease;
}

.breakdown-score {
  min-width: 30px;
  font-weight: bold;
  color: var(--text-light);
}

.review-pros-cons {
  margin: 1.5rem 0;
}

.pros,
.cons {
  margin: 0.8rem 0;
  font-size: 0.9rem;
}

.pros strong {
  color: var(--accent-emerald);
}

.cons strong {
  color: var(--accent-orange);
}

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

.category-card {
  background: var(--secondary-dark);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.category-stats {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.review-methodology {
  text-align: center;
}

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

.methodology-item {
  padding: 1.5rem;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.methodology-item h4 {
  color: var(--accent-neon);
  margin-bottom: 1rem;
}

.featured-guide {
  background: var(--secondary-dark);
}

.featured-guide-card {
  background: var(--primary-dark);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid var(--border-color);
}

.guide-type-badge {
  background: var(--gradient-secondary);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

.guide-meta {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.guide-contents {
  margin-top: 2rem;
}

.guide-contents h4 {
  color: var(--accent-neon);
  margin-bottom: 1rem;
}

.guide-contents ul {
  list-style: none;
  padding-left: 0;
}

.guide-contents li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.guide-contents li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-emerald);
  font-weight: bold;
}

.categories-filter {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.guide-stats {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.guide-difficulty {
  color: var(--accent-orange);
  font-weight: 600;
}

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

.tip-card {
  background: var(--secondary-dark);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.tip-category {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-emerald);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.tip-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.tip-level {
  color: var(--accent-neon);
  font-weight: 600;
}

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

.highlight-item {
  text-align: left;
  padding: 1.5rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.highlight-item h4 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.contact-intro {
  background: var(--secondary-dark);
}

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

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form {
  background: var(--secondary-dark);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--primary-dark);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-neon);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

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

.form-message.success {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-emerald);
  border: 1px solid var(--accent-emerald);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid #ef4444;
}

.contact-info {
  padding: 2rem;
}

.contact-method {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.contact-method h4 {
  color: var(--accent-neon);
  margin-bottom: 1rem;
}

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

.faq-item {
  padding: 2rem;
  background: var(--secondary-dark);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.faq-item h4 {
  color: var(--accent-neon);
  margin-bottom: 1rem;
}

.contact-community {
  background: var(--secondary-dark);
  text-align: center;
}

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

.community-feature {
  padding: 2rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.community-feature h4 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

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

.legal-document {
  background: var(--secondary-dark);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
}

.legal-document h2 {
  color: var(--accent-neon);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.legal-document h3 {
  color: var(--accent-emerald);
  margin: 2rem 0 1rem;
  font-size: 1.3rem;
}

.legal-document ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-document li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--secondary-dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
  }

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

  .hero-content h1 {
    font-size: 2.5rem;
  }

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

  .page-header h1 {
    font-size: 2.5rem;
  }

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

  .community-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .categories-filter {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .review-header {
    flex-direction: column;
    text-align: center;
  }

  .breakdown-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .breakdown-label {
    min-width: auto;
  }

  .guide-meta {
    justify-content: center;
    text-align: center;
  }

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

  .legal-document {
    padding: 2rem;
  }

  .esports-article .tournament-details,
  .esports-article .player-stats,
  .esports-article .league-info {
    justify-content: center;
  }
}

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

  .hero-content h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .news-card,
  .review-card,
  .guide-card {
    padding: 1.5rem;
  }

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

  .contact-form {
    padding: 2rem;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .score-number {
    font-size: 2.5rem;
  }
}

/* ===== LanternsGame Footer v2 (enhanced) ===== */
.footer.footer--v2 {
  position: relative;
  background: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.25rem;
  overflow: hidden;
}
.footer.footer--v2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--gradient-primary);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.25);
}

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

/* brand */
.footer.footer--v2 .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.25rem;
  transition: all 0.25s ease;
}
.footer.footer--v2 .footer-brand:hover {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.footer.footer--v2 .footer-logo {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: radial-gradient(
    ellipse at 30% 30%,
    rgba(255, 255, 255, 0.12),
    transparent 60%
  );
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 4px 18px rgba(0, 0, 0, 0.25);
}
.footer.footer--v2 .footer-brand span {
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* sections */
.footer.footer--v2 .footer-section h3,
.footer.footer--v2 .footer-section h4 {
  margin-bottom: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.2px;
}
.footer.footer--v2 .footer-section p {
  color: var(--text-muted);
  line-height: 1.65;
}

/* lists */
.footer.footer--v2 .footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer.footer--v2 .footer-list li {
  margin-bottom: 0.55rem;
}
.footer.footer--v2 .footer-list a {
  color: #c6d3db;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.25s ease;
}
.footer.footer--v2 .footer-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.25s ease;
}
.footer.footer--v2 .footer-list a:hover {
  color: #fff;
  transform: translateX(2px);
}
.footer.footer--v2 .footer-list a:hover::after {
  width: 100%;
}

/* bottom */
.footer.footer--v2 .footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  text-align: center;
  color: var(--text-muted);
  position: relative;
}
.footer.footer--v2 .footer-bottom::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  width: 160px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-primary);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.35);
}

/* mobile tweaks */
@media (max-width: 768px) {
  .footer.footer--v2 {
    padding: 2.25rem 0 1rem;
  }
  .footer.footer--v2 .footer-section {
    padding: 0;
  }
}
/* ===== Cookies · LanternsGame — Compact Styles ===== */

/* --- Banner (fixed bottom) --- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1001; /* above navbar (1000) */
  background: var(--secondary-dark);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.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: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cookie-text {
  color: var(--text-muted);
  max-width: 720px;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* compact buttons inside banner */
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: none;
}

/* --- Modal overlay (separate from banner) --- */
.cookie-modal[hidden] {
  display: none !important;
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1002;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 1rem;
}

.cookie-modal-card {
  width: min(720px, 92vw);
  background: var(--secondary-dark);
  color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-glow), 0 24px 64px rgba(0, 0, 0, 0.45);
  padding: 1.25rem;
  transform: translateY(10px) scale(0.98);
  animation: cookiePop 0.25s ease forwards;
  position: relative;
}
.cookie-modal-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--gradient-primary);
}

@keyframes cookiePop {
  to {
    transform: translateY(0) scale(1);
  }
}

.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 {
  color: var(--text-muted);
}

.cookie-icon-btn {
  border: 0;
  background: transparent;
  color: var(--text-light);
  padding: 0.25rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cookie-icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: scale(1.03);
}
.cookie-icon-btn:focus-visible {
  outline: 2px solid var(--accent-neon);
  outline-offset: 2px;
  border-radius: 8px;
}

/* --- Preferences list --- */
.cookie-modal-body {
  margin-top: 0.25rem;
}

.cookie-pref {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: var(--primary-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 0.75rem;
}
.cookie-pref--locked {
  opacity: 0.92;
}

.cookie-pref-text {
  display: grid;
  gap: 0.2rem;
}
.cookie-pref-title {
  font-weight: 700;
}
.cookie-pref-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cookie-pill {
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.18);
  color: var(--accent-neon);
  border: 1px solid rgba(34, 211, 238, 0.35);
}

/* --- 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: #334155;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 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: var(--gradient-primary);
}
.cookie-switch-input:checked + .cookie-switch::after {
  transform: translateX(20px);
}

/* --- Modal actions & footnote --- */
.cookie-modal-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 1rem;
}
.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;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Responsive tweaks --- */
@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%;
  }
}
.brand-text {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
}

.nav-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

/* 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);
}
/* Thumbs for review cards */
.review-card {
  position: relative;
  overflow: hidden;
}
.review-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);
}
.review-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);
}
.review-card:hover .review-thumb img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.1);
}

/* Keep rating circle above the thumbnail */
.review-card .review-rating {
  z-index: 2;
}
