/* Legal pages + homepage news section + footer links */
/* News section */
.news-section {
  position: relative;
  padding: 5rem 0;
  background:
    linear-gradient(135deg, #f1c40f 0%, #ffd700 35%, #f1c40f 70%, #d4a80a 100%);
  overflow: hidden;
}

.news-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(0, 0, 0, 0.03) 40px,
      rgba(0, 0, 0, 0.03) 41px
    );
  pointer-events: none;
}

.news-section .container {
  position: relative;
  z-index: 1;
}

.news-section .row {
  align-items: stretch;
}

.news-section .row > [class*="col-"] {
  display: flex;
}

.news-panel {
  background: rgba(0, 0, 0, 0.88);
  border: 3px solid #000;
  border-radius: 12px;
  padding: 2rem 2.25rem;
  box-shadow:
    inset -4px -4px 0 rgba(255, 255, 255, 0.08),
    inset 4px 4px 0 rgba(0, 0, 0, 0.4),
    8px 8px 0 rgba(0, 0, 0, 0.35);
  color: #fff;
  flex: 1 1 auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.news-eyebrow {
  display: inline-block;
  font-family: 'MinecraftTen', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #000;
  background: #f1c40f;
  padding: 0.35rem 0.85rem;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  margin-bottom: 1rem;
}

.news-title {
  font-family: 'MinecraftTen', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #f1c40f;
  text-shadow: 0 0 12px rgba(241, 196, 15, 0.35);
  margin-bottom: 0.5rem;
}

.news-season {
  font-family: 'MinecraftTen', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1rem;
}

.news-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

.news-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.news-feature-tag {
  font-family: 'MinecraftTen', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #000;
  background: linear-gradient(180deg, #fff5a0, #f1c40f);
  border: 2px solid #000;
  padding: 0.3rem 0.65rem;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.news-image-col {
  display: flex;
  align-items: stretch;
}

.news-image-frame {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 0;
  height: 100%;
  border: 4px solid #000;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 0 0 3px #f1c40f,
    8px 8px 0 rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 auto;
}

.news-image-frame:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 0 3px #ffd700,
    10px 10px 0 rgba(0, 0, 0, 0.45);
}

.news-image-frame img,
.news-ad-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: #1a1a1a;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.news-section .row:hover .news-panel {
  transform: translateY(-2px);
  box-shadow:
    inset -4px -4px 0 rgba(255, 255, 255, 0.08),
    inset 4px 4px 0 rgba(0, 0, 0, 0.4),
    10px 10px 0 rgba(0, 0, 0, 0.35);
  filter: brightness(1.02);
}

.news-section .row:hover .news-image-frame {
  transform: translateY(-2px) scale(1.01);
}

.news-section .row:hover .news-ad-image {
  transform: scale(1.015);
  filter: saturate(1.05);
}

@media (max-width: 991px) {
  .news-section .row > [class*="col-"] {
    display: block;
  }

  .news-image-col {
    align-items: center;
  }

  .news-image-frame {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

.news-image-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: 'MinecraftTen', sans-serif;
  font-size: 0.7rem;
  background: #e74c3c;
  color: #fff;
  border: 2px solid #000;
  padding: 0.3rem 0.6rem;
  box-shadow: 2px 2px 0 #000;
  animation: newsBadgePulse 2s ease-in-out infinite;
}

@keyframes newsBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Footer legal links */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-legal-link {
  font-family: 'MinecraftTen', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: #aaa !important;
  text-decoration: none;
  padding: 0.45rem 1rem;
  border: 2px solid rgba(241, 196, 15, 0.25);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
}

.footer-legal-link:hover {
  color: #000 !important;
  background: #f1c40f;
  border-color: #000;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  background: #050505;
  color: #e8e8e8;
}

.legal-hero {
  padding: 3rem 0 2rem;
  border-bottom: 3px solid #f1c40f;
  background: linear-gradient(180deg, rgba(241, 196, 15, 0.12) 0%, transparent 100%);
}

.legal-hero h1 {
  font-family: 'MinecraftTen', sans-serif;
  color: #f1c40f;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-size: 0.9rem;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.legal-content h2 {
  font-family: 'MinecraftTen', sans-serif;
  font-size: 1rem;
  color: #f1c40f;
  margin: 2rem 0 0.75rem;
  letter-spacing: 1px;
}

.legal-content p,
.legal-content li {
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.credit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(241, 196, 15, 0.3);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.credit-card h3 {
  font-family: 'MinecraftTen', sans-serif;
  font-size: 0.95rem;
  color: #f1c40f;
  margin-bottom: 0.35rem;
}

.credit-card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.legal-back-btn {
  margin-top: 2rem;
}
