/* BANNER */
.custom-banner {
  background: url('img/wallpaper/banner1.png') no-repeat center center;
  background-size: cover;
  height: 300px;
  position: relative;
  margin: 0;
  padding: 0;
}

.banner-bottom-border {
  height: 80px;
  background: url('img/wallpaper/border.png') no-repeat center bottom;
  background-size: 100% 100%;
  width: 100%;
}

.custom-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner-title, .banner-subtitle {
  margin: 0;
  padding: 0;
  color: goldenrod;
  text-align: left;
}

.custom-banner .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* Centrado vertical */
  align-items: flex-start;   /* Alinea a la izquierda */
  padding-left: 180px;       /* Ajusta según el ancho del logo */
}

/* RANKING PLAYERS */

/* sección de ranking */
.ranking {
  background-color:rgb(22, 22, 22);
  border-radius: 5px;
  padding: 15px;
}

.ranking table {
  background-color: #2c2c2c; 
  color: #ddd;             
  border: 1px solid #333;   
  width: 100%;
  margin: 0;
  font-size: 0.9em;
}

.ranking table thead th {
  background-color: #222;   /* Encabezado más oscuro */
  color: goldenrod;           /* Dorado suave en el texto */
  border-bottom: 2px solid #444;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.ranking table tbody tr {
  border-bottom: 1px solid #444;
}

.ranking table tbody tr:hover {
  background-color: #2c2c2c; /* Efecto hover en filas */
}

.ranking table td, 
.ranking table th {
  padding: 8px;
  vertical-align: middle; /* Centra la imagen en la celda */
}

/* Ajusta el tamaño de la imagen de clase en la tabla */
.ranking table img {
  width: 32px;
  height: auto;
  margin-right: 5px;
  vertical-align: middle;
}

/* Botón "Ver más" */
.ranking a.btn.btn-primary {
  background-color: #f0c674;
  border: none;
  color: #000;
  font-weight: 600;
  margin: 2px;
  margin-top: 5px;
  float: right;
}
.ranking a.btn.btn-primary:hover {
  background-color: goldenrod;
  color: #000;
}
/* Tabla de Guild Ranking con estilo uniforme */
.guild-ranking-table {
    background-color: #2c2c2c;
    color: #ddd;
    border: 1px solid #333;
    width: 100%;
    margin: 0;
    font-size: 0.9em;
    border-radius: 5px;
    overflow: hidden;
}

.guild-ranking-table thead th {
    background-color: #222;
    color: goldenrod;
    border-bottom: 2px solid #444;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    padding: 8px;
}

.guild-ranking-table tbody tr {
    border-bottom: 1px solid #444;
}

.guild-ranking-table tbody tr:hover {
    background-color: #2c2c2c;
}

.guild-ranking-table td {
    padding: 8px;
    vertical-align: middle;
}

/* Imagen de clase */
.guild-ranking-table img {
    width: 32px;
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
}
.bg-dark-5 {
    background-color: transparent !important;
}

.clock{
    font-size: 12px !important;
    color:whitesmoke !important;
    text-shadow:none !important;
    display:inline-block;
    min-width:180px;
    font-family:'Courier New', monospace;
    font-variant-numeric:tabular-nums;
    white-space:nowrap;
}

.info-box{
    flex: 0 0 280px; 
    background:rgba(185,150,25,.07);      /* sutil dorado oscuro */
    border:1px solid #3a2d0a;             /* marco oro quemado   */
    border-radius:6px;
    padding:14px 18px;
    font-family:'Roboto Condensed',sans-serif;
    margin:0 0 35px 40px;                 /* mismo sangrado que tus textos */
}

/* párrafos */
.info-box p{
    margin:8px 0;
    font-size:15px;
    color:#bfa76a;                    
}

/* valores (hora, ip, país) */
.info-box span{
    color:#ffd85b;                       
    font-weight:700;
    text-shadow:none !important;         
}

/* iconos (Font Awesome) */
.info-box i{
    margin-right:6px;
    color:#d2b48c;
}
#localTime{
    color:#ffd85b !important;     
    font-weight:700;
    text-shadow:none;
}

