/* =============================================
   NERAGAMES.COM.TR - Eagle Media Style Theme
   White/Light Mode - Professional News Portal
   ============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variables - Eagle Media Style ── */
:root {
  /* Primary Colors - White Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f1f3f5;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.95);
  --bg-dark: #1a1a2e;
  --bg-darker: #0f0f1a;

  /* Accent Colors */
  --accent-cyan: #00bcd4;
  --accent-green: #10b981;
  --accent-purple: #8b5cf6;
  --accent-red: #dc3545;
  --accent-orange: #f59e0b;
  --accent-pink: #ec4899;

  /* Text Colors */
  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-accent: #00bcd4;

  /* Borders */
  --border-color: rgba(148, 163, 184, 0.1);
  --border-glow: rgba(0, 212, 255, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
  --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #111827 100%);
  --gradient-card: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(26, 34, 54, 0.9) 100%);
  --gradient-hero: linear-gradient(180deg, transparent 0%, rgba(10, 14, 23, 0.95) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.15);
  --shadow-glow-strong: 0 0 30px rgba(0, 212, 255, 0.3);

  /* Spacing */
  --container-max: 1200px;
  --section-padding: 60px 0;
  --card-padding: 20px;
  --card-radius: 16px;
  --btn-radius: 10px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1a1a2e;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #33ddff;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* ── Main Content Area - Force White Background ── */
main, section, .main-content, .content-area {
  background-color: #ffffff;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 5px var(--accent-cyan), 0 0 10px rgba(0, 212, 255, 0.2); }
  50% { box-shadow: 0 0 10px var(--accent-cyan), 0 0 20px rgba(0, 212, 255, 0.4); }
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes neonLine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

/* Staggered animations */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ── Navbar ── */
.nera-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.nera-navbar.scrolled {
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-color);
}

.nera-navbar .container {
  max-width: var(--container-max);
}

.nera-navbar .navbar-brand img {
  height: 36px;
  transition: height var(--transition-normal);
}

.nera-navbar.scrolled .navbar-brand img {
  height: 30px;
}

.nera-navbar .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: all var(--transition-fast);
  position: relative;
}

.nera-navbar .nav-link:hover,
.nera-navbar .nav-item.active .nav-link {
  color: var(--text-primary) !important;
  background: rgba(0, 212, 255, 0.1);
}

.nera-navbar .nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 1px;
}

.nera-navbar .btn-login {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  background: transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nera-navbar .btn-login:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow);
}

.navbar-toggler {
  border: 1px solid var(--border-color) !important;
  padding: 6px 10px !important;
}

.navbar-toggler .fa-bars {
  color: var(--text-primary);
  font-size: 18px;
}

/* User dropdown in navbar */
.nera-navbar .user-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 10px;
  transition: background var(--transition-fast);
}

.nera-navbar .user-dropdown:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nera-navbar .user-dropdown img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-cyan);
}

.nera-navbar .user-dropdown span {
  font-size: 13px;
  color: var(--text-secondary);
}

.nera-navbar .dropdown-menu {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  margin-top: 8px;
}

.nera-navbar .dropdown-menu .dropdown-item {
  color: var(--text-secondary);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  transition: all var(--transition-fast);
}

.nera-navbar .dropdown-menu .dropdown-item:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--text-primary);
}

.nera-navbar .dropdown-divider {
  border-color: var(--border-color);
}

/* ── Admin Bar Override ── */
.admin-bar {
  background-color: rgba(10, 14, 23, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color) !important;
  z-index: 9999;
}

