﻿/* ================= 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;
}