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

body {
  background: #000;
  color: #fff;
  font-family: "Haverbrooke", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

/* Improve touch interactions on mobile */
a, button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* HEADER – CENTERED NAV */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 5vw;
  padding-top: max(30px, env(safe-area-inset-top));
  padding-left: max(5vw, env(safe-area-inset-left));
  padding-right: max(5vw, env(safe-area-inset-right));
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo img {
  height: 56px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

header nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.2px;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

header nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Dropdown Menu */
.nav-item {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.dropdown-parent:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 30px;
  width: fit-content;
  max-width: 90vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-10px);
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dropdown-parent:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mobile-nav-featured {
  display: none;
}

.mobile-nav-link {
  display: none;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dropdown-header h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0;
  color: #fff;
}

.dropdown-header .view-all {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  letter-spacing: 0.5px;
  opacity: 1;
  transform: none;
  transition: color 0.3s ease;
}

.dropdown-header .view-all:hover {
  color: #fff;
  transform: none;
}

.rom-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.rom-grid::-webkit-scrollbar {
  height: 6px;
}

.rom-grid::-webkit-scrollbar-track {
  background: transparent;
}

.rom-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.rom-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.rom-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  background: transparent;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.rom-card:hover {
  background: transparent;
  transform: translateY(-12px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.08);
}

.rom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.rom-card:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.rom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  position: relative;
  z-index: 0;
}

.rom-card span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: left;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* Hide dropdown on mobile */
@media (max-width: 768px) {
  .dropdown-menu {
    display: none;
  }
  
  .nav-item .dropdown-trigger {
    pointer-events: all;
  }
}

/* Mobile: center logo, hamburger on left */
@media (max-width: 768px) {
  header {
    padding: 20px 28px;
    justify-content: center;
    position: fixed;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .logo {
    order: 2;
  }

  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    left: 22px;
    order: 1;
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
  }

  .mobile-menu-toggle span:nth-child(2),
  .mobile-menu-toggle span:nth-child(3) {
    display: none;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: none;
  }

  header nav {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: #000;
    padding: 28px 0 40px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  header nav.active {
    opacity: 1;
    pointer-events: all;
  }

  header nav a {
    opacity: 0.9;
    transform: none;
  }

  .dropdown-parent {
    display: none;
  }

  .mobile-nav-featured {
    display: block;
    padding: 0 28px 22px;
  }

  .mobile-nav-featured-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }

  .mobile-nav-featured-header span {
    font-size: 20px;
    letter-spacing: 1.2px;
    opacity: 0.9;
  }

  .mobile-nav-view-all {
    font-size: 18px;
    padding: 0;
    width: auto;
    border-top: none;
    opacity: 0.95;
  }

  .mobile-nav-roms {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .mobile-nav-rom-card {
    width: 200px;
    height: 250px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    flex-shrink: 0;
    padding: 0;
  }

  .desktop-nav-link {
    display: none;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 20px;
    letter-spacing: 1.2px;
    opacity: 0.9;
  }

  .mobile-nav-link-active {
    background: rgba(255, 255, 255, 0.14);
  }

  .mobile-nav-link-arrow::after {
    content: "↗";
    font-size: 26px;
    line-height: 1;
    opacity: 0.9;
  }

  .mobile-nav-rom-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    pointer-events: none;
  }

  .hero {
    margin-top: 96px;
    height: calc(100dvh - 96px);
  }
}

/* HERO SLIDER */
.hero {
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for better mobile support */
  position: relative;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
  z-index: 3;
}

/* Hero Content */
.hero-content {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 600px;
}

.hero-title {
  font-size: clamp(48px, 10vw, 90px);
  font-weight: bold;
  letter-spacing: 4px;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(18px, 4vw, 28px);
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.cta-primary,
.cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
  min-height: 60px;
  text-transform: uppercase;
}

.cta-primary {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 157, 0.6);
}