/* ── Breaking News Ticker ── */
.breaking-news {
  background: linear-gradient(90deg, var(--accent-red), #dc2626);
  padding: 8px 0;
  overflow: hidden;
  margin-top: 70px;
}

.breaking-news .label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 14px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.breaking-news .label .dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.breaking-news .ticker-wrap {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: calc(100% - 150px);
  vertical-align: middle;
}

.breaking-news .ticker {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

.breaking-news .ticker a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-right: 40px;
  text-decoration: none;
  opacity: 0.95;
}

.breaking-news .ticker a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ── Hero Section ── */
.hero-section {
  padding-top: 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.hero-card:hover {
  transform: scale(1.02);
}

.hero-card:first-child {
  grid-row: 1 / 3;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-card:hover img {
  transform: scale(1.08);
}

.hero-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.hero-card .category-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #fff;
}

.badge-green { background: var(--accent-green); }
.badge-cyan { background: var(--accent-cyan); color: var(--bg-primary); }
.badge-purple { background: var(--accent-purple); }
.badge-red { background: var(--accent-red); }
.badge-orange { background: var(--accent-orange); color: var(--bg-primary); }
.badge-pink { background: var(--accent-pink); }

.hero-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.hero-card:first-child h2 {
  font-size: 26px;
}

.hero-card .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card .meta i {
  margin-right: 3px;
}

/* ── Section Headers ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.section-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.section-header h3 .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
  font-size: 14px;
}

.section-header .view-all {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.section-header .view-all:hover {
  color: var(--accent-cyan);
}

/* ── Timeline ── */
.nera-timeline {
  position: relative;
  padding-left: 40px;
}

.nera-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple), transparent);
  animation: neonLine 3s ease-in-out infinite;
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.timeline-item:nth-child(1) { animation-delay: 0.05s; }
.timeline-item:nth-child(2) { animation-delay: 0.1s; }
.timeline-item:nth-child(3) { animation-delay: 0.15s; }
.timeline-item:nth-child(4) { animation-delay: 0.2s; }
.timeline-item:nth-child(5) { animation-delay: 0.25s; }
.timeline-item:nth-child(6) { animation-delay: 0.3s; }
.timeline-item:nth-child(7) { animation-delay: 0.35s; }
.timeline-item:nth-child(8) { animation-delay: 0.4s; }
.timeline-item:nth-child(9) { animation-delay: 0.45s; }
.timeline-item:nth-child(10) { animation-delay: 0.5s; }

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  z-index: 2;
}

.timeline-dot.dot-green { background: var(--accent-green); box-shadow: 0 0 10px rgba(16, 185, 129, 0.4); }
.timeline-dot.dot-purple { background: var(--accent-purple); box-shadow: 0 0 10px rgba(139, 92, 246, 0.4); }
.timeline-dot.dot-red { background: var(--accent-red); box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }
.timeline-dot.dot-orange { background: var(--accent-orange); box-shadow: 0 0 10px rgba(245, 158, 11, 0.4); }

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.timeline-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateX(6px);
}

.timeline-card .card-inner {
  display: flex;
  gap: 16px;
  padding: 16px;
}

.timeline-card .card-thumb {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.timeline-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.timeline-card:hover .card-thumb img {
  transform: scale(1.1);
}

.timeline-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.timeline-card .card-content .category-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #fff;
  width: fit-content;
}

.timeline-card .card-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.timeline-card .card-content h4 a {
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.timeline-card .card-content h4 a:hover {
  color: var(--accent-cyan);
}

.timeline-card .card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.timeline-card .card-meta i {
  margin-right: 3px;
  font-size: 11px;
}

.timeline-card .time-ago {
  color: var(--accent-cyan);
  font-weight: 500;
  font-size: 11px;
}

/* ── Sidebar ── */
.nera-sidebar .widget {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.nera-sidebar .widget-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nera-sidebar .widget-title i {
  color: var(--accent-cyan);
  font-size: 14px;
}

/* Trend Articles Widget */
.trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trend-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.trend-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trend-item:hover {
  padding-left: 4px;
}

.trend-item .rank {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--bg-tertiary);
  line-height: 1;
  min-width: 28px;
}

.trend-item:nth-child(1) .rank { color: var(--accent-cyan); }
.trend-item:nth-child(2) .rank { color: var(--accent-green); }
.trend-item:nth-child(3) .rank { color: var(--accent-purple); }

.trend-item .trend-thumb {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.trend-item .trend-info {
  flex: 1;
  min-width: 0;
}

.trend-item .trend-info h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trend-item .trend-info h5 a {
  color: var(--text-primary);
}

.trend-item .trend-info h5 a:hover {
  color: var(--accent-cyan);
}

.trend-item .trend-info small {
  font-size: 11px;
  color: var(--text-muted);
}

/* Category Widget */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 6px;
}

.category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.02);
}

.category-list li a:hover {
  background: rgba(0, 212, 255, 0.08);
  color: var(--text-primary);
  padding-left: 18px;
}

.category-list li a .count {
  background: var(--bg-tertiary);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Ad Widget */
.ad-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.ad-widget .ad-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ── Single Blog ── */
.single-hero {
  width: 100%;
  height: 450px;
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(10, 14, 23, 0.8));
}

.breadcrumb-nav {
  padding: 12px 0;
  margin-bottom: 20px;
}

