/* =====================================================
   Aurora Global OT – Visual Enhancements
   ===================================================== */

/* ---- Custom scrollbar ---- */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: #0d0a09; }
::-webkit-scrollbar-thumb { background: #7a5500; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #ff9c00; }

/* ---- Smooth page fade-in ---- */
body { animation: page-fade-in 0.35s ease-in-out; }
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Navigation glow on hover ---- */
.navigation__link span:hover {
  text-shadow: 0 0 12px rgba(255, 156, 0, 0.55);
}
.navigation__drop-box-items a:hover {
  color: #ff9c00 !important;
  padding-left: 20px !important;
  transition: padding-left 0.2s ease, color 0.2s ease !important;
}

/* ---- Hot badge pulse ---- */
.navigation__drop-box-flag {
  animation: badge-pulse 2.5s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0   0 rgba(255,156,0,0.4); }
  50%       { transform: scale(1.07); box-shadow: 0 0 0 6px rgba(255,156,0,0); }
}

/* ---- Online indicator pulse ---- */
.servers__item-info-status.on {
  border-radius: 4px;
  padding: 3px 8px;
  animation: status-pulse 2.5s ease-in-out infinite;
  display: inline-block;
}
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0   0 rgba(186,219,244,0.4); }
  70%       { box-shadow: 0 0 0 8px rgba(186,219,244,0); }
}

/* ---- Server stats item glow ---- */
.servers__item-info-rate {
  color: #e7f2fb !important;
  text-shadow: 0 0 12px rgba(186,219,244,0.38);
}

/* Emerald accent for the online players number (first circle only) */
.servers .servers__item:first-child .servers__item-info-rate {
  color: #3be29a !important;
  text-shadow:
    0 0 8px rgba(59, 226, 154, 0.85),
    0 0 18px rgba(22, 156, 101, 0.55),
    0 2px 3px rgba(0, 0, 0, 0.75);
  animation: online-emerald-pulse 2.6s ease-in-out infinite;
}

@keyframes online-emerald-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    text-shadow:
      0 0 8px rgba(59, 226, 154, 0.8),
      0 0 18px rgba(22, 156, 101, 0.5),
      0 2px 3px rgba(0, 0, 0, 0.75);
  }
  50% {
    transform: translateY(-1px) scale(1.04);
    text-shadow:
      0 0 12px rgba(87, 243, 177, 0.95),
      0 0 26px rgba(35, 186, 124, 0.7),
      0 2px 3px rgba(0, 0, 0, 0.75);
  }
}
.servers__item {
  transition: transform 0.3s ease;
}
.servers__item:hover {
  transform: scale(1.03);
}

/* ---- Section heading line ---- */
.main-content__title-text {
  position: relative;
}
.main-content__title-text::after {
  content: '';
  display: block;
  width: 60%;
  height: 1px;
  margin: 6px auto 0;
  background: linear-gradient(90deg, transparent, rgba(255,156,0,0.5), transparent);
}

/* =====================================================
   NEWS CARD LAYOUT
   ===================================================== */