.cta-primary:active {
  transform: translateY(-1px);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.cta-secondary:active {
  transform: translateY(-1px);
}

.cta-primary svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .hero-content {
    display: none !important;
  }

  .hero-title {
    margin-bottom: 12px;
  }

  .hero-subtitle {
    margin-bottom: 30px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 16px 40px;
    font-size: 14px;
    min-height: 56px;
  }

  .hero-ctas {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .cta-primary,
  .cta-secondary {
    padding: 14px 30px;
    font-size: 13px;
    min-height: 52px;
    letter-spacing: 0.5px;
  }
}

/* Landscape mobile optimization */
@media (max-width: 900px) and (max-height: 500px) {
  .hero-content {
    display: none;
  }

  .rs-controls {
    bottom: 20px;
    right: 40px;
  }

  .rs-pause-play {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .rs-indicators {
    gap: 10px;
  }

  .rs-dot.active {
    width: 70px;
    height: 10px;
  }
}

/* CONTROLS - Desktop: Bottom Right Style */
.rs-controls {
  position: absolute;
  bottom: 50px;
  right: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 50;
}

.rs-pause-play {
  width: 44px;
  height: 44px;
  background: rgba(20, 20, 20, 0.85);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.7);
}

.rs-pause-play:hover {
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(255,255,255,0.2);
}

.rs-indicators {
  display: flex;
  gap: 14px;
}

.rs-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
}

.rs-dot:hover {
  transform: scale(1.5);
  background: rgba(255,255,255,0.6);
}

.rs-dot.active {
  width: 100px;
  height: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  box-shadow: 
    0 0 35px rgba(255,255,255,0.55),
    inset 0 0 18px rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: all 0.6s ease;
  position: relative;
}

.rs-dot.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--progress, 0%);
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  transition: width 6s linear;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.rs-controls.rs-paused .rs-dot.active::after {
  transition: none;
}

/* Mobile: controls at bottom of slideshow */
@media (max-width: 768px) {
  .rs-controls {
    top: auto;
    bottom: 16px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 14px;
    gap: 10px;
  }

  .rs-indicators {
    gap: 8px;
    flex: none;
  }

  .rs-pause-play {
    width: 32px;
    height: 32px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
  }

  .rs-pause-play:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: none;
  }

  .rs-dot {
    flex: none;
    width: 44px;
    height: 3px;
    border-radius: 2px;
    position: relative;
  }

  .rs-dot:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.4);
  }

  .rs-dot.active {
    width: 44px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    position: relative;
  }

  .rs-dot.active::after {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    box-shadow: none;
  }
}

/* NEWS */
.news {
  position: relative;
  padding: 120px 5vw;
  background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.88)), url('assets/bg_home.png') center/cover no-repeat;
}

.news-container {
  max-width: 1400px;
  margin: auto;
}

.news h2 {
  font-size: 32px;
  margin-bottom: 60px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

/* Grid Layout */
.news-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.story-card:nth-child(1),
.story-card:nth-child(2),
.story-card:nth-child(3) {
  grid-column: span 2;
}

.story-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.story-card:nth-child(5) {
  grid-column: 4 / span 2;
}

@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .story-card:nth-child(1),
  .story-card:nth-child(2),
  .story-card:nth-child(3) {
    grid-column: span 1;
  }

  .story-card:nth-child(4) {
    grid-column: 1;
  }

  .story-card:nth-child(5) {
    grid-column: 2;
  }
}

/* Story Cards */
.story-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 16/10;
  cursor: pointer;
  border-radius: 8px;
}

.story-image {
  width: 100%;
  height: 100%;
  background: #111 no-repeat center/cover;
  transition: transform 0.3s ease;
  position: relative;
}

.story-card:hover .story-image {
  transform: scale(1.05);
}

.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.story-overlay p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-transform: none;
  letter-spacing: 0.3px;
  font-weight: 400;
}

.story-card:hover .story-overlay p {
  color: #fff;
}