.breadcrumb-nav a,
.breadcrumb-nav span {
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb-nav a:hover {
  color: var(--accent-cyan);
}

.breadcrumb-nav .separator {
  margin: 0 8px;
  color: var(--text-muted);
}

.article-header {
  margin-bottom: 30px;
}

.article-header .category-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: #fff;
}

.article-header h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.article-meta .author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-meta .author-info img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-cyan);
}

.article-meta .author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.article-meta .reading-time {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-green);
}

.article-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.article-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.article-content h2,
.article-content h3 {
  color: var(--text-primary);
  margin: 32px 0 16px;
}

.article-content img {
  border-radius: 12px;
  margin: 20px 0;
}

.article-content a {
  color: var(--accent-cyan);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.article-content a:hover {
  border-bottom-color: var(--accent-cyan);
}

.article-content pre,
.article-content code {
  font-family: 'JetBrains Mono', monospace;
}

.article-content pre {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  overflow-x: auto;
}

.article-content blockquote {
  border-left: 3px solid var(--accent-cyan);
  background: rgba(0, 212, 255, 0.05);
  padding: 16px 24px;
  margin: 20px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-secondary);
}

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  font-size: 13px;
  color: var(--accent-cyan);
  margin-top: 16px;
  transition: all var(--transition-fast);
}

.source-link:hover {
  background: rgba(0, 212, 255, 0.15);
}

