/* ================================================================
   WARRIOR88 - Main Stylesheet (moban-155)
   Warrior Armor Theme: Red(#C62828) + Black(#0D0D0D) + Gold(#FFD700)
   Fonts: Cinzel + Karla
   ================================================================ */

/* === KEYFRAMES === */
@keyframes warriorStrike {
  0% { transform: translateX(-100%) rotate(-5deg); opacity: 0; }
  50% { transform: translateX(10%) rotate(2deg); opacity: 1; }
  100% { transform: translateX(0) rotate(0deg); opacity: 1; }
}

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

@keyframes battlePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 0 30px 10px rgba(198, 40, 40, 0.2); }
}

@keyframes shieldGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.1); }
  50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), inset 0 0 40px rgba(255, 215, 0, 0.2); }
}

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

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

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

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

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes flameFlicker {
  0%, 100% { opacity: 0.8; transform: scaleY(1) translateY(0); }
  25% { opacity: 1; transform: scaleY(1.1) translateY(-5px); }
  50% { opacity: 0.6; transform: scaleY(0.9) translateY(2px); }
  75% { opacity: 0.9; transform: scaleY(1.05) translateY(-3px); }
}

@keyframes swordSweep {
  0% { transform: translateX(-100%) rotate(-45deg); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(200%) rotate(-45deg); opacity: 0; }
}

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

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Karla', sans-serif;
  background-color: #0D0D0D;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.gold-text {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInDown 0.5s ease;
}

.announcement-modal.hidden {
  display: none;
}

.announcement-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.announcement-content {
  position: relative;
  background: linear-gradient(145deg, #1a0a0a, #0D0D0D);
  border: 2px solid #C62828;
  border-radius: 16px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  z-index: 1;
  box-shadow: 0 0 60px rgba(198, 40, 40, 0.4), 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: shieldGlow 3s infinite;
}

.announcement-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #FFD700;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}

.announcement-close:hover {
  color: #C62828;
  transform: rotate(90deg);
}

.announcement-header-icon {
  text-align: center;
  margin-bottom: 15px;
}

.announcement-header-icon i {
  font-size: 48px;
  color: #FFD700;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
  animation: float 3s ease-in-out infinite;
}

.announcement-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
}

.announcement-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 10px;
  transition: all 0.3s;
}

.announcement-item:hover {
  background: rgba(198, 40, 40, 0.2);
  border-color: #FFD700;
  transform: translateX(5px);
}

.announcement-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  min-width: 40px;
  text-align: center;
}

.announcement-badge.hot {
  background: #C62828;
  color: white;
}

.announcement-badge.new {
  background: #FFD700;
  color: #0D0D0D;
}

.announcement-badge.info {
  background: #1565C0;
  color: white;
}

.announcement-text {
  flex: 1;
  font-size: 13px;
  color: #e0e0e0;
}

.announcement-item i.fa-chevron-right {
  color: #FFD700;
  font-size: 12px;
}

.announcement-footer {
  text-align: center;
}

