/**
 * Mundioca Season 6 - Rediseño Exclusivo y Estilo Patriótico (Rojo / Blanco / Azul - Paraguay)
 * 100% Responsivo, Sin dependencia de imágenes fijas para rankings
 */

/* ==========================================================================
   1. Paleta de Colores & Tokens
   ========================================================================== */
:root {
  /* Bandera / Identidad Tricolor */
  --py-red: #d52b1e;
  --py-red-bright: #ff4738;
  --py-red-dark: #8c1309;
  --py-red-glow: rgba(213, 43, 30, 0.4);

  --py-white: #f8fafc;
  --py-white-dim: #cbd5e1;

  --py-blue: #0038a8;
  --py-blue-bright: #1d64e8;
  --py-blue-dark: #001f61;
  --py-blue-glow: rgba(29, 100, 232, 0.45);

  /* Acentos Dorados Clásicos de MuOnline S6 */
  --s6-gold: #e5a93b;
  --s6-gold-bright: #ffd482;
  --s6-gold-glow: rgba(229, 169, 59, 0.35);

  /* Fondos de Interfaz */
  --s6-bg-dark: #080b11;
  --s6-card-bg: rgba(13, 17, 24, 0.94);
  --s6-card-border: #1e293b;
}

/* Base Body & Fluid Wrapper */
body {
  overflow-x: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #06090e !important;
  background-image: linear-gradient(180deg, rgba(6, 9, 14, 0.15) 0%, rgba(6, 9, 14, 0.75) 550px, #06090e 850px), url(../img/fon-bg-top.jpg) !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-size: 1920px auto !important;
  background-attachment: scroll !important;
  color: #e2e8f0 !important;
  font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif !important;
}

.wrapper {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
  box-sizing: border-box !important;
}

/* ==========================================================================
   2. Header, Barra de Navegación & Acentos Tricolor
   ========================================================================== */
header {
  position: relative !important;
  min-height: 540px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Top Panel Sticky/Glassmorphism con franja tricolor */
.top-panel {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0 25px !important;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.97) 0%, rgba(10, 15, 23, 0.88) 100%) !important;
  border-bottom: 2px solid transparent !important;
  border-image: linear-gradient(90deg, var(--py-red) 33%, #ffffff 33%, #ffffff 66%, var(--py-blue) 66%) 1 !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  z-index: 100 !important;
}

.top-panel .menu {
  display: flex !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.top-panel .menu li a {
  color: var(--py-white-dim) !important;
  font-weight: 600 !important;
  letter-spacing: 0.6px !important;
  font-size: 14px !important;
  padding: 0 20px !important;
  height: 65px !important;
  line-height: 65px !important;
  transition: all 0.25s ease !important;
}

.top-panel .menu li a:hover {
  color: #ffffff !important;
  text-shadow: 0 0 12px var(--py-blue-bright);
}

.topPanel__buttons {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* Botón Login (Azul S6) */
.topPanel__buttons .button,
a.open_modal.button {
  background: linear-gradient(135deg, var(--py-blue-bright) 0%, var(--py-blue) 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 15px var(--py-blue-glow) !important;
  padding: 10px 22px !important;
  font-weight: bold !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.topPanel__buttons .button:hover,
a.open_modal.button:hover {
  background: linear-gradient(135deg, #2f79ff 0%, #0045d0 100%) !important;
  box-shadow: 0 6px 20px rgba(29, 100, 232, 0.7) !important;
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* Botón Registro (Rojo Paraguay) */
.topPanel__buttons .buttonDark {
  background: linear-gradient(135deg, var(--py-red-bright) 0%, var(--py-red) 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 4px 15px var(--py-red-glow) !important;
  padding: 10px 22px !important;
  width: auto !important;
  height: auto !important;
  top: 0 !important;
  font-weight: bold !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.topPanel__buttons .buttonDark:hover {
  background: linear-gradient(135deg, #ff5b4f 0%, #b81f14 100%) !important;
  box-shadow: 0 6px 20px rgba(213, 43, 30, 0.7) !important;
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* Logo Central */
.logo {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin: 110px auto 35px auto !important;
  text-align: center !important;
  z-index: 5 !important;
}

.logo a img {
  max-width: 330px !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  display: block !important;
  filter: drop-shadow(0px 10px 25px rgba(0,0,0,0.9)) drop-shadow(0 0 20px rgba(213, 43, 30, 0.35));
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.35s ease;
}

.logo a img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0px 12px 30px rgba(0,0,0,0.95)) drop-shadow(0 0 28px rgba(213, 43, 30, 0.65));
}

/* ==========================================================================
   3. Fast Buttons & Info Bars (Tricolor Moderno)
   ========================================================================== */
.fast-button {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-bottom: 25px !important;
}

/* Botón de Descarga Grande */
.download-block {
  flex: 1 1 360px !important;
  height: 125px !important;
  background: linear-gradient(135deg, #180908 0%, #290d0b 45%, #100605 100%) !important;
  border: 1px solid #731e18 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(213, 43, 30, 0.25) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.download-block::before {
  content: "\f019";
  font-family: "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: var(--py-red-bright);
  text-shadow: 0 0 15px var(--py-red-glow);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.download-block:hover {
  border-color: var(--py-red-bright) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.75), 0 0 25px rgba(213, 43, 30, 0.45) !important;
}

.download-block:hover::before {
  transform: translateY(-50%) scale(1.1);
  color: #ffffff;
}

.download-block a {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  height: 100% !important;
  padding-left: 110px !important;
  text-decoration: none !important;
}

.download-block a span {
  font-size: 26px !important;
  font-weight: 800 !important;
  background: linear-gradient(90deg, #ffffff, #ffb3ac) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: 1px !important;
}

.download-block a p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 13px !important;
  color: var(--py-white-dim) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
}

/* Bloques de Estado y Rates */
.status-block {
  flex: 1 1 360px !important;
  height: 125px !important;
  margin-left: 0 !important;
  background: linear-gradient(135deg, #0c121d 0%, #060a12 100%) !important;
  border: 1px solid #1c2b42 !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5) !important;
  box-sizing: border-box !important;
}

.server-bottom {
  padding: 22px 25px 0 25px !important;
  background: none !important;
  height: auto !important;
  color: var(--py-white) !important;
}

.server-bottom span:last-child {
  color: #60a5fa !important;
  font-weight: bold !important;
}

.server {
  padding: 22px 25px 0 25px !important;
  background: none !important;
  height: auto !important;
}

.server .server-name {
  color: #ffffff !important;
  font-weight: bold !important;
}

.progress-bar-webengine {
  background: #090f19 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  border: 1px solid #1e2f47 !important;
  margin: 10px 0 !important;
}

.progress-bar-webengine span {
  background: linear-gradient(90deg, var(--py-blue-bright) 0%, #38bdf8 100%) !important;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5) !important;
  border-radius: 4px !important;
}

/* Barra de Conectados */
.last-news-top {
  background: linear-gradient(90deg, rgba(20, 10, 10, 0.85) 0%, rgba(13, 20, 35, 0.85) 50%, rgba(20, 10, 10, 0.85) 100%) !important;
  border: 1px solid #334155 !important;
  border-radius: 8px !important;
  margin-bottom: 22px !important;
  padding: 16px 25px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.45) !important;
}

.last-news-top h4 {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  margin: 0 10px 0 0 !important;
  letter-spacing: 0.5px !important;
}

.last-news-top .status-online {
  color: #4ade80 !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  text-shadow: 0 0 12px rgba(74, 222, 128, 0.6) !important;
}

/* ==========================================================================
   4. REDISEÑO TOTAL DE WIDGETS Y RANKINGS (100% CSS PURO / NO IMÁGENES ROTAS)
   ========================================================================== */
.block-widget {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-top: 15px !important;
}

/* Base Común de las Tarjetas de Rankings */
.widget-fon, 
.widget-fon-guilds, 
.widget-fon-discussions {
  flex: 1 1 360px !important;
  width: auto !important;
  height: auto !important;
  min-height: 520px !important;
  margin-left: 0 !important;
  background: var(--s6-card-bg) !important;
  border: 1px solid var(--s6-card-border) !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65) !important;
  overflow: hidden !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
}

/* Decoración superior temática para cada tarjeta */
.widget-fon {
  /* Top Level (Acento Azul Paraguay) */
  border-top: 3px solid var(--py-blue-bright) !important;
}
.widget-fon:hover {
  border-color: var(--py-blue-bright) !important;
  transform: translateY(-4px) !important;
}

.widget-fon-discussions {
  /* Top Resets (Acento Rojo Paraguay) */
  border-top: 3px solid var(--py-red-bright) !important;
}
.widget-fon-discussions:hover {
  border-color: var(--py-red-bright) !important;
  transform: translateY(-4px) !important;
}

.widget-fon-guilds {
  /* Top Guilds (Acento Dorado S6) */
  border-top: 3px solid var(--s6-gold) !important;
}
.widget-fon-guilds:hover {
  border-color: var(--s6-gold) !important;
  transform: translateY(-4px) !important;
}

.block-players {
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* Cabecera del Widget */
.block-widget-title {
  padding-top: 5px !important;
  padding-bottom: 16px !important;
  font-size: 20px !important;
  text-align: center !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-bottom: 16px !important;
  position: relative !important;
}

.widget-fon .block-widget-title {
  color: #60a5fa !important;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

.widget-fon-discussions .block-widget-title {
  color: #f87171 !important;
  text-shadow: 0 0 15px rgba(248, 113, 113, 0.4);
}

.widget-fon-guilds .block-widget-title {
  color: var(--s6-gold) !important;
  text-shadow: 0 0 15px rgba(229, 169, 59, 0.4);
}

/* Lista del Ranking */
.top-block {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 0 15px 0 !important;
  list-style: none !important;
  flex-grow: 1 !important;
}

.top-title {
  color: #94a3b8 !important;
  display: flex !important;
  align-items: center !important;
  font-size: 13px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 8px 12px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border-radius: 6px !important;
  margin-bottom: 6px !important;
}

.top-list {
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  font-size: 14px !important;
  color: #cbd5e1 !important;
  padding: 0 12px !important;
  border-radius: 6px !important;
  margin-bottom: 4px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  transition: all 0.2s ease !important;
}

.top-list:hover {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  margin: 0 0 4px 0 !important;
  padding: 0 12px !important;
  transform: translateX(4px);
}

.top-list a {
  color: #f1f5f9 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.top-list a:hover {
  color: #ffffff !important;
}

.top-block .top-number {
  width: 32px !important;
  font-weight: bold !important;
  color: #94a3b8 !important;
}

.top-list:nth-child(2) .top-number {
  color: #fbbf24 !important; /* Oro para #1 */
}
.top-list:nth-child(3) .top-number {
  color: #cbd5e1 !important; /* Plata para #2 */
}
.top-list:nth-child(4) .top-number {
  color: #d97706 !important; /* Bronce para #3 */
}

.top-block .top-flag {
  width: 30px !important;
  display: flex !important;
  align-items: center !important;
}

.top-block .top-name {
  flex: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.top-block .top-lvl {
  width: 60px !important;
  text-align: right !important;
  color: #38bdf8 !important;
  font-weight: 600 !important;
}

.top-block .top-Res {
  width: 70px !important;
  text-align: right !important;
  color: #f87171 !important;
  font-weight: 700 !important;
}

.top-block.guild .score {
  width: 90px !important;
  text-align: right !important;
  color: var(--s6-gold) !important;
  font-weight: 700 !important;
  padding-left: 0 !important;
}

/* Botón inferior 'Ver Ranking' */
.buttons-small {
  margin-top: auto !important;
  display: flex !important;
  justify-content: center !important;
}

.button-small {
  height: 42px !important;
  width: 100% !important;
  max-width: 220px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  letter-spacing: 0.8px !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
}

.widget-fon .button-small:hover {
  background: var(--py-blue) !important;
  border-color: var(--py-blue-bright) !important;
  box-shadow: 0 4px 15px var(--py-blue-glow) !important;
  color: #ffffff !important;
}

.widget-fon-discussions .button-small:hover {
  background: var(--py-red) !important;
  border-color: var(--py-red-bright) !important;
  box-shadow: 0 4px 15px var(--py-red-glow) !important;
  color: #ffffff !important;
}

.widget-fon-guilds .button-small:hover {
  background: var(--s6-gold-dark) !important;
  border-color: var(--s6-gold) !important;
  box-shadow: 0 4px 15px var(--s6-gold-glow) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   5. Contenedor de Páginas Internas & Módulos
   ========================================================================== */
.page-content {
  background: var(--s6-card-bg) !important;
  border: 1px solid var(--s6-card-border) !important;
  border-radius: 10px !important;
  padding: 30px !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6) !important;
  margin-bottom: 35px !important;
}

/* Footer S6 */
.footer-block-t {
  background: rgba(10, 14, 20, 0.9) !important;
  border-top: 1px solid #1e293b !important;
  border-radius: 8px !important;
  padding: 20px 0 !important;
  margin-top: 25px !important;
}

.f-menu {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.f-menu li a {
  color: #94a3b8 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.f-menu li a:hover {
  color: var(--py-red-bright) !important;
}

/* ==========================================================================
   6. Breakpoints Responsivos (Móviles y Tablets)
   ========================================================================== */
@media (max-width: 992px) {
  .top-panel {
    flex-direction: column !important;
    padding: 15px 10px !important;
  }
  
  .top-panel .menu {
    justify-content: center !important;
  }
  
  .top-panel .menu li a {
    height: 45px !important;
    line-height: 45px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
  }
  
  .topPanel__buttons {
    margin-top: 10px !important;
  }
  
  .fast-button {
    flex-direction: column !important;
  }
  
  .block-widget {
    flex-direction: column !important;
  }
}

@media (max-width: 768px) {
  .smog {
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .mobile-nav-toggle {
    display: block !important;
    font-size: 22px;
    color: #ffffff;
    padding: 10px 14px;
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 15px;
    z-index: 200;
    background: rgba(8, 12, 18, 0.9);
    border-radius: 6px;
    border: 1px solid #334155;
  }
  
  .top-panel {
    display: none !important;
    position: fixed !important;
    top: 55px !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(8, 12, 18, 0.98) !important;
    flex-direction: column !important;
    padding: 20px 10px !important;
  }
  
  .top-panel.active {
    display: flex !important;
  }
  
  .top-panel .menu {
    flex-direction: column !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .top-panel .menu li a {
    height: 40px !important;
    line-height: 40px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }
  
  .logo a img {
    max-width: 240px !important;
  }
  
  .download-block a span {
    font-size: 21px !important;
  }
  
  .page-content {
    padding: 15px !important;
  }
}

/* ==========================================================================
   7. REDISEÑO TOTAL: EVENTOS DISPONIBLES S6
   ========================================================================== */
.events-s6-container {
  margin-top: 30px !important;
  margin-bottom: 35px !important;
  background: rgba(12, 16, 24, 0.9) !important;
  border: 1px solid #1e293b !important;
  border-radius: 12px !important;
  padding: 25px 20px 30px 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

.events-s6-header {
  text-align: center !important;
  margin-bottom: 25px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-bottom: 18px !important;
}

.events-s6-title {
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 15px rgba(213, 43, 30, 0.5) !important;
}

.events-s6-title i {
  color: var(--py-red-bright) !important;
  margin-right: 8px !important;
}

.events-s6-subtitle {
  color: #94a3b8 !important;
  font-size: 13px !important;
  margin-top: 6px !important;
}

/* Slick Slider Overrides for Events */
.events-s6-slider.center {
  margin: 0 -10px !important;
}

.event-s6-card-wrapper {
  padding: 10px !important;
  outline: none !important;
}

.event-s6-card {
  background: #090e17 !important;
  border: 1px solid #1e293b !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.event-s6-card:hover {
  border-color: var(--py-blue-bright) !important;
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7), 0 0 20px var(--py-blue-glow) !important;
}

.event-s6-thumb {
  position: relative !important;
  width: 100% !important;
  height: 160px !important;
  overflow: hidden !important;
}

.event-s6-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.event-s6-card:hover .event-s6-thumb img {
  transform: scale(1.08) !important;
}

.event-s6-badge {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
  z-index: 2 !important;
}

.badge-danger {
  background: linear-gradient(135deg, var(--py-red-bright) 0%, var(--py-red) 100%) !important;
  color: #ffffff !important;
}

.badge-primary {
  background: linear-gradient(135deg, var(--py-blue-bright) 0%, var(--py-blue) 100%) !important;
  color: #ffffff !important;
}

.badge-warning {
  background: linear-gradient(135deg, var(--s6-gold-bright) 0%, var(--s6-gold) 100%) !important;
  color: #000000 !important;
}

.event-s6-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(6, 9, 14, 0.75) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.event-s6-card:hover .event-s6-overlay {
  opacity: 1 !important;
}

.event-s6-btn {
  background: linear-gradient(135deg, var(--py-red-bright) 0%, var(--py-red) 100%) !important;
  color: #ffffff !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 12px rgba(213, 43, 30, 0.6) !important;
  transition: transform 0.2s ease !important;
}

.event-s6-btn:hover {
  transform: scale(1.05) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.event-s6-body {
  padding: 16px 14px !important;
  text-align: center !important;
  background: rgba(10, 14, 22, 0.95) !important;
}

.event-s6-name {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin: 0 0 6px 0 !important;
  letter-spacing: 0.4px !important;
}

.event-s6-desc {
  color: #94a3b8 !important;
  font-size: 12px !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  min-height: 34px !important;
}

/* Desactivar gradientes viejos y rígidos de slick */
.slick-list:before,
.slick-list:after {
  display: none !important;
}

/* ==========================================================================
   8. COUNTDOWN GRAN APERTURA S6 (Estilo Épico Tricolor)
   ========================================================================== */
.opening-countdown-container {
  margin: 0 auto 35px auto !important;
  text-align: center !important;
  z-index: 10 !important;
  position: relative !important;
  background: rgba(8, 12, 18, 0.82) !important;
  border: 1px solid #1e2b40 !important;
  border-top: 2px solid var(--py-red) !important;
  border-bottom: 2px solid var(--py-blue-bright) !important;
  border-radius: 12px !important;
  padding: 16px 28px 20px 28px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75), inset 0 0 25px rgba(29, 100, 232, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  max-width: 680px !important;
  width: 95% !important;
}

.opening-badge {
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(213, 43, 30, 0.2) !important;
  border: 1px solid rgba(213, 43, 30, 0.5) !important;
  color: #ffb8b3 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 4px 14px !important;
  border-radius: 20px !important;
  margin-bottom: 8px !important;
}

.pulse-dot {
  width: 8px !important;
  height: 8px !important;
  background-color: var(--py-red-bright) !important;
  border-radius: 50% !important;
  display: inline-block !important;
  margin-right: 8px !important;
  box-shadow: 0 0 10px var(--py-red-bright) !important;
  animation: pulseAnim 1.4s infinite !important;
}

@keyframes pulseAnim {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(255, 71, 56, 0.7); }
  70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 8px rgba(255, 71, 56, 0); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(255, 71, 56, 0); }
}

.opening-date-tag {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 15px !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

.countdown-timer-grid {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.timer-box {
  background: linear-gradient(180deg, #101826 0%, #080c14 100%) !important;
  border: 1px solid #23344d !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  min-width: 75px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.timer-value {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1 !important;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 0 15px rgba(29, 100, 232, 0.5) !important;
  font-family: monospace, 'Segoe UI', Tahoma, sans-serif !important;
}

.timer-label {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: #64748b !important;
  letter-spacing: 1.2px !important;
  margin-top: 5px !important;
  text-transform: uppercase !important;
}

.timer-sep {
  font-size: 24px !important;
  font-weight: bold !important;
  color: var(--py-red-bright) !important;
  animation: blinkSep 1s infinite !important;
  line-height: 1 !important;
}

@keyframes blinkSep {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* Estado: SERVIDOR ONLINE */
.opening-server-online {
  padding: 15px !important;
}

.server-online-glow {
  font-size: 28px !important;
  font-weight: 900 !important;
  color: #22c55e !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.7) !important;
  animation: glowOnline 1.8s infinite alternate !important;
}

@keyframes glowOnline {
  from { text-shadow: 0 0 10px rgba(34, 197, 94, 0.4); }
  to { text-shadow: 0 0 25px rgba(34, 197, 94, 0.9), 0 0 40px rgba(34, 197, 94, 0.5); }
}

.server-online-sub {
  color: #e2e8f0 !important;
  font-size: 14px !important;
  margin-top: 6px !important;
  letter-spacing: 0.5px !important;
}

@media (max-width: 600px) {
  .opening-countdown-container {
    padding: 14px 10px 18px 10px !important;
  }
  .timer-box {
    min-width: 58px !important;
    padding: 8px 6px !important;
  }
  .timer-value {
    font-size: 24px !important;
  }
  .timer-label {
    font-size: 9px !important;
  }
  .timer-sep {
    font-size: 18px !important;
  }
  .opening-date-tag {
    font-size: 12px !important;
  }
  .server-online-glow {
    font-size: 22px !important;
  }
}