/* Share Buttons */
.share-floating {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.share-floating a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 16px;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.share-floating a:hover {
  transform: scale(1.1);
}

.share-floating .s-facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-floating .s-twitter:hover { background: #1da1f2; color: #fff; border-color: #1da1f2; }
.share-floating .s-whatsapp:hover { background: #25d366; color: #fff; border-color: #25d366; }
.share-floating .s-linkedin:hover { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.share-floating .s-pinterest:hover { background: #e60023; color: #fff; border-color: #e60023; }

/* In-article share */
.share-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-inline a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--btn-radius);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  transition: all var(--transition-fast);
}

.share-inline a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.share-inline .fb-share { background: #1877f2; }
.share-inline .tw-share { background: #1da1f2; }
.share-inline .li-share { background: #0a66c2; }
.share-inline .wa-share { background: #25d366; }

/* Author Box */
.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-cyan);
  flex-shrink: 0;
}

.author-box h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.author-box .author-title {
  font-size: 12px;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.author-box .author-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 14px;
  margin-right: 6px;
  transition: all var(--transition-fast);
}

.author-box .author-social a:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

/* Related Articles */
.related-articles {
  margin: 40px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.related-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.related-card .thumb {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.related-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.related-card:hover .thumb img {
  transform: scale(1.08);
}

.related-card .info {
  padding: 16px;
}

.related-card .info h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.related-card .info h5 a {
  color: var(--text-primary);
}

.related-card .info h5 a:hover {
  color: var(--accent-cyan);
}

.related-card .info small {
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Comments ── */
.comments-section {
  margin-top: 40px;
}

.comments-section h4 {
  font-size: 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comments-section h4 .count {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.comment-form textarea {
  width: 100%;
  min-height: 100px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  color: var(--text-primary);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  resize: vertical;
  transition: border-color var(--transition-fast);
}

.comment-form textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.comment-form textarea::placeholder {
  color: var(--text-muted);
}

.comment-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-item .comment-body h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.comment-item .comment-body h5 small {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
  margin-left: 8px;
}

.comment-item .comment-body p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Categories Page ── */
.page-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
  margin-top: 70px;
}

.page-header h1 {
  font-size: 28px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-header h1 i {
  color: var(--accent-cyan);
}

.page-header .breadcrumb {
  background: none;
  padding: 0;
  margin: 8px 0 0 0;
  font-size: 13px;
}

.page-header .breadcrumb a {
  color: var(--text-muted);
}

.page-header .breadcrumb .active {
  color: var(--accent-cyan);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* Blog list cards */
.blog-list-card {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.blog-list-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.blog-list-card .card-image {
  width: 280px;
  min-height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-list-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-list-card:hover .card-image img {
  transform: scale(1.08);
}

.blog-list-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-list-card .card-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-list-card .card-body h4 a {
  color: var(--text-primary);
}

.blog-list-card .card-body h4 a:hover {
  color: var(--accent-cyan);
}

.blog-list-card .card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-list-card .card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Pagination */
.nera-pagination {
  display: flex;
  gap: 6px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.nera-pagination .page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nera-pagination .page-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.nera-pagination .page-btn.active {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border-color: var(--accent-cyan);
}

/* ── Footer ── */
.nera-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 50px 0 0;
  margin-top: 60px;
}

.nera-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.nera-footer .footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.nera-footer .footer-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nera-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nera-footer .footer-links li {
  margin-bottom: 8px;
}

.nera-footer .footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.nera-footer .footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.nera-footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.nera-footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 15px;
  transition: all var(--transition-fast);
}

.nera-footer .social-links a:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.nera-footer .footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Login/Register Modals ── */
.nera-modal .modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.nera-modal .modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 24px;
}

.nera-modal .modal-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.nera-modal .modal-header .close {
  color: var(--text-muted);
  text-shadow: none;
  opacity: 1;
  font-size: 24px;
}

.nera-modal .modal-body {
  padding: 24px;
}

.nera-modal .form-control {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.nera-modal .form-control:focus {
  background: var(--bg-tertiary);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  color: var(--text-primary);
}

.nera-modal .form-control::placeholder {
  color: var(--text-muted);
}

.nera-modal .btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-fast);
  width: 100%;
}

.nera-modal .btn-primary:hover {
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-1px);
}

.nera-modal #errormessage {
  display: block;
  color: var(--accent-red);
  font-size: 13px;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.nera-modal a {
  color: var(--accent-cyan);
  font-size: 13px;
}

/* ── 404 Page ── */
.nera-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  margin-top: 70px;
}

.nera-404 h1 {
  font-size: 120px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.nera-404 h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.nera-404 p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.nera-404 .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--btn-radius);
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.nera-404 .btn-home:hover {
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
  color: #fff;
}

/* ── Ad Containers ── */
.ad-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 16px;
  margin: 24px 0;
  text-align: center;
  position: relative;
}

.ad-container::before {
  content: 'REKLAM';
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ── Buttons ── */
.btn-nera {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--btn-radius);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-nera-primary {
  background: var(--gradient-primary);
  color: #fff;
}

.btn-nera-primary:hover {
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-1px);
  color: #fff;
}

.btn-nera-outline {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-nera-outline:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

/* ── Scroll to Top ── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
  border: none;
  font-size: 18px;
  box-shadow: var(--shadow-glow);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-strong);
}

/* ── Loading skeleton ── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-card:first-child {
    grid-row: auto;
    height: 280px;
  }

  .hero-card:not(:first-child) {
    height: 200px;
  }

  .nera-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .single-hero {
    height: 300px;
  }

  .article-header h1 {
    font-size: 24px;
  }

  .blog-list-card {
    flex-direction: column;
  }

  .blog-list-card .card-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 767px) {
  .breaking-news {
    margin-top: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-card:first-child h2 {
    font-size: 18px;
  }

  .hero-card h2 {
    font-size: 15px;
  }

  .nera-timeline {
    padding-left: 30px;
  }

  .nera-timeline::before {
    left: 10px;
  }

  .timeline-dot {
    left: -28px;
    width: 10px;
    height: 10px;
  }

  .timeline-card .card-inner {
    flex-direction: column;
    gap: 12px;
  }

  .timeline-card .card-thumb {
    width: 100%;
    height: 180px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nera-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .single-hero {
    height: 220px;
    border-radius: 12px;
  }

  .article-header h1 {
    font-size: 20px;
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .share-floating {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    flex-direction: row;
    justify-content: center;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 10px;
    z-index: 100;
  }

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

  .nera-navbar {
    padding: 10px 0;
  }

  .page-header {
    margin-top: 60px;
  }

  .nera-404 h1 {
    font-size: 80px;
  }
}

/* ── Override Legacy Styles ── */
body, .container-fluid, section, .content {
  background-color: var(--bg-primary) !important;
}

.page-title.wb {
  background-color: var(--bg-secondary) !important;
}

.section.wb {
  background-color: var(--bg-primary) !important;
}

header, nav, .navbar {
  background-color: transparent !important;
}

.footer {
  display: none !important;
}

/* Hide legacy elements */
.masonry-blog,
.first-section,
.timeline,
.timelinehead,
.timeset,
.caticon,
.dmtop,
section.first-section {
  display: none !important;
}

/* ── Kurumsal (About) Pages ── */
.section-kurumsal {
  padding: 40px 0;
  padding-top: 120px; /* navbar için boşluk */
  min-height: 400px;
  background: var(--bg-primary);
}

.kurumsal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 30px;
  backdrop-filter: blur(10px);
}

.kurumsal-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent-cyan);
}

.kurumsal-content .about-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.kurumsal-content .about-content p {
  margin-bottom: 16px;
}

.kurumsal-content .about-content a {
  color: var(--accent-cyan);
}

.kurumsal-content .about-content a:hover {
  text-decoration: underline;
}

/* Sidebar List Group */
.list-group {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.list-group .list-group-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 14px 20px;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.list-group .list-group-item:last-child {
  border-bottom: none;
}

.list-group .list-group-item:hover {
  background: rgba(0, 212, 255, 0.05);
  color: var(--text-primary);
  padding-left: 24px;
}

.list-group .list-group-item.actives {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
  border-left: 3px solid var(--accent-cyan);
}

/* =============================================
   EAGLE MEDIA STYLE - Header, Navbar, Hero
   ============================================= */

/* ── Top Bar ── */
.eagle-topbar {
  background: #1a1a2e;
  padding: 8px 0;
  border-bottom: none;
}

.eagle-topbar .topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.eagle-topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.eagle-topbar .topbar-right > a {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.eagle-topbar .topbar-right > a:hover {
  color: #fff;
}

.eagle-topbar .social-links {
  display: flex;
  gap: 8px;
  margin-left: 10px;
}

.eagle-topbar .social-links a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  transition: all 0.2s;
}

.eagle-topbar .social-links a:nth-child(1) { background: #3b5998; }
.eagle-topbar .social-links a:nth-child(2) { background: #000; }
.eagle-topbar .social-links a:nth-child(3) { background: #ff0000; }
.eagle-topbar .social-links a:nth-child(4) { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.eagle-topbar .social-links a:nth-child(5) { background: #25d366; }

.eagle-topbar .social-links a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* ── Main Header ── */
.eagle-header {
  background: #ffffff;
  padding: 14px 0;
  border-bottom: none;
}

.eagle-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eagle-header .header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.eagle-header .header-logo img {
  height: 40px;
  width: auto;
}

.eagle-header .header-tagline {
  padding-left: 15px;
  border-left: 1px solid #e0e0e0;
}

.eagle-header .header-tagline span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 400;
}

.eagle-header .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.eagle-header .header-stats {
  display: flex;
  gap: 25px;
}

.eagle-header .stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 100px;
}

.eagle-header .stat-label {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}

.eagle-header .stat-label i {
  color: #1a1a2e;
  font-size: 10px;
}

.eagle-header .stat-value {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.eagle-header .stat-change {
  font-size: 11px;
  font-weight: 600;
}

.eagle-header .stat-change.up {
  color: #10b981;
}

.eagle-header .stat-change.down {
  color: #dc3545;
}

.eagle-header .header-search-btn {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #1a1a2e;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eagle-header .header-search-btn:hover {
  color: #00bcd4;
}

/* ── Search Overlay ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: 100%;
  max-width: 600px;
  padding: 20px;
}

.search-overlay .search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.search-overlay .search-form {
  display: flex;
  gap: 10px;
}

.search-overlay .search-input {
  flex: 1;
  padding: 16px 24px;
  font-size: 18px;
  border: 2px solid #333;
  border-radius: 8px;
  background: #1a1a2e;
  color: #fff;
  outline: none;
}

.search-overlay .search-input:focus {
  border-color: #00bcd4;
}

.search-overlay .search-submit {
  padding: 16px 24px;
  background: #00bcd4;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-overlay .search-submit:hover {
  background: #00a5bb;
}

/* ── Main Navbar ── */
.eagle-navbar {
  background: #1a1a2e;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.eagle-navbar .navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eagle-navbar .navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.eagle-navbar .navbar-menu li a {
  display: block;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  border-bottom: none;
}

.eagle-navbar .navbar-menu li a:hover,
.eagle-navbar .navbar-menu li.active a {
  color: #00bcd4;
  background: transparent;
}

.eagle-navbar .navbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eagle-navbar .menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0;
  transition: color 0.2s;
}

.eagle-navbar .menu-btn i {
  font-size: 14px;
}

.eagle-navbar .menu-btn:hover {
  color: #00bcd4;
}

.eagle-navbar .login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.eagle-navbar .login-btn:hover {
  background: #00bcd4;
  border-color: #00bcd4;
  color: #fff;
}

.eagle-navbar .user-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  cursor: pointer;
}

.eagle-navbar .user-btn img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.eagle-navbar .user-btn i {
  color: #9ca3af;
  font-size: 10px;
}

/* ── Breaking News Ticker ── */
.eagle-ticker {
  background: #dc3545;
  padding: 0;
}

.eagle-ticker .ticker-inner {
  display: flex;
  align-items: stretch;
}

.eagle-ticker .ticker-label {
  background: #b82d3a;
  color: #fff;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.eagle-ticker .ticker-label i {
  animation: pulse 1.5s infinite;
}

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

.eagle-ticker .ticker-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  gap: 16px;
  overflow: hidden;
}

.eagle-ticker .ticker-time {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.eagle-ticker .ticker-news {
  flex: 1;
  overflow: hidden;
}

.eagle-ticker .ticker-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eagle-ticker .ticker-all {
  background: transparent;
  color: #00bcd4;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}

.eagle-ticker .ticker-all:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── Hero Section ── */
.eagle-hero {
  background: #ffffff !important;
  padding: 20px 0 30px;
}

.eagle-hero .container {
  background: transparent;
}

.eagle-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 15px;
  align-items: start;
}

.eagle-hero .hero-main {
  position: relative;
}

.eagle-hero .hero-slider {
  position: relative;
  height: 420px;
  border-radius: 0;
  overflow: hidden;
}

.eagle-hero .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.eagle-hero .hero-slide.active {
  opacity: 1;
}

.eagle-hero .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eagle-hero .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.9));
  display: flex;
  align-items: flex-end;
}

.eagle-hero .slide-content {
  padding: 25px;
  width: 100%;
}

.eagle-hero .slide-content h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Hero Pagination - Sol slider için */
.eagle-hero .hero-pagination {
  display: flex;
  gap: 0;
  margin-top: 10px;
  justify-content: flex-start;
}

.eagle-hero .hero-pagination .page-num {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border: none;
  border-right: 1px solid #e0e0e0;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.eagle-hero .hero-pagination .page-num:first-child {
  border-left: 1px solid #e0e0e0;
}

.eagle-hero .hero-pagination .page-num:hover {
  background: #e0e0e0;
}

.eagle-hero .hero-pagination .page-num.active {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

/* Hero Side Section - Sağ taraf */
.eagle-hero .hero-side {
  position: relative;
  display: flex;
  flex-direction: column;
}

.eagle-hero .side-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.eagle-hero .side-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eagle-hero .side-nav.nav-left {
  margin-right: 0;
}

.eagle-hero .side-nav.nav-right {
  margin-left: 0;
}

.eagle-hero .side-nav button {
  width: 28px;
  height: 160px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eagle-hero .side-nav button:hover {
  background: #00bcd4;
  border-color: #00bcd4;
  color: #fff;
}

.eagle-hero .side-slider {
  position: relative;
  flex: 1;
  height: 320px;
}

.eagle-hero .side-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eagle-hero .side-slide.active {
  opacity: 1;
}

.eagle-hero .side-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 156px;
}

.eagle-hero .side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eagle-hero .side-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.85));
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.eagle-hero .side-card h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Side Pagination - Sağ slider için */
.eagle-hero .side-pagination {
  display: flex;
  gap: 0;
  margin-top: 10px;
  justify-content: flex-end;
}

.eagle-hero .side-pagination .page-num {
  width: 32px;
  height: 32px;
  background: #f5f5f5;
  border: none;
  border-right: 1px solid #e0e0e0;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.eagle-hero .side-pagination .page-num:first-child {
  border-left: 1px solid #e0e0e0;
}

.eagle-hero .side-pagination .page-num:hover {
  background: #e0e0e0;
}

.eagle-hero .side-pagination .page-num.active {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.eagle-hero .side-all {
  display: block;
  text-align: right;
  margin-top: 10px;
  color: #00bcd4;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eagle-hero .side-all:hover {
  color: #00a5bb;
}

.eagle-hero .side-all i {
  margin-left: 4px;
  font-size: 11px;
}

/* ── Category Section ── */
.eagle-category-section {
  background: #ffffff;
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
}

.eagle-category-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #00bcd4;
}

.eagle-category-section .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.eagle-category-section .title-icon {
  color: #00bcd4;
}

.eagle-category-section .section-more {
  color: #00bcd4;
  font-size: 13px;
  font-weight: 600;
}

.eagle-category-section .section-more:hover {
  color: #00a5bb;
}

.eagle-category-section .category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 16px;
}

.eagle-category-section .category-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.eagle-category-section .category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.eagle-category-section .category-card.featured {
  grid-row: span 2;
}

.eagle-category-section .category-card .card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.eagle-category-section .category-card.featured .card-image {
  aspect-ratio: auto;
  height: 100%;
}

.eagle-category-section .category-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.eagle-category-section .category-card:hover .card-image img {
  transform: scale(1.05);
}

.eagle-category-section .category-card .card-content {
  padding: 16px;
}

.eagle-category-section .category-card.featured .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 30px 20px;
}

.eagle-category-section .category-card .card-date {
  display: block;
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

.eagle-category-section .category-card .card-date i {
  margin-right: 4px;
}

.eagle-category-section .category-card h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a2e;
  margin: 0;
}

.eagle-category-section .category-card.featured h4 {
  font-size: 18px;
  color: #fff;
}

.eagle-category-section .category-card a {
  color: inherit;
}

/* ── Latest News Section ── */
.eagle-latest-section {
  background: #f8f9fa;
  padding: 40px 0 60px;
  border-top: 1px solid #e5e7eb;
}

.eagle-latest-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #00bcd4;
}

.eagle-latest-section .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.eagle-latest-section .title-icon {
  color: #00bcd4;
}

.eagle-latest-section .section-more {
  color: #00bcd4;
  font-size: 13px;
  font-weight: 600;
}

.eagle-latest-section .latest-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eagle-latest-section .latest-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: transform 0.2s;
}