.news-card {
  background: linear-gradient(135deg, #120e0d 0%, #1c1615 100%);
  border: 1px solid #2a1e1c;
  border-left: 3px solid #7a5500;
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-left-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.news-card:hover {
  border-left-color: #ff9c00;
  box-shadow: 0 4px 24px rgba(255,156,0,0.08);
}

.news-card__header {
  padding: 13px 18px 10px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.news-card__date {
  background: rgba(255,156,0,0.13);
  border: 1px solid rgba(255,156,0,0.28);
  color: #ff9c00;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
}
.news-card__author {
  color: #7a6a60;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
}
.news-card__author a {
  color: #c9a882;
  text-decoration: none;
  transition: color 0.2s;
}
.news-card__author a:hover { color: #ff9c00; }

.news-card__title {
  padding: 12px 18px 4px 18px;
  font-family: 'Philosopher', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #f2e0c3;
  line-height: 1.4;
}
.news-card__title a {
  color: #f2e0c3 !important;
  text-decoration: none;
  transition: color 0.2s;
}
.news-card__title a:hover { color: #ff9c00 !important; }

.news-card__body {
  padding: 8px 18px 14px 18px;
  color: #9c887e;
  font-size: 14px;
  line-height: 1.75;
  font-family: 'Roboto', sans-serif;
}
.news-card__body p { margin: 0; color: #9c887e; }

.news-card__footer {
  padding: 0 18px 14px 18px;
}
.news-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ff9c00;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.news-card__read-more:hover {
  border-bottom-color: #ff9c00;
  color: #ffc100;
}

/* Single news post view */
.news-single {
  background: linear-gradient(135deg, #120e0d 0%, #1c1615 100%);
  border: 1px solid #2a1e1c;
  border-left: 3px solid #ff9c00;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 14px;
}
.news-single__meta {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #7a6a60;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.news-single__meta a { color: #c9a882; text-decoration: none; }
.news-single__meta a:hover { color: #ff9c00; }
.news-single__title {
  font-family: 'Philosopher', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #f2e0c3;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.news-single__body {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #9c887e;
}
.news-single__body p { margin: 0 0 12px; }

/* =====================================================
   CHANGELOG SECTION
   ===================================================== */
.changelog-section {
  background: linear-gradient(135deg, #120e0d, #1a1412);
  border: 1px solid #2a1e1c;
  border-radius: 6px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.changelog-section__title {
  font-family: 'Philosopher', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a882;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.changelog-section__title span { color: #ff9c00; }
.changelog-section__title a {
  font-size: 11px;
  color: #7a6a60;
  font-weight: 400;
  text-decoration: none;
  margin-left: auto;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0;
}
.changelog-section__title a:hover { color: #ff9c00; }

.changelog-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.changelog-item:last-child { border-bottom: none; }
.changelog-item__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7a5500;
  margin-top: 6px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.changelog-item:hover .changelog-item__bullet { background: #ff9c00; }
.changelog-item__date {
  min-width: 130px;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  color: #6a5a50;
  padding-top: 1px;
  flex-shrink: 0;
}
.changelog-item__text {
  color: #c3a188;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

/* =====================================================
   SECTION TITLE BAR
   ===================================================== */
.ez-section-title {
  width: 100%;
  text-align: center;
  padding: 20px 0 14px;
}
.ez-section-title__text {
  font-family: 'Philosopher', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #f2e0c3;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.ez-section-title__text::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff9c00 40%, #ff9c00 60%, transparent);
  border-radius: 2px;
}
.ez-section-title__text span { color: #ff9c00; }

/* =====================================================
   IMPROVED TABLES (all inner tables)
   ===================================================== */
.global-desc__content table td,
.global-desc__content table th {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
}
.global-desc__content table tr:hover td {
  background: rgba(255,156,0,0.03);
  transition: background 0.15s;
}
.global-desc__content table tr.yellow th,
.global-desc__content table tr.yellow td {
  background: rgba(255,156,0,0.07);
  color: #ffd060;
  border-bottom: 1px solid rgba(255,156,0,0.25);
}
.global-desc__content {
  background: linear-gradient(135deg, #110d0c, #1a1513) !important;
  border: 1px solid #2a1e1c !important;
  border-radius: 6px !important;
}

/* =====================================================
   BONUSES SECTION HOVER LIFT
   ===================================================== */
.bonus {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.bonus:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px rgba(255,156,0,0.1) !important;
}

/* =====================================================
   FOOTER ENHANCEMENT
   ===================================================== */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,156,0,0.45), transparent);
}

/* =====================================================
   NEWS PAGINATION
   ===================================================== */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 16px 0 8px;
  flex-wrap: wrap;
}
.news-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 34px;
  padding: 0 10px;
  background: #19100e;
  border: 1px solid #2b221f;
  border-radius: 4px;
  color: #9c837d;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.news-pagination a:hover,
.news-pagination a.active {
  background: rgba(255,156,0,0.12);
  border-color: rgba(255,156,0,0.4);
  color: #ff9c00;
}
.news-pagination a.active {
  pointer-events: none;
}

/* =====================================================
   HELLGRAVE – EPIC BANNER HEADER
   ===================================================== */

/* Override base header height and add layered background */
.header {
  height: 320px !important;
  overflow: hidden;
  position: relative;
}

/* Deep cinematic overlay with green/shadow tones matching the forest theme */
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(10,40,20,0.55) 0%, transparent 70%),
    linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Logo overlay */
.header::after {
  background: url(../images/logos/aurora_logo_big.png) top center no-repeat !important;
  filter: drop-shadow(0 0 18px rgba(50,180,255,0.18));
}

/* Sparkle particles rendered via box-shadows */
.hg-sparks {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.hg-sparks span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #7fd4ff;
  opacity: 0;
  animation: hg-float var(--dur, 4s) ease-in-out var(--delay, 0s) infinite;
}
.hg-sparks span:nth-child(1)  { left:5%;  top:70%; --dur:5.2s; --delay:0s;    box-shadow: 0 0 6px 2px rgba(80,180,255,0.7); }
.hg-sparks span:nth-child(2)  { left:12%; top:50%; --dur:4.7s; --delay:0.8s;  background:#a0d8ff; box-shadow: 0 0 5px 2px rgba(120,200,255,0.6); }
.hg-sparks span:nth-child(3)  { left:18%; top:80%; --dur:6s;   --delay:1.4s;  box-shadow: 0 0 6px 2px rgba(80,180,255,0.5); }
.hg-sparks span:nth-child(4)  { left:25%; top:40%; --dur:4s;   --delay:0.3s;  width:2px; height:2px; }
.hg-sparks span:nth-child(5)  { left:35%; top:60%; --dur:5.8s; --delay:2.1s;  background:#a0d8ff; box-shadow: 0 0 5px 2px rgba(120,200,255,0.5); }
.hg-sparks span:nth-child(6)  { left:42%; top:30%; --dur:4.3s; --delay:0.6s;  box-shadow: 0 0 6px 2px rgba(80,180,255,0.6); }
.hg-sparks span:nth-child(7)  { left:55%; top:75%; --dur:5.5s; --delay:1.7s;  width:2px; height:2px; }
.hg-sparks span:nth-child(8)  { left:62%; top:45%; --dur:3.9s; --delay:0.4s;  background:#a0d8ff; }
.hg-sparks span:nth-child(9)  { left:72%; top:65%; --dur:6.2s; --delay:2.5s;  box-shadow: 0 0 7px 2px rgba(80,180,255,0.7); }
.hg-sparks span:nth-child(10) { left:80%; top:35%; --dur:4.6s; --delay:1.1s;  background:#a0d8ff; box-shadow: 0 0 5px 2px rgba(120,200,255,0.6); }
.hg-sparks span:nth-child(11) { left:88%; top:55%; --dur:5s;   --delay:0.9s;  }
.hg-sparks span:nth-child(12) { left:8%;  top:25%; --dur:4.4s; --delay:3s;    background:#a0d8ff; }

@keyframes hg-float {
  0%   { opacity: 0;    transform: translateY(0)   scale(1); }
  20%  { opacity: 0.85; }
  80%  { opacity: 0.85; }
  100% { opacity: 0;    transform: translateY(-55px) scale(0.5); }
}

/* ---- Server title block ---- */
.hg-title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  position: relative;
  z-index: 4;
  animation: hg-entry 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes hg-entry {
  from { opacity:0; transform: translateX(-28px); }
  to   { opacity:1; transform: translateX(0); }
}

/* Decorative top line */
.hg-title-block::before {
  content: '✦ AURORA GLOBAL OT ✦';
  font-family: 'Philosopher', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(120,200,255,0.75);
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(60,140,255,0.5);
}

/* Main emerald glow title */
.hg-title-main {
  font-family: 'Philosopher', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  color: #e8f4ff;
  text-shadow:
    0 0 8px  rgba(80,180,255,0.9),
    0 0 20px rgba(40,140,255,0.6),
    0 0 45px rgba(20,100,220,0.35),
    0 2px 4px rgba(0,0,0,0.8);
  animation: hg-glow-pulse 3.5s ease-in-out infinite alternate;
}
@keyframes hg-glow-pulse {
  from { text-shadow: 0 0 8px rgba(80,180,255,0.9), 0 0 20px rgba(40,140,255,0.6), 0 0 45px rgba(20,100,220,0.3), 0 2px 4px rgba(0,0,0,0.8); }
  to   { text-shadow: 0 0 12px rgba(100,200,255,1),  0 0 30px rgba(60,160,255,0.8), 0 0 65px rgba(40,120,240,0.5), 0 2px 4px rgba(0,0,0,0.8); }
}

/* Gold subtitle */
.hg-title-sub {
  font-family: 'Philosopher', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #ffc100;
  text-shadow:
    0 0 10px rgba(255,193,0,0.8),
    0 0 25px rgba(255,150,0,0.4),
    0 2px 3px rgba(0,0,0,0.7);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Glowing divider */
.hg-divider {
  width: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(80,180,255,0.7), rgba(160,216,255,0.5), transparent);
  margin: 10px 0;
  position: relative;
}
.hg-divider::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fd4ff;
  box-shadow: 0 0 8px 3px rgba(80,180,255,0.8);
}

/* Feature bullets */
.hg-features {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 12px;
}
.hg-features span {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hg-features span::before {
  content: '▸';
  color: #7fd4ff;
  font-size: 11px;
}

/* Register CTA */
.hg-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 26px;
  background: linear-gradient(135deg, #1a3d6b, #0e1e3d);
  border: 1px solid rgba(80,180,255,0.45);
  border-radius: 4px;
  color: #9fd4ff !important;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 0 14px rgba(40,140,255,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hg-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -60%;
  width: 50%;
  height: 180%;
  background: rgba(255,255,255,0.10);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.hg-cta:hover::before { left: 130%; }
.hg-cta:hover {
  background: linear-gradient(135deg, #1e50a0, #122b6a);
  box-shadow: 0 0 24px rgba(60,160,255,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .hg-title-main { font-size: 32px; }
  .hg-title-sub  { font-size: 15px; letter-spacing: 4px; }
  .hg-title-block::before { display: none; }
  .header { height: auto !important; }
}
@media (max-width: 640px) {
  .hg-title-main { font-size: 26px; }
  .hg-title-sub  { font-size: 12px; letter-spacing: 2px; }
  .hg-divider    { width: 180px; }
}