.announcement-cta {
  display: inline-block;
  padding: 12px 40px;
  background: linear-gradient(135deg, #C62828, #8B0000);
  color: #FFD700;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
  border: 1px solid #FFD700;
}

.announcement-cta:hover {
  background: linear-gradient(135deg, #FFD700, #FFA000);
  color: #0D0D0D;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(198, 40, 40, 0.5);
}

/* === HEADER === */
.site-header {
  background: linear-gradient(180deg, #0D0D0D 0%, #1a0505 100%);
  border-bottom: 2px solid #C62828;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(198, 40, 40, 0.2);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.header-time {
  color: #FFD700;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
}

.header-btn-group {
  display: flex;
  gap: 10px;
}

.btn-login {
  padding: 8px 20px;
  border: 1px solid #FFD700;
  color: #FFD700;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s;
  font-family: 'Cinzel', serif;
}

.btn-login:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-register {
  padding: 8px 20px;
  background: linear-gradient(135deg, #C62828, #8B0000);
  color: #FFD700;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s;
  font-family: 'Cinzel', serif;
}

.btn-register:hover {
  background: linear-gradient(135deg, #FFD700, #FFA000);
  color: #0D0D0D;
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.5);
}

.btn-demo {
  padding: 8px 20px;
  border: 1px solid #C62828;
  color: #e0e0e0;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s;
  font-family: 'Cinzel', serif;
}

.btn-demo:hover {
  background: rgba(198, 40, 40, 0.2);
  border-color: #FFD700;
  color: #FFD700;
}

/* === NAVIGATION === */
.main-navigation {
  background: linear-gradient(90deg, #0D0D0D, #1a0505, #0D0D0D);
  border-top: 1px solid rgba(198, 40, 40, 0.3);
  border-bottom: 1px solid rgba(198, 40, 40, 0.3);
}

.nav-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 18px;
  color: #e0e0e0;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: #FFD700;
  background: rgba(198, 40, 40, 0.15);
  border-bottom-color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link i {
  margin-right: 5px;
  color: #C62828;
}

.nav-link:hover i {
  color: #FFD700;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid #C62828;
  color: #FFD700;
  font-size: 22px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
  background: linear-gradient(90deg, #C62828, #8B0000, #C62828);
  overflow: hidden;
  padding: 8px 0;
}

.notification-content {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: scrollText 30s linear infinite;
  color: #FFD700;
  font-size: 13px;
  font-weight: 500;
}

/* === HERO SECTION === */
.warrior88-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a0505 0%, #0D0D0D 70%);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 16px;
  margin: 20px 0;
  padding: 60px 20px;
}

.battle-flames {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.flame {
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 120px;
  background: linear-gradient(to top, #C62828, rgba(255, 215, 0, 0.3), transparent);
  border-radius: 50% 50% 20% 20%;
  animation: flameFlicker 2s ease-in-out infinite;
  opacity: 0.6;
}

.flame-1 { left: 5%; animation-delay: 0s; height: 100px; }
.flame-2 { left: 25%; animation-delay: 0.5s; height: 140px; }
.flame-3 { left: 50%; animation-delay: 1s; height: 120px; transform: translateX(-50%); }
.flame-4 { right: 25%; animation-delay: 0.3s; height: 130px; }
.flame-5 { right: 5%; animation-delay: 0.8s; height: 110px; }

.warrior-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.shield-plate {
  position: absolute;
  border: 2px solid rgba(198, 40, 40, 0.3);
  border-radius: 50%;
  animation: shieldGlow 4s ease-in-out infinite;
}

.shield-plate-1 { width: 300px; height: 300px; top: 0; left: 0; }
.shield-plate-2 { width: 240px; height: 240px; top: 30px; left: 30px; animation-delay: 0.5s; }
.shield-plate-3 { width: 180px; height: 180px; top: 60px; left: 60px; animation-delay: 1s; }
.shield-plate-4 { width: 120px; height: 120px; top: 90px; left: 90px; animation-delay: 1.5s; }

.shield-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C62828, #FFD700);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: float 3s ease-in-out infinite;
}

.shield-inner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
  border-radius: 50%;
}

.sword-sweep-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.1) 50%, transparent 60%);
  animation: swordSweep 5s ease-in-out infinite;
  pointer-events: none;
}

.hero-inner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-main-title {
  margin-bottom: 20px;
}

.hero-brand {
  display: block;
  font-size: 56px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.8);
  background: linear-gradient(90deg, #FFD700, #FFA000, #FFD700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: armorShine 4s linear infinite;
}

.hero-divider-line {
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C62828, #FFD700, #C62828, transparent);
  margin: 15px auto;
}

.hero-tagline {
  display: block;
  font-size: 22px;
  color: #e0e0e0;
  font-family: 'Cinzel', serif;
  letter-spacing: 3px;
}

.hero-description {
  font-size: 16px;
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #FFD700;
  font-family: 'Cinzel', serif;
}

.hero-stat-label {
  display: block;
  font-size: 13px;
  color: #999;
  margin-top: 5px;
}

.hero-cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold-primary {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #C62828, #8B0000);
  color: #FFD700;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  border-radius: 8px;
  border: 2px solid #FFD700;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-gold-primary:hover {
  background: linear-gradient(135deg, #FFD700, #FFA000);
  color: #0D0D0D;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(198, 40, 40, 0.5);
}

.btn-outline-gold {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #C62828;
  color: #e0e0e0;
  font-weight: 600;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline-gold:hover {
  border-color: #FFD700;
  color: #FFD700;
  background: rgba(198, 40, 40, 0.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* === SECTION TITLES === */
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #C62828, #FFD700, #C62828);
}

.section-title i {
  margin-right: 10px;
}

.section-subtitle {
  text-align: center;
  color: #999;
  font-size: 15px;
  margin-bottom: 40px;
  margin-top: 15px;
}

/* === WARRIOR STAR GAMES === */
.warrior-star-games {
  padding: 50px 0;
}

.warrior-star-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.warrior-star-game-card {
  display: block;
  position: relative;
  background: linear-gradient(145deg, #1a0a0a, #0D0D0D);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
}

.warrior-star-game-card:hover {
  border-color: #FFD700;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(198, 40, 40, 0.3);
}

.warrior-star-game-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.05) 0%, transparent 60%);
  transition: all 0.5s;
  pointer-events: none;
}

.warrior-star-game-card:hover .warrior-star-game-glow {
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
}

.warrior-star-game-icon {
  margin-bottom: 15px;
}

.warrior-star-game-icon i {
  font-size: 48px;
  color: #C62828;
  filter: drop-shadow(0 0 15px rgba(198, 40, 40, 0.4));
  transition: all 0.3s;
}

.warrior-star-game-card:hover .warrior-star-game-icon i {
  color: #FFD700;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
  transform: scale(1.1);
}

.warrior-star-game-rating {
  margin-bottom: 12px;
}

.warrior-star-game-rating i {
  color: #FFD700;
  font-size: 13px;
  margin: 0 2px;
}

.warrior-star-game-card h3 {
  font-size: 18px;
  color: #FFD700;
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
}

.warrior-star-game-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 15px;
}

.warrior-star-game-players {
  font-size: 12px;
  color: #999;
}

.warrior-star-game-players i {
  color: #C62828;
  margin-right: 5px;
}

/* === BATTLE GRID === */
.battle-grid-section {
  padding: 50px 0;
}

.battle-grid-map {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.battle-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.battle-grid-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px;
  background: linear-gradient(145deg, #1a0a0a, #111);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 12px;
  transition: all 0.3s;
}

.battle-grid-node:hover {
  border-color: #FFD700;
  background: linear-gradient(145deg, #2a0a0a, #1a0505);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(198, 40, 40, 0.2);
}

.battle-node-icon i {
  font-size: 32px;
  color: #C62828;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.battle-grid-node:hover .battle-node-icon i {
  color: #FFD700;
  transform: scale(1.2);
}

.battle-node-label {
  font-size: 14px;
  font-weight: 600;
  color: #e0e0e0;
  font-family: 'Cinzel', serif;
}

.battle-grid-node:hover .battle-node-label {
  color: #FFD700;
}

/* === ARMOR FEATURES === */
.armor-features {
  padding: 50px 0;
}

.armor-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.armor-feature-card {
  background: linear-gradient(145deg, #1a0a0a, #0D0D0D);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.armor-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #C62828, #FFD700, #C62828);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.armor-feature-card:hover::before {
  transform: scaleX(1);
}

.armor-feature-card:hover {
  border-color: #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(198, 40, 40, 0.2);
}

.armor-feature-icon {
  margin-bottom: 20px;
}

.armor-feature-icon i {
  font-size: 42px;
  color: #C62828;
  filter: drop-shadow(0 0 10px rgba(198, 40, 40, 0.3));
  transition: all 0.3s;
}

.armor-feature-card:hover .armor-feature-icon i {
  color: #FFD700;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.armor-feature-card h3 {
  font-size: 16px;
  color: #FFD700;
  margin-bottom: 12px;
  font-family: 'Cinzel', serif;
}

.armor-feature-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.7;
}

/* === WARRIOR STATS === */
.warrior-stats {
  position: relative;
  padding: 60px 0;
  margin: 40px 0;
  overflow: hidden;
}

.warrior-stats-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0505, #0D0D0D);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 16px;
}

.battle-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(198, 40, 40, 0.1) 0%, transparent 70%);
  border-radius: 16px;
}

.warrior-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 0 20px;
}