.eagle-latest-section .latest-card:hover {
  transform: translateX(4px);
}

.eagle-latest-section .latest-card .card-image {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  overflow: hidden;
}

.eagle-latest-section .latest-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.eagle-latest-section .latest-card:hover .card-image img {
  transform: scale(1.05);
}

.eagle-latest-section .latest-card .card-content {
  flex: 1;
  padding: 16px 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eagle-latest-section .latest-card .card-category {
  display: inline-block;
  padding: 3px 10px;
  background: #00bcd4;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}

.eagle-latest-section .latest-card h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px 0;
}

.eagle-latest-section .latest-card h4 a {
  color: #1a1a2e;
  transition: color 0.2s;
}

.eagle-latest-section .latest-card h4 a:hover {
  color: #00bcd4;
}

.eagle-latest-section .latest-card .card-meta {
  font-size: 12px;
  color: #6b7280;
}

.eagle-latest-section .latest-card .time-ago {
  color: #00bcd4;
}

.eagle-latest-section .load-more {
  text-align: center;
  margin-top: 30px;
}

.eagle-latest-section .load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  border: 2px solid #00bcd4;
  color: #00bcd4;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
}

.eagle-latest-section .load-more-btn:hover {
  background: #00bcd4;
  color: #ffffff;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .eagle-category-section .category-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .eagle-category-section .category-card.featured {
    grid-row: span 1;
  }
}