/* Learn More Link */
.news-footer {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.learn-more {
  color: #e32020;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
}

.learn-more:hover {
  opacity: 1;
  transform: translateX(5px);
}

/* Responsive layout */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news {
    padding: 80px 20px;
  }

  .news h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .story-overlay {
    padding: 16px;
  }

  .story-overlay p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
  
  .featured-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .featured-category {
    font-size: 10px;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .featured-date {
    font-size: 13px;
  }
  
  .sidebar-card {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  
  .sidebar-image {
    width: 100%;
    height: 180px;
  }

  .sidebar-content h4 {
    font-size: 15px;
  }
}

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

  .news h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .featured-image {
    height: 280px;
  }

  .featured-content {
    padding: 16px;
  }

  .featured-content h3 {
    font-size: 18px;
  }

  .sidebar-card {
    padding: 10px;
  }

  .sidebar-image {
    height: 160px;
  }
}

/* SUPPORT + FOOTER */
.support img {
  width: 100%;
  display: block;
}

.rog-footer {
  background: #000;
  padding: 80px 5vw 50px;
}

.footer-divider {
  max-width: 1400px;
  margin: 0 auto 50px;
}

.footer-divider img {
  width: 100%;
}

.footer-bottom {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.75;
}

.region img {
  height: 34px;
}

@media (max-width: 768px) {
  .rog-footer {
    padding: 60px 20px 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom .copyright {
    font-size: 12px;
  }
}

/* Responsive (keep your existing media queries) */
@media (max-width: 1024px) {
  .rs-controls { right: 40px; bottom: 40px; gap: 14px; }
}

@media (max-width: 768px) {
  .logo img {
    height: 48px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 42px;
  }

  .rs-controls {
    padding: 10px 16px;
    gap: 10px;
  }

  .rs-pause-play {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .rs-dot {
    width: 50px;
    height: 3px;
  }

  .rs-dot.active {
    width: 50px;
    height: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide, .rs-dot, .rs-dot.active::after {
    transition: none !important;
  }
}

/* NEWSWIRE PAGE – Rockstar-inspired layout */

body.dark-theme {
  background: #000;
}

.newswire-main {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
}

.latest-news {
  text-align: center;
  padding: 0 5vw 80px;
}

.section-title {
  font-size: 48px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 60px;
  opacity: 0.9;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.4);
}

.featured-news {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.featured-logo .big-logo {
  max-width: 500px;
  width: 80%;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.3));
}

.featured-text .subtitle {
  font-size: 28px;
  letter-spacing: 3px;
  color: #aaa;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.featured-text .main-headline {
  font-size: clamp(48px, 8vw, 90px);
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: bold;
  letter-spacing: -1px;
}

.featured-text .date {
  font-size: 22px;
  color: #888;
  letter-spacing: 1px;
}

/* Older news – horizontal scrollable row */
.older-news {
  padding: 60px 5vw;
  background: linear-gradient(to bottom, #000 0%, #111 100%);
}

.news-row {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
}

.news-row::-webkit-scrollbar {
  height: 8px;
}

.news-row::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}

.news-item {
  position: relative;
  min-width: 360px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.news-item:hover {
  transform: scale(1.05);
}

.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 25px;
  color: white;
}

.news-overlay h3 {
  font-size: 22px;
  margin: 0 0 8px;
  line-height: 1.2;
}

.news-overlay p {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

/* Mobile optimizations for newswire */
@media (max-width: 768px) {
  .newswire-main {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .section-title {
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom: 40px;
  }

  .section-title::after {
    width: 80px;
    height: 2px;
  }

  .featured-logo .big-logo {
    max-width: 300px;
    width: 90%;
  }

  .featured-text .subtitle {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .featured-text .main-headline {
    font-size: clamp(32px, 8vw, 60px);
    margin-bottom: 12px;
  }

  .featured-text .date {
    font-size: 16px;
  }

  .older-news {
    padding: 40px 20px;
  }

  .news-row {
    gap: 20px;
  }

  .news-item {
    min-width: 280px;
    height: 200px;
  }

  .news-overlay {
    padding: 20px 18px;
  }

  .news-overlay h3 {
    font-size: 18px;
  }

  .news-overlay p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .featured-text .subtitle {
    font-size: 16px;
  }

  .featured-text .date {
    font-size: 14px;
  }

  .news-item {
    min-width: 240px;
    height: 180px;
  }

  .news-overlay {
    padding: 16px;
  }

  .news-overlay h3 {
    font-size: 16px;
  }
}