.warrior-stat-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 12px;
  transition: all 0.3s;
}

.warrior-stat-card:hover {
  border-color: #FFD700;
  animation: battlePulse 2s infinite;
}

.stat-shield-decoration {
  margin-bottom: 10px;
}

.stat-shield-decoration i {
  font-size: 24px;
  color: #C62828;
  opacity: 0.6;
}

.stat-shield-decoration.bottom {
  margin-top: 10px;
  margin-bottom: 0;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #FFD700;
  font-family: 'Cinzel', serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #bbb;
}

/* === BATTLE PROMOS === */
.battle-promos {
  padding: 50px 0;
}

.battle-promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.battle-promo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(198, 40, 40, 0.3);
  transition: all 0.4s;
}

.battle-promo-card:hover {
  border-color: #FFD700;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(198, 40, 40, 0.3);
}

.promo-armor-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1a0a0a, #0D0D0D);
  z-index: 0;
}

.battle-promo-inner {
  position: relative;
  z-index: 1;
  padding: 30px 25px;
  text-align: center;
}

.promo-icon {
  margin-bottom: 15px;
}

.promo-icon i {
  font-size: 40px;
  color: #FFD700;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.battle-promo-inner h3 {
  font-size: 18px;
  color: #FFD700;
  margin-bottom: 12px;
  font-family: 'Cinzel', serif;
}