@media (max-width: 992px) {
  .eagle-hero .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .eagle-hero .hero-slider {
    height: 350px;
  }
  
  .eagle-hero .side-slider {
    height: 300px;
  }
  
  .eagle-navbar .navbar-menu {
    display: none;
  }
  
  .eagle-header .header-info {
    display: none;
  }
}

@media (max-width: 768px) {
  .eagle-topbar {
    display: none;
  }
  
  .eagle-header .header-tagline {
    display: none;
  }
  
  .eagle-category-section .category-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .eagle-latest-section .latest-card {
    flex-direction: column;
  }
  
  .eagle-latest-section .latest-card .card-image {
    width: 100%;
    height: 200px;
  }
  
  .eagle-latest-section .latest-card .card-content {
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .eagle-hero .hero-slider {
    height: 280px;
  }
  
  .eagle-hero .slide-content h2 {
    font-size: 20px;
  }
  
  .eagle-category-section .category-grid {
    grid-template-columns: 1fr;
  }
  
  .eagle-ticker .ticker-label {
    padding: 10px 14px;
    font-size: 11px;
  }
  
  .eagle-ticker .ticker-content {
    padding: 10px 14px;
  }
}

/* ── Eagle Sidebar ── */
.eagle-sidebar {
  position: sticky;
  top: 80px;
}

.eagle-sidebar .sidebar-widget {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}

.eagle-sidebar .sidebar-widget.ad-widget {
  text-align: center;
  padding: 16px;
}

.eagle-sidebar .ad-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  margin-bottom: 8px;
}

