/* Fondo general */
body {
    background: #0f1923;
    color: #fff;
    font-family: 'Oxanium', 'Tektur', Arial, sans-serif;
}

/* Sección de rangos */
.rangos-section {
    margin: 40px auto 0 auto;
    max-width: 1100px;
    padding: 32px 16px 24px 16px;
    background: rgba(24,24,24,0.95);
    border-radius: 18px;
    box-shadow: 0 8px 32px #000a;
}

.rangos-section h2 {
    text-align: center;
    font-size: 2.3em;
    font-family: 'Tektur', Arial, sans-serif;
    color: #ff4655; /* Cambiado a rojo */
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #000a;
}

/* Tablas */
.rangos-table-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    max-width: 650px;
    margin: 0 auto;
}

.rangos-table, .especialista-table {
    width: 100%;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #232323;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px #0008;
    margin-bottom: 0;
    font-size: 0.92em;
}

/* Cabeceras principales */
.rangos-table thead tr th,
.especialista-table thead tr th {
    font-size: 1.35em;
    font-family: 'Tektur', Arial, sans-serif;
    font-weight: 700;
    padding: 18px 0 18px 0;
    border-bottom: 4px solid #222;
    background: #232323;
    color: #181818;
    letter-spacing: 1px;
}

.rangos-table thead tr th.cadete {
    background: #1eeaff;
    color: #181818;
}
.rangos-table thead tr th.teniente {
    background: #00bfff;
    color: #181818;
}
.rangos-table thead tr th.comandante {
    background: #0066ff;
    color: #fff;
}

.especialista-table thead tr th {
    background: #181818;
    color: #181818;
}
.especialista-table thead tr th.thaumiel {
    background: #3fffc2;
    color: #181818;
}
.especialista-table thead tr th.potato {
    background: #ffe066;
    color: #181818;
}
.especialista-table thead tr th.master {
    background: #ffb347;
    color: #181818;
}
.especialista-table thead tr th.king {
    background: #ff6666;
    color: #fff;
}

/* Celdas */
.rangos-table td, .rangos-table th,
.especialista-table td, .especialista-table th {
    border: 2.5px solid #bfae9b;
    text-align: center;
    padding: 8px 4px;
    font-size: 1em;
    background: #fff;
    color: #181818;
}

.rangos-table tbody tr td:first-child,
.especialista-table tbody tr td:first-child {
    background: #bdb8e9;
    color: #181818;
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: 1px;
    border-left: 0;
}

.rangos-table tbody tr td:not(:first-child) {
    background: #fff;
    color: #181818;
    font-weight: 700;
}

.especialista-table tbody tr td:not(:first-child) {
    background: #fff;
    color: #181818;
    font-weight: 700;
}

/* Descuentos y etiquetas */
.desc {
    font-size: 0.85em;
    color: #555;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.incluye-guardia {
    display: inline-block;
    margin-top: 6px;
    background: #d32f2f;
    color: #fff;
    font-size: 0.95em;
    font-weight: bold;
    padding: 2px 10px 2px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0004;
    letter-spacing: 0.5px;
}

/* Nota inferior */
.rangos-nota {
    font-size: 1.05em;
    color: #fff;
    background: #181818e0;
    border-radius: 8px;
    margin-top: 18px;
    padding: 10px 18px;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 2px 8px #000a;
    border: 1.5px solid #bfae9b;
}

/* Sección de métodos */
.metodos-section {
    margin: 40px auto 0 auto;
    max-width: 900px;
    padding: 28px 16px 20px 16px;
    background: rgba(24,24,24,0.97);
    border-radius: 18px;
    box-shadow: 0 8px 32px #000a;
    text-align: center;
}

.metodos-section h2 {
    color: #ff4655;
    font-family: 'Tektur', Arial, sans-serif;
    font-size: 2em;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #000a;
}

.metodos-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.metodo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #232323;
    border-radius: 12px;
    padding: 18px 24px;
    box-shadow: 0 2px 12px #0006;
    border: 2.5px solid #bfae9b;
    min-width: 120px;
    transition: transform 0.15s;
}
.metodo:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 6px 24px #000a;
}
.metodo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 10px;
    background: transparent;
    border-radius: 12px;
    padding: 0;
    box-shadow: none;
    filter: none;
    display: block;
    border: none; 
    margin-left: auto;
    margin-right: auto;
}
.metodo span {
    color: #fff;
    font-family: 'Tektur', Arial, sans-serif;
    font-size: 1.1em;
    margin-top: 4px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.metodos-nota {
    font-size: 1em;
    color: #fff;
    background: #181818e0;
    border-radius: 8px;
    margin-top: 12px;
    padding: 8px 14px;
    text-align: center;
    font-weight: 600;
    border: 1.5px solid #bfae9b;
}

/* Indicador de desplazamiento */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 24px 0 12px 0;
    animation: bounce 2s infinite;
    color: #ff4655;
    font-family: 'Tektur', Arial, sans-serif;
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px #000a;
}
.scroll-indicator i {
    font-size: 2.2em;
    margin-top: 6px;
    color: #ff4655;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0);}
    50% { transform: translateY(10px);}
}

/* Botón de método */
.metodo-btn {
    margin-top: 10px;
    display: inline-block;
    background: #ff4655;
    color: #fff;
    font-family: 'Tektur', Arial, sans-serif;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1em;
    box-shadow: 0 2px 8px #0004;
    transition: background 0.2s, transform 0.2s;
}
.metodo-btn:hover {
    background: #c72c3b;
    transform: translateY(-2px) scale(1.04);
}
.nota-paysafecard {
    display: block;
    margin-top: 4px;
    font-size: 0.8em !important;
    color: #ff4655;
    font-family: 'Oxanium', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.1px;
    opacity: 0.85;
    text-align: center;
}
.nota-twitch {
    display: block;
    margin-top: 4px;
    font-size: 0.8em !important;
    color: #ff4655;
    font-family: 'Oxanium', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.1px;
    opacity: 0.85;
    text-align: center;
}
/* Responsive */
@media (max-width: 900px) {
    .rangos-table, .especialista-table {
        font-size: 0.95em;
        max-width: 100%;
    }
    .rangos-section {
        padding: 10px 2vw 18px 2vw;
    }
}

@media (max-width: 700px) {
    .metodos-container {
        gap: 18px;
    }
    .metodo {
        padding: 12px 8px;
        min-width: 90px;
    }
    .metodo img {
        width: 38px;
        height: 38px;
        padding: 3px;
    }
    .metodos-section h2 {
        font-size: 1.2em;
    }
}

@media (max-width: 600px) {
    .rangos-table thead tr th,
    .especialista-table thead tr th {
        font-size: 1em;
        padding: 10px 0;
    }
    .rangos-table td, .rangos-table th,
    .especialista-table td, .especialista-table th {
        padding: 10px 4px;
        font-size: 0.98em;
    }
    .rangos-section h2 {
        font-size: 1.2em;
    }
}

.main-footer-separator {
    border: none;
    border-top: 2px solid #bfae9b;
    margin: 48px auto 32px auto;
    width: 80%;
    opacity: 0.25;
}