﻿/* ================= Neon Futurista Pulsante ================= */

/* ================= Keyframes ================= */
@keyframes neonGlow {
  0%, 100% {
    text-shadow: 0 0 5px #00FFCC, 0 0 10px #00FFCC, 0 0 20px #00FFCC;
    box-shadow: 0 0 10px #00FFCC, 0 0 20px #00FFCC inset;
  }
  50% {
    text-shadow: 0 0 15px #00FFCC, 0 0 30px #00FFCC, 0 0 40px #00FFCC;
    box-shadow: 0 0 20px #00FFCC, 0 0 40px #00FFCC inset;
  }
}

/* Odd / Even */
.Content .BoxContent .Odd {
  background: linear-gradient(145deg, #2C2F37, #22242B);
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,255,204,0.2);
  color: #E0E0E0;
  transition: all 0.3s ease;
}

.Content .BoxContent .Odd:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,255,204,0.6), 0 0 10px rgba(0,255,204,0.5) inset;
  background: linear-gradient(145deg, #343741, #282A31);
  animation: neonGlow 1.5s infinite alternate;
}

.Content .BoxContent .Even {
  background: linear-gradient(145deg, #33373F, #2A2D34);
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,255,204,0.2);
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.Content .BoxContent .Even:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,255,204,0.6), 0 0 10px rgba(0,255,204,0.5) inset;
  background: linear-gradient(145deg, #3B3F47, #2E3138);
  animation: neonGlow 1.5s infinite alternate;
}

/* Small Icons */
.Content .NewsCategoryIconSmall {
  position: absolute;
  top: 4px;
  left: 4px;
  height: 18px;
  width: 18px;
  background-repeat: no-repeat;
  border-radius: 4px;
  box-shadow: 0 0 8px #00FFCC;
  transition: all 0.3s ease;
}

.Content .NewsCategoryIconSmall:hover {
  transform: scale(1.3);
  animation: neonGlow 1.5s infinite alternate;
}

/* ================= News Ticker ================= */
.Content #NewsTicker .BoxContent {
  padding: 12px;
  min-height: 90px;
  height: auto !important;
  height: 100px;
  background: linear-gradient(145deg, #1E2026, #25282F);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,255,204,0.4);
  transition: all 0.3s ease;
}

.Content #NewsTicker .BoxContent:hover {
  background: linear-gradient(145deg, #23252C, #2A2D34);
  box-shadow: 0 6px 18px rgba(0,255,204,0.6), 0 0 8px rgba(0,255,204,0.5) inset;
  animation: neonGlow 1.5s infinite alternate;
}

.Content #NewsTicker .NewsTickerText {
  font-size: 10pt;
  position: relative;
  margin-left: 25px;
  color: #F0F0F0;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
}

.Content #NewsTicker .NewsTickerText:hover {
  color: #00FFCC;
  animation: neonGlow 1.5s infinite alternate;
}

.Content #NewsTicker .NewsTickerExtend {
  position: relative;
  top: 1px;
  height: 14px;
  width: 14px;
  float: right;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 5px #00FFCC;
  transition: all 0.3s ease;
}

.Content #NewsTicker .NewsTickerExtend:hover {
  transform: rotate(90deg) scale(1.2);
  animation: neonGlow 1.5s infinite alternate;
}

/* ================= Featured Article ================= */
.Content #FeaturedArticle .BoxContent {
  position: relative;
  min-height: 110px;
  padding: 12px;
  background: linear-gradient(135deg, #2B2E36, #1F2128);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,255,204,0.5);
  line-height: 12pt;
  transition: all 0.3s ease;
}

.Content #FeaturedArticle .BoxContent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,255,204,0.8), 0 0 10px #00FFCC inset;
  animation: neonGlow 1.5s infinite alternate;
}

.Content #FeaturedArticle #TeaserThumbnail {
  position: relative;
  height: 100px;
  width: 150px;
  margin-left: 10px;
  background: linear-gradient(145deg, #111217, #1A1C22);
  border-radius: 10px;
  float: right;
  overflow: hidden;
  box-shadow: 0 0 10px #00FFCC;
  transition: all 0.3s ease;
}