.eagle-sidebar .widget-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #00bcd4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eagle-sidebar .widget-title i {
  color: #00bcd4;
  font-size: 14px;
}

/* Trend List */
.eagle-sidebar .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eagle-sidebar .trend-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.2s;
}

.eagle-sidebar .trend-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.eagle-sidebar .trend-item:hover {
  padding-left: 4px;
}

.eagle-sidebar .trend-item .rank {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #e5e7eb;
  line-height: 1;
  min-width: 28px;
}

.eagle-sidebar .trend-item:nth-child(1) .rank { color: #00bcd4; }
.eagle-sidebar .trend-item:nth-child(2) .rank { color: #10b981; }
.eagle-sidebar .trend-item:nth-child(3) .rank { color: #8b5cf6; }

.eagle-sidebar .trend-item .trend-thumb {
  width: 70px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.eagle-sidebar .trend-item .trend-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eagle-sidebar .trend-item .trend-info {
  flex: 1;
  min-width: 0;
}

.eagle-sidebar .trend-item .trend-info h5 {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 4px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eagle-sidebar .trend-item .trend-info h5 a {
  color: #1a1a2e;
}

.eagle-sidebar .trend-item .trend-info h5 a:hover {
  color: #00bcd4;
}

.eagle-sidebar .trend-item .trend-info small {
  font-size: 11px;
  color: #6b7280;
}

/* Category List */
.eagle-sidebar .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eagle-sidebar .category-list li {
  margin-bottom: 4px;
}

.eagle-sidebar .category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 4px;
  color: #4a5568;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  background: #f8f9fa;
}

.eagle-sidebar .category-list li a:hover {
  background: rgba(0, 188, 212, 0.1);
  color: #1a1a2e;
  padding-left: 18px;
}

.eagle-sidebar .category-list li a .count {
  background: #e5e7eb;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
}

/* ── Eagle Media Responsive ── */
@media (max-width: 1200px) {
  .eagle-hero .hero-grid {
    grid-template-columns: 1fr 280px;
  }
  
  .eagle-hero .hero-slider {
    height: 380px;
  }
  
  .eagle-hero .side-slider {
    height: 280px;
  }
  
  .eagle-hero .side-card {
    height: 136px;
  }
}

@media (max-width: 992px) {
  .eagle-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .eagle-hero .hero-slider {
    height: 350px;
  }
  
  .eagle-hero .hero-side {
    max-width: 100%;
  }
  
  .eagle-hero .side-wrapper {
    justify-content: center;
  }
  
  .eagle-hero .side-slider {
    height: 300px;
    max-width: 400px;
  }
  
  .eagle-hero .side-card {
    height: 146px;
  }
  
  .eagle-hero .side-pagination {
    justify-content: center;
  }
  
  .eagle-hero .side-all {
    text-align: center;
  }
  
  .eagle-category-section .category-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .eagle-category-section .category-card.featured {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .eagle-ticker .ticker-inner {
    flex-wrap: wrap;
  }
  
  .eagle-ticker .ticker-label {
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .eagle-ticker .ticker-content {
    padding: 10px 16px;
    flex: 1 1 auto;
    min-width: 0;
  }
  
  .eagle-ticker .ticker-time {
    font-size: 13px;
  }
  
  .eagle-ticker .ticker-text {
    font-size: 13px;
  }
  
  .eagle-ticker .ticker-all {
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .eagle-hero {
    padding: 15px 0 20px;
  }
  
  .eagle-hero .hero-slider {
    height: 280px;
  }
  
  .eagle-hero .slide-content {
    padding: 15px;
  }
  
  .eagle-hero .slide-content h2 {
    font-size: 18px;
  }
  
  .eagle-hero .hero-pagination .page-num {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  
  .eagle-hero .side-slider {
    height: 240px;
    max-width: 100%;
  }
  
  .eagle-hero .side-card {
    height: 116px;
  }
  
  .eagle-hero .side-card h3 {
    font-size: 12px;
  }
  
  .eagle-hero .side-pagination .page-num {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  
  .eagle-category-section {
    padding: 25px 0;
  }
  
  .eagle-category-section .category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .eagle-category-section .category-card.featured {
    grid-column: span 1;
  }
}