.battle-promo-inner p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 15px;
}

.promo-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #999;
}

.promo-badge {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.promo-badge.hot {
  background: #C62828;
  color: white;
}

.promo-badge.new {
  background: #FFD700;
  color: #0D0D0D;
}

.promo-badge.vip {
  background: linear-gradient(135deg, #FFD700, #FFA000);
  color: #0D0D0D;
}

.btn-promo {
  display: inline-block;
  padding: 10px 30px;
  background: linear-gradient(135deg, #C62828, #8B0000);
  color: #FFD700;
  font-weight: 700;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
  border: 1px solid rgba(255, 215, 0, 0.3);
  font-family: 'Cinzel', serif;
}

.btn-promo:hover {
  background: linear-gradient(135deg, #FFD700, #FFA000);
  color: #0D0D0D;
  box-shadow: 0 5px 20px rgba(198, 40, 40, 0.4);
}

/* === FOOTER CTA === */
.footer-cta-section {
  position: relative;
  padding: 60px 20px;
  margin: 40px 0;
  text-align: center;
  overflow: hidden;
  border-radius: 16px;
}

.footer-cta-battlefield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0505, #2a0a0a, #1a0505);
  border: 1px solid rgba(198, 40, 40, 0.4);
  border-radius: 16px;
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
}

.cta-shield-decoration {
  margin-bottom: 20px;
}

.cta-shield-emblem {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C62828, #FFD700);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: shieldGlow 3s infinite, float 3s ease-in-out infinite;
}

.footer-cta-inner h2 {
  font-size: 32px;
  color: #FFD700;
  margin-bottom: 15px;
  font-family: 'Cinzel', serif;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.footer-cta-inner > p {
  font-size: 16px;
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.8;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-feature {
  font-size: 14px;
  color: #e0e0e0;
}

.cta-feature i {
  color: #FFD700;
  margin-right: 8px;
}

.cta-main-btn {
  font-size: 18px;
  padding: 16px 50px;
}

/* === HOME NEWS === */
.home-news-section {
  padding: 50px 0;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.article-card {
  display: block;
  background: linear-gradient(145deg, #1a0a0a, #0D0D0D);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.article-card:hover {
  border-color: #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(198, 40, 40, 0.2);
}

.article-card-thumb {
  height: 180px;
  overflow: hidden;
}

.article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.article-card-title {
  padding: 15px 15px 8px;
  font-size: 15px;
  font-weight: 600;
  color: #e0e0e0;
  line-height: 1.4;
  min-height: 50px;
}

.article-card-title span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-title a {
  color: inherit;
}

.article-card-title a:hover {
  color: #FFD700;
}

.article-card-meta {
  padding: 0 15px;
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 15px;
}

.article-card-meta i {
  color: #C62828;
  margin-right: 5px;
}

.article-card-excerpt {
  padding: 10px 15px 15px;
  font-size: 13px;
  color: #bbb;
  line-height: 1.6;
}

.article-card-more {
  display: inline-block;
  padding: 10px 15px;
  color: #FFD700;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.article-card-more:hover {
  color: #C62828;
}

.view-more-btn {
  display: block;
  text-align: center;
  padding: 12px 30px;
  border: 2px solid #C62828;
  border-radius: 8px;
  color: #e0e0e0;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  max-width: 200px;
  margin: 0 auto;
  font-family: 'Cinzel', serif;
}

.view-more-btn:hover {
  border-color: #FFD700;
  color: #FFD700;
  background: rgba(198, 40, 40, 0.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* === CONTENT AREA === */
.content-area {
  display: flex;
  gap: 30px;
  padding: 20px 0;
}

.main-content {
  flex: 1;
  min-width: 0;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  font-size: 13px;
  color: #999;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #FFD700;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #C62828;
}

.breadcrumb span {
  color: #999;
}

/* === CATEGORY HEADER === */
.category-header {
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(145deg, #1a0a0a, #0D0D0D);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 12px;
}

.category-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
}

.category-desc {
  font-size: 14px;
  color: #bbb;
  line-height: 1.7;
}

/* === PROVIDER TABS === */
.provider-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 15px;
  background: linear-gradient(145deg, #1a0a0a, #111);
  border: 1px solid rgba(198, 40, 40, 0.2);
  border-radius: 10px;
}

.provider-tab {
  padding: 8px 18px;
  background: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 6px;
  color: #e0e0e0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Karla', sans-serif;
}

.provider-tab:hover,
.provider-tab.active {
  background: linear-gradient(135deg, #C62828, #8B0000);
  border-color: #FFD700;
  color: #FFD700;
}

/* === ARTICLE GRID === */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 16px;
}

/* === PAGINATION === */
.pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.pagination .nav-links {
  display: flex;
  gap: 8px;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 14px;
  transition: all 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: linear-gradient(135deg, #C62828, #8B0000);
  border-color: #FFD700;
  color: #FFD700;
}

/* === SINGLE ARTICLE === */
.single-article {
  background: linear-gradient(145deg, #1a0a0a, #0D0D0D);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

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

.article-title {
  font-size: 28px;
  color: #FFD700;
  margin-bottom: 15px;
  font-family: 'Cinzel', serif;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #999;
}

.article-meta i {
  color: #C62828;
  margin-right: 5px;
}

.article-meta a {
  color: #FFD700;
}

.article-featured-img {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(198, 40, 40, 0.3);
}

.article-featured-img img {
  width: 100%;
  height: auto;
}

.article-content {
  font-size: 16px;
  line-height: 1.9;
  color: #ddd;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: #FFD700;
  margin: 25px 0 15px;
  font-family: 'Cinzel', serif;
}

.article-content p {
  margin-bottom: 15px;
}

.article-content a {
  color: #FFD700;
  text-decoration: underline;
}

.article-content img {
  border-radius: 8px;
  margin: 15px 0;
}

.article-content ul,
.article-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 8px;
  list-style: disc;
}

.article-content ol li {
  list-style: decimal;
}

.article-content blockquote {
  border-left: 4px solid #C62828;
  padding: 15px 20px;
  margin: 20px 0;
  background: rgba(198, 40, 40, 0.1);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #bbb;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.article-content th,
.article-content td {
  border: 1px solid rgba(198, 40, 40, 0.3);
  padding: 12px 15px;
  text-align: left;
}

.article-content th {
  background: rgba(198, 40, 40, 0.2);
  color: #FFD700;
  font-weight: 600;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(198, 40, 40, 0.2);
  margin-top: 25px;
}

.article-tags i {
  color: #FFD700;
}

.article-tags span {
  padding: 5px 12px;
  background: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 6px;
  font-size: 13px;
  color: #e0e0e0;
  transition: all 0.3s;
}

.article-tags span:hover {
  border-color: #FFD700;
  color: #FFD700;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(198, 40, 40, 0.2);
}

.article-nav-prev a,
.article-nav-next a {
  color: #FFD700;
  font-size: 14px;
  transition: color 0.3s;
}

.article-nav-prev a:hover,
.article-nav-next a:hover {
  color: #C62828;
}

/* === RELATED POSTS === */
.related-posts {
  margin-bottom: 30px;
}

.related-posts-title {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.related-item {
  display: block;
  background: linear-gradient(145deg, #1a0a0a, #0D0D0D);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.related-item:hover {
  border-color: #FFD700;
  transform: translateY(-3px);
}

.related-item-thumb {
  height: 120px;
  overflow: hidden;
}

.related-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.related-item:hover .related-item-thumb img {
  transform: scale(1.1);
}

.related-item-title {
  padding: 10px;
  font-size: 13px;
  color: #e0e0e0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-item:hover .related-item-title {
  color: #FFD700;
}

/* === PAGE ARTICLE === */
.page-article {
  background: linear-gradient(145deg, #1a0a0a, #0D0D0D);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 16px;
  padding: 30px;
}

.page-title {
  font-size: 28px;
  color: #FFD700;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
}

.page-featured-img {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
}

.page-content {
  font-size: 16px;
  line-height: 1.9;
  color: #ddd;
}

.page-content h2,
.page-content h3 {
  color: #FFD700;
  margin: 20px 0 15px;
}

.page-content p {
  margin-bottom: 15px;
}

.page-content a {
  color: #FFD700;
}

/* === ERROR PAGE === */
.error-page {
  text-align: center;
  padding: 80px 20px;
}

.error-shield {
  margin-bottom: 30px;
}

.error-shield-emblem {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #C62828, #FFD700);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: shieldGlow 3s infinite, float 3s ease-in-out infinite;
}

.error-code {
  font-size: 80px;
  color: #C62828;
  font-family: 'Cinzel', serif;
  text-shadow: 0 0 30px rgba(198, 40, 40, 0.5);
  margin-bottom: 15px;
}

.error-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-family: 'Cinzel', serif;
}

.error-desc {
  font-size: 16px;
  color: #bbb;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* === FLOATING SIDEBAR === */
.floating-sidebar {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #C62828, #8B0000);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  color: #FFD700;
  font-size: 18px;
  transition: all 0.3s;
  position: relative;
}

.sidebar-btn:hover {
  background: linear-gradient(135deg, #FFD700, #FFA000);
  color: #0D0D0D;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(198, 40, 40, 0.4);
}

.sidebar-btn-facebook:hover {
  background: #1877F2;
  color: white;
}

.sidebar-btn-telegram:hover {
  background: #0088cc;
  color: white;
}

.sidebar-label {
  display: none;
}

/* === FOOTER === */
.site-footer {
  background: linear-gradient(180deg, #0D0D0D 0%, #1a0505 100%);
  border-top: 2px solid #C62828;
  padding: 50px 0 30px;
  margin-top: 50px;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  color: #FFD700;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(198, 40, 40, 0.3);
}

.footer-brand-logo img {
  height: 45px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.footer-brand-text {
  font-size: 13px;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-18plus {
  display: inline-block;
  padding: 4px 12px;
  background: #C62828;
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(198, 40, 40, 0.2);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 8px;
  color: #FFD700;
  font-size: 16px;
  transition: all 0.3s;
}

.footer-social-links a:hover {
  background: #C62828;
  border-color: #FFD700;
  transform: translateY(-3px);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: #bbb;
  transition: all 0.3s;
}

.footer-col ul li a:hover {
  color: #FFD700;
  padding-left: 5px;
}

.footer-license-bar {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(198, 40, 40, 0.2);
  border-bottom: 1px solid rgba(198, 40, 40, 0.2);
  margin-bottom: 25px;
}

.footer-license-bar h4 {
  font-size: 16px;
  color: #FFD700;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
  border: none;
  padding: 0;
}

.license-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.license-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.license-item i {
  font-size: 28px;
  color: #C62828;
}

.license-item span {
  font-size: 12px;
  color: #999;
}

.footer-bottom {
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: #999;
}

/* === HOME NEWS PLACEHOLDER === */
.home-news-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* === UTILITY === */
.text-center { text-align: center; }
.text-gold { color: #FFD700; }
.text-red { color: #C62828; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