.Content #FeaturedArticle #TeaserThumbnail:hover {
  transform: scale(1.05);
  animation: neonGlow 1.5s infinite alternate;
}

/* Headlines */
.Content .NewsHeadlineBackground {
  position: relative;
  height: 28px;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #3A3D46, #2F323B);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 5px;
  box-shadow: 0 0 5px #00FFCC;
  transition: all 0.3s ease;
}

.Content .NewsHeadlineBackground:hover {
  animation: neonGlow 1.5s infinite alternate;
}

.Content .NewsHeadlineText {
  font-size: 11pt;
  font-weight: 600;
  color: #FFFFFF;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.Content .NewsHeadlineText:hover {
  animation: neonGlow 1.5s infinite alternate;
  color: #00FFCC;
}

/* ================= Geral ================= */
body {
  background-color: #12141A;
  font-family: 'Segoe UI', sans-serif;
  color: #FFFFFF;
  margin: 0;
  padding: 20px;
}

.Content {
  max-width: 1000px;
  margin: auto;
}

/* Boxes gerais */
.BoxContent {
  margin-bottom: 15px;
}

/* ================= ResetWar Refresh ================= */
body {
  padding: 0 !important;
  background-color: transparent;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #2d2015;
}

.Content .BoxContent .Odd,
.Content .BoxContent .Even {
  color: #3a291d;
  background: linear-gradient(180deg, rgba(255, 247, 233, 0.92) 0%, rgba(241, 224, 198, 0.92) 100%);
  border: 1px solid rgba(123, 77, 38, 0.18);
  box-shadow: none;
}

.Content .BoxContent .Odd:hover,
.Content .BoxContent .Even:hover {
  transform: translateY(-1px);
  animation: none;
  box-shadow: 0 8px 18px rgba(58, 25, 10, 0.12);
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.97) 0%, rgba(242, 228, 206, 0.97) 100%);
}

.Content #NewsTicker .BoxContent,
.Content #FeaturedArticle .BoxContent {
  background: linear-gradient(180deg, rgba(253, 245, 228, 0.98) 0%, rgba(239, 220, 187, 0.98) 100%);
  box-shadow: 0 10px 22px rgba(54, 22, 8, 0.10);
  border-radius: 12px;
}

.Content #NewsTicker .BoxContent:hover,
.Content #FeaturedArticle .BoxContent:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(54, 22, 8, 0.14);
}

.Content #NewsTicker .NewsTickerText,
.Content #FeaturedArticle .BoxContent,
.Content #FeaturedArticle .BoxContent td {
  color: #392619;
}

.Content #NewsTicker .NewsTickerText:hover,
.Content .NewsHeadlineText:hover {
  animation: none;
  color: #7d230a;
}

.Content #NewsTicker .NewsTickerExtend,
.Content .NewsCategoryIconSmall {
  box-shadow: none;
}

.Content #NewsTicker .NewsTickerExtend:hover,
.Content .NewsCategoryIconSmall:hover {
  animation: none;
}

.Content .NewsHeadlineBackground {
  background: linear-gradient(90deg, #5a1707 0%, #8f2f15 100%);
  box-shadow: 0 8px 16px rgba(61, 22, 8, 0.16);
  border-radius: 8px;
}

.Content .NewsHeadlineBackground:hover {
  animation: none;
}

.Content .NewsHeadlineText {
  color: #fff3db;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.Content #FeaturedArticle .BoxContent table,
.Content #FeaturedArticle .BoxContent tbody,
.Content #FeaturedArticle .BoxContent tr,
.Content #FeaturedArticle .BoxContent td {
  background: transparent !important;
}

.Content #FeaturedArticle .BoxContent > table {
  border: 1px solid rgba(123, 77, 38, 0.2) !important;
  border-radius: 10px;
  overflow: hidden;
}
