@font-face {
    font-family: 'Neue Helvetica Pro';
    src: url('../fonts/NeueHelveticaPro-Thin.woff2') format('woff2'),
         url('../fonts/NeueHelveticaPro-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding-top: 10%;
}

/* Estilos para el logo */
.logo {
    position: fixed;
    top: 20px;
    left: 20px; /* en vez de 50% */
    transform: none; /* quitamos el centrado */
    z-index: 10;
    width: 330px; /* ajusta el tamaño según tu diseño */
}

.logo img {
    width: 100%;
    height: auto;
}

/* Estilos para la descripción central */
.central-description {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 80%;
    max-width: 1000px;
    text-align: center;
}

.description-container {
    background-color: rgba(0, 0, 0, 0.2); /* Fondo negro semi-transparente */
    backdrop-filter: blur(5px); /* Desenfoque del fondo */
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.description-text {
    color: white;
    font-family: 'Neue Helvetica Pro', 'Inter', sans-serif;
    font-weight: 100;
    font-size: 2.5rem;
    line-height: 1.3;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    opacity: 0.9;
}

.description-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Neue Helvetica Pro', 'Inter', sans-serif;
    font-weight: 100;
    font-size: 1.2rem;
    margin-top: 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Estilos para los iconos sociales */
.social-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    color: white;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
    transform: scale(1.1) translateX(-5px);
    background: rgba(25, 25, 35, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Estilos para los botones modales */
.modal-buttons {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 1000;
}

.modal-button {
    display: flex;
    align-items: center;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    min-width: 160px;
}

.modal-button:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    background: rgba(15, 15, 25, 0.9);
}

.modal-button i {
    margin-right: 15px;
    font-size: 22px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-button span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.registro-btn {
    border-left-color: #4CAF50;
}

.registro-btn i {
    background-color: rgba(76, 175, 80, 0.15);
}

.descarga-btn {
    border-left-color: #2196F3;
}

.descarga-btn i {
    background-color: rgba(33, 150, 243, 0.15);
}

.ranking-btn {
    border-left-color: #FFC107;
}

.ranking-btn i {
    background-color: rgba(255, 193, 7, 0.15);
}

/* Estilos para los modales */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.97), rgba(5, 5, 10, 0.95));
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    position: relative;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.4);
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-title i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.registro-modal .modal-title i {
    background-color: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
}

.descarga-modal .modal-title i {
    background-color: rgba(33, 150, 243, 0.15);
    color: #2196F3;
}

.ranking-modal .modal-title i {
    background-color: rgba(255, 193, 7, 0.15);
    color: #FFC107;
}

.close-modal {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
    color: rgba(255, 255, 255, 1);
}

.modal-body {
    padding: 30px 25px;
    min-height: 150px;
    background: rgba(10, 10, 15, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

/* Estilos para el botón de YouTube */
.youtube-button {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.youtube-box {
    display: flex;
    align-items: center;
    background: rgba(32, 32, 36, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.youtube-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.youtube-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FF0000;
    color: white;
    font-size: 24px;
}

.youtube-text {
    padding: 0 15px;
    font-weight: 600;
    color: white;
    font-size: 14px;
    white-space: nowrap;
}

.youtube-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 50px;
    background-color: rgba(255, 0, 0, 0.1);
    color: #FF0000;
    font-size: 24px;
    transition: all 0.2s ease;
}

.youtube-play:hover {
    background-color: rgba(255, 0, 0, 0.2);
}

/* Estilos para el indicador de estado del servidor */
.server-status {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.status-box {
    display: flex;
    align-items: center;
    background: rgba(32, 32, 36, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.status-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 24px;
}

.status-icon.online {
    background-color: #4CAF50;
}

.status-icon.offline {
    background-color: #F44336;
}

.status-text {
    padding: 0 15px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.status-label {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.users-count {
    font-size: 12px;
    opacity: 0.8;
    white-space: nowrap;
}

.status-state {
    font-weight: 700;
}

.status-refresh {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 18px;
    transition: all 0.2s ease;
}

.status-refresh:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Estilos para el formulario de registro */
.form-group {
    margin-bottom: 20px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-with-icon:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.input-with-icon input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.input-with-icon input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-with-icon input:focus {
    outline: none;
}

.register-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.register-button:hover {
    background: linear-gradient(135deg, #5BBD60, #3C9142);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.register-button:active {
    transform: translateY(0);
}

/* Estilos adicionales para el formulario */
.field-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    display: block;
    margin-top: 5px;
    padding-left: 10px;
}

.form-message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
}

.message-error {
    background-color: rgba(244, 67, 54, 0.1);
    border-left: 3px solid #F44336;
    color: #F44336;
}

.message-success {
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 3px solid #4CAF50;
    color: #4CAF50;
}

/* Estilos para la validación en tiempo real de usuario */
.availability-indicator {
    margin-top: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.3s ease;
}

.availability-indicator i {
    font-size: 14px;
}

.availability-indicator.checking {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.availability-indicator.available {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.availability-indicator.unavailable {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.availability-indicator.error {
    background-color: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estilos para las opciones de descarga */
.download-intro {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 16px;
}

.download-option {
    display: flex;
    align-items: center;
    background: rgba(10, 10, 15, 0.4);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.download-option:hover {
    background: rgba(15, 15, 20, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    flex-shrink: 0;
}

.download-icon.mediafire {
    background: rgba(0, 112, 240, 0.2);
    color: #0070F0;
}

.download-icon.mega {
    background: rgba(217, 0, 0, 0.2);
    color: #D90000;
}

.download-icon.gdrive {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.download-info {
    flex: 1;
    padding-right: 15px;
}

.download-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.download-description {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.download-size {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 15px;
    flex-shrink: 0;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mediafire-btn {
    background: linear-gradient(135deg, #0070F0, #0058B7);
}

.mediafire-btn:hover {
    background: linear-gradient(135deg, #0080FF, #0065D1);
}

.mega-btn {
    background: linear-gradient(135deg, #D90000, #A00000);
}

.mega-btn:hover {
    background: linear-gradient(135deg, #F00000, #C00000);
}

.gdrive-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.gdrive-btn:hover {
    background: linear-gradient(135deg, #5BBD60, #3C9142);
}

.download-note {
    margin-top: 20px;
    padding: 10px 15px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #FFC107;
    border-radius: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.download-note i {
    color: #FFC107;
    margin-right: 5px;
}

/* Estilos para el ranking */
.ranking-container {
    width: 100%;
}

.ranking-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: #FFC107;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ranking-table-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(10, 10, 15, 0.4);
}

.ranking-table thead {
    background: rgba(15, 15, 20, 0.8);
}

.ranking-table th, 
.ranking-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ranking-table th {
    color: #FFC107;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.ranking-table tbody tr {
    transition: all 0.3s ease;
}

.ranking-table tbody tr:nth-child(even) {
    background: rgba(15, 15, 20, 0.2);
}

.ranking-table tbody tr:hover {
    background: rgba(25, 25, 35, 0.4);
}

/* Estilos para los primeros 3 lugares */
.ranking-table tr.first-place {
    background: rgba(255, 215, 0, 0.1) !important;
    border-left: 3px solid gold;
}

.ranking-table tr.second-place {
    background: rgba(192, 192, 192, 0.1) !important;
    border-left: 3px solid silver;
}

.ranking-table tr.third-place {
    background: rgba(205, 127, 50, 0.1) !important;
    border-left: 3px solid #CD7F32;
}

/* Ancho de columnas */
.position-col {
    width: 10%;
    text-align: center;
}

.name-col {
    width: 45%;
}

.level-col, 
.reset-col {
    width: 20%;
    text-align: center;
}

/* Estilos para el pie de página del ranking */
.ranking-footer {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.update-time {
    color: #FFC107;
    font-weight: 600;
}

/* Estilos para el botón de actualizar ranking */
.refresh-ranking-button {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 10px 15px;
    margin-top: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px auto 0;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.refresh-ranking-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Media queries para dispositivos móviles */
@media (max-width: 768px) {
    .logo {
        width: 300px;
        top: 15px;
    }
    
    .description-container {
        padding: 25px;
    }
    
    .description-text {
        font-size: 1.8rem;
    }
    
    .description-subtext {
        font-size: 1rem;
    }
    
    .modal-button {
        min-width: auto;
        width: 55px;
        padding: 15px;
        border-left: none;
        border-top: 4px solid rgba(255, 255, 255, 0.5);
        justify-content: center;
    }
    
    .modal-button i {
        margin-right: 0;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .modal-button span {
        display: none;
    }
    
    .registro-btn {
        border-top-color: #4CAF50;
    }
    
    .descarga-btn {
        border-top-color: #2196F3;
    }
    
    .ranking-btn {
        border-top-color: #FFC107;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .modal-content {
        width: 95%;
        max-width: 350px;
    }
    
    .modal-title {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .youtube-text {
        display: none;
    }
    
    .youtube-box {
        border-radius: 10px;
    }
    
    .status-text {
        display: none;
    }
    
    .status-box {
        border-radius: 10px;
    }
    
    .input-with-icon input {
        padding: 12px 12px 12px 45px;
        font-size: 14px;
    }
    
    .input-with-icon i {
        left: 12px;
        font-size: 16px;
    }
    
    .register-button {
        padding: 12px;
        font-size: 14px;
    }
    
    .download-option {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    
    .download-icon {
        margin-bottom: 10px;
    }
    
    .download-info {
        width: 100%;
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .download-size {
        margin-bottom: 10px;
    }
    
    .download-button {
        width: 100%;
        padding: 10px;
        justify-content: center;
    }
    
    .ranking-table th, 
    .ranking-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    .ranking-title {
        font-size: 18px;
    }
    
    .position-col {
        width: 15%;
    }
    
    .name-col {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 250px;
        top: 10px;
    }
    
    .description-container {
        padding: 20px;
    }
    
    .description-text {
        font-size: 1.5rem;
    }
    
    .description-subtext {
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .modal-buttons {
        left: 10px;
        gap: 15px;
    }
    
    .social-icons {
        right: 10px;
        gap: 10px;
    }
    
    .modal-button {
        width: 45px;
        height: 45px;
        padding: 0;
        border-radius: 50%;
    }
    
    .modal-button i {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .youtube-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .youtube-play {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .server-status {
        left: 10px;
    }
    
    .status-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .status-refresh {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .ranking-table th, 
    .ranking-table td {
        padding: 8px;
        font-size: 12px;
    }
    
    .position-col .fa-medal {
        display: none;
    }
}

/* Ajustes para animaciones */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Estilos para los nuevos elementos de información del servidor */
.server-info-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 15px;
}

.server-info-box {
    display: flex;
    align-items: center;
    background: rgba(32, 32, 36, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    min-width: 120px;
}

/* Mantenemos el hover para todos */
.server-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.server-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 20px;
}

.exp-box .server-info-icon {
    background-color: #4CAF50;
}

.drop-box .server-info-icon {
    background-color: #2196F3;
}

.web-box .server-info-icon {
    background-color: #FFC107;
}

.server-info-content {
    padding: 0 15px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.server-info-title {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.server-info-value {
    font-size: 12px;
    opacity: 0.8;
    white-space: nowrap;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .server-info-container {
        bottom: 80px;
        flex-direction: column;
        gap: 10px;
        width: calc(100% - 40px);
    }
    
    .server-info-box {
        width: 100%;
        justify-content: center;
    }
    
    .server-info-content {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .server-info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .server-info-title {
        font-size: 13px;
    }
    
    .server-info-value {
        font-size: 11px;
    }
}

/* Solo el web-box tendrá cursor pointer */
.web-box {
    cursor: pointer;
}

/* Estilos para el modal de Redeem Code */
.redeem-modal .modal-header {
    border-bottom-color: rgba(156, 39, 176, 0.3);
}

.redeem-modal .modal-title i {
    background-color: rgba(156, 39, 176, 0.15);
    color: #9C27B0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 10px;
}

.redeem-intro {
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}

.redeem-button {
    display: inline-block;
    background-color: #9C27B0;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.redeem-button:hover {
    background-color: #7B1FA2;
}

.redeem-button i {
    margin-right: 8px;
}

.redeem-note {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #9C27B0;
}

.redeem-note p {
    margin: 0;
}

.redeem-note i {
    color: #9C27B0;
    margin-right: 5px;
}
.guias-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guias-list li {
    margin: 10px 0;
}

.guias-list a {
    color: #FF5722;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.guias-list a:hover {
    color: #e64a19;
}

.guide-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
}

.guide-container h1 {
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FF5722;
    padding-bottom: 10px;
}

.guide-container h2 {
    color: #FF9800;
    margin-top: 20px;
}

.guide-container ul {
    padding-left: 20px;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background: #FF5722;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.back-button:hover {
    background: #e64a19;
}

/* Efecto fade para el iframe */
#guias-frame {
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}

.modal-button {
    padding: 10px;
    font-size: 14px;
    border: 2px solid #ffcc00;   /* Color inicial */
    border-radius: 6px;
    background: #111;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-button:hover {
    box-shadow: 0 0 10px #ffcc00, 0 0 20px #ff9900;
    border-color: #ff9900;  /* Cambia el borde al pasar el mouse */
}

.modal-button {
    position: relative;
    padding: 12px 20px;
    font-size: 14px;
    color: #fff;
    background: #111;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.2s ease;
}

.modal-button:hover {
    transform: scale(1.05);
}


.donacion-opciones {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.donacion-opcion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #222;
}

.donacion-opcion span {
  flex: 1;
  margin-left: 10px;
  color: #fff;
  font-weight: 500;
}

.donacion-button {
  background: linear-gradient(45deg, #E91E63, #FF4081);
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.donacion-button:hover {
  opacity: 0.85;
}

.modal-button {
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.3), 0 0 12px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.3), 0 0 12px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
  }
}

.modal-button {
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Registro (verde) */
.registro-btn {
  border-color: #4CAF50;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.4), 0 0 12px rgba(76, 175, 80, 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.8), 0 0 25px rgba(76, 175, 80, 0.5);
  }
  100% {
    box-shadow: 0 0 6px rgba(76, 175, 80, 0.4), 0 0 12px rgba(76, 175, 80, 0.2);
  }
}

/* Descarga (azul) */
.descarga-btn {
  border-color: #2196F3;
  animation: pulse-blue 2s infinite;
}
@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 6px rgba(33, 150, 243, 0.4), 0 0 12px rgba(33, 150, 243, 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.8), 0 0 25px rgba(33, 150, 243, 0.5);
  }
  100% {
    box-shadow: 0 0 6px rgba(33, 150, 243, 0.4), 0 0 12px rgba(33, 150, 243, 0.2);
  }
}

/* Ranking (dorado) */
.ranking-btn {
  border-color: #FFC107;
  animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.4), 0 0 12px rgba(255, 193, 7, 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.8), 0 0 25px rgba(255, 193, 7, 0.5);
  }
  100% {
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.4), 0 0 12px rgba(255, 193, 7, 0.2);
  }
}

/* Guías (naranja) */
.guias-btn {
  border-color: #FF5722;
  animation: pulse-orange 2s infinite;
}
@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 6px rgba(255, 87, 34, 0.4), 0 0 12px rgba(255, 87, 34, 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.8), 0 0 25px rgba(255, 87, 34, 0.5);
  }
  100% {
    box-shadow: 0 0 6px rgba(255, 87, 34, 0.4), 0 0 12px rgba(255, 87, 34, 0.2);
  }
}

/* Donaciones (rosado) */
.donacion-btn {
  border-color: #E91E63;
  animation: pulse-pink 2s infinite;
}
@keyframes pulse-pink {
  0% {
    box-shadow: 0 0 6px rgba(233, 30, 99, 0.4), 0 0 12px rgba(233, 30, 99, 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.8), 0 0 25px rgba(233, 30, 99, 0.5);
  }
  100% {
    box-shadow: 0 0 6px rgba(233, 30, 99, 0.4), 0 0 12px rgba(233, 30, 99, 0.2);
  }
}

.vip-packages {
  display: flex;
  justify-content: space-around;
  margin: 15px 0;
}

.vip-option {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  width: 30%;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
  transition: transform 0.3s;
  cursor: pointer;
}

.vip-option:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.btn-donar {
  display: block;
  margin: 20px auto;
  padding: 12px 20px;
  background: #E91E63;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-donar:hover {
  background: #c2185b;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
  z-index: 9999;
}

@keyframes fadeIn { from {opacity:0} to {opacity:1} }

.modal-content {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  color: #fff;
  border-radius: 15px;
  width: 90%;
  max-width: 650px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.modal-header h2 {
  color: #E91E63;
}

.close-modal {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}

.close-modal:hover { color: #E91E63; }

.paquetes {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.paquete {
  flex: 1;
  background: #111;
  border: 2px solid #222;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s all;
  position: relative;
}

.paquete:hover {
  transform: translateY(-5px);
  border-color: #E91E63;
  box-shadow: 0 8px 20px rgba(233,30,99,0.5);
}

.paquete.selected {
  border-color: #E91E63;
  box-shadow: 0 8px 20px rgba(233,30,99,0.7);
}

.tag-popular {
  position: absolute;
  top: 10px; right: 10px;
  background: #E91E63;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 5px;
}

.seleccion-text {
  color: #E91E63;
  font-weight: bold;
  margin-bottom: 15px;
}

.metodos {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.metodos button {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}

.metodos button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.metodo.paypal { background: #003087; }
.metodo.banco { background: #2196F3; }
.metodo.binance { background: #F3BA2F; color:#000; }

input[type="text"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
}

input[type="text"]::placeholder { color: #aaa; }


/* Modal general */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease forwards;
}

.modal-content {
  background: #1a1a1a;
  margin: 5% auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 550px;
  color: #fff;
  animation: slideIn 0.3s ease forwards;
  box-shadow: 0 0 20px rgba(233,30,99,0.6);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #E91E63;
}

.close-modal {
  cursor: pointer;
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.close-modal:hover {
  transform: rotate(90deg);
  color: #ff4081;
}

/* Paquetes VIP */
.paquete {
  flex: 1;
  padding: 15px;
  background: linear-gradient(145deg, #111, #222);
  border: 2px solid #333;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 10px rgba(233,30,99,0.2);
}

.paquete:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: #E91E63;
  box-shadow: 0 0 20px rgba(233,30,99,0.7);
}

.tag-popular {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #E91E63;
  color: #fff;
  padding: 3px 7px;
  font-size: 0.7rem;
  border-radius: 12px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Métodos de pago */
.metodo {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  color: #fff;
}

.metodo.paypal { background: #003087; }
.metodo.banco { background: #4CAF50; }
.metodo.binance { background: #F3BA2F; color: #000; }

.metodo:hover {
  transform: translateY(-2px) scale(1.03);
  opacity: 0.9;
}

/* Banco tarjetas animadas */
.banco-tarjeta {
  flex: 1;
  padding: 12px;
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  border: 2px solid #333;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(233,30,99,0.2);
}

.banco-tarjeta:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #E91E63, #ff4081);
  border-color: #FFC107;
  box-shadow: 0 0 15px rgba(233,30,99,0.7);
}

.banco-tarjeta.seleccionado {
  border-color: #FFC107;
  background: #333;
  box-shadow: 0 0 20px #FFC107;
}

/* Cuadro de cuenta bancaria con fade-in */
#cuadro-cuenta {
  background: #111;
  border: 2px solid #E91E63;
  border-radius: 10px;
  padding: 12px;
  margin-top: 10px;
  color: #fff;
  box-shadow: 0 0 15px rgba(233,30,99,0.5);
  font-size: 0.9rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

#cuadro-cuenta.visible {
  opacity: 1;
  max-height: 400px;
}

/* Animaciones modal */
@keyframes fadeIn { from {opacity: 0;} to {opacity:1;} }
@keyframes slideIn { from {transform: translateY(-20px);} to {transform: translateY(0);} }


.modal-content { max-width: 480px; padding: 15px; border-radius: 10px; }
.paquete { padding: 10px; font-size: 0.85rem; border-radius: 8px; }
.paquete h2 { font-size: 1rem; margin: 3px 0; }
.paquete p { margin: 2px 0; }

.metodo { padding: 5px 8px; font-size: 0.8rem; border-radius: 5px; }
.bancos { display: flex; gap:5px; flex-wrap: wrap; }
.banco-tarjeta { padding:6px; font-size:0.8rem; flex:1 1 45%; border-radius:8px; }

#banco-form textarea { font-size:0.8rem; padding:4px; }
#cuadro-cuenta { padding:8px; font-size:0.8rem; border-radius:8px; }

#bancos-lista {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.banco-tarjeta {
  flex: 1 1 45%;
  padding: 6px;
  font-size: 0.85rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  background: #222;
  border: 2px solid #333;
  color: #fff;
  transition: all 0.3s ease;
}

.banco-tarjeta:hover {
  background: #E91E63;
  border-color: #FFC107;
  transform: scale(1.05);
}

.banco-tarjeta.seleccionado {
  background: #333;
  border-color: #FFC107;
  box-shadow: 0 0 10px #FFC107;
}

/* Lista de bancos oculta inicialmente */
.bancos-lista {
  max-height: 0;
  overflow: hidden;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

/* Lista visible */
.bancos-lista.visible {
  max-height: 300px; /* suficiente para mostrar todos los bancos */
  opacity: 1;
}

.selector-pais select {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  background: #222;
  color: #fff;
  border: 2px solid #333;
  margin-bottom: 5px;
  cursor: pointer;
}

/* Animación general */
.fade-slide {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

/* Cuando está visible */
.fade-slide.visible {
  max-height: 300px; /* suficiente para selector o lista */
  opacity: 1;
}

/* Selector de país */
.selector-pais select {
  width: 100%;
  padding: 6px;
  border-radius: 5px;
  background: #222;
  color: #fff;
  border: 2px solid #333;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Lista de bancos */
.bancos-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Tarjetas de banco */
.banco-tarjeta {
  flex: 1 1 45%;
  padding: 8px;
  font-size: 0.85rem;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  background: #222;
  border: 2px solid #333;
  color: #fff;
  transition: all 0.3s ease;
}

.banco-tarjeta:hover {
  background: #E91E63;
  border-color: #FFC107;
  transform: scale(1.05);
}

.banco-tarjeta.seleccionado {
  background: #333;
  border-color: #FFC107;
  box-shadow: 0 0 10px #FFC107;
}

.btn-copiar {
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 0.75rem;
  border: none;
  border-radius: 4px;
  background: #444;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-copiar:hover {
  background: #E91E63;
  color: #fff;
  transform: scale(1.1);
}

.toast {
  visibility: hidden;
  min-width: 220px;
  background: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Scroll general */
::-webkit-scrollbar {
  width: 8px;  /* ancho del scroll */
}

/* Track (fondo del scroll) */
::-webkit-scrollbar-track {
  background: #111;
  border-radius: 10px;
}

/* Thumb (la parte que se mueve) */
::-webkit-scrollbar-thumb {
  background: #E91E63;
  border-radius: 10px;
  border: 2px solid #111;
  transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: #FFC107;
}

.modal-body {
  max-height: 70vh; /* ocupa máximo el 70% de la pantalla */
  overflow-y: auto; /* activa el scroll vertical */
  padding-right: 10px; /* espacio para que no tape el scroll */
  scroll-behavior: smooth; /* scroll suave */
}

/* Scrollbar VIP dentro del modal */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: #111;
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #E91E63;
  border-radius: 10px;
  border: 2px solid #111;
  transition: background 0.3s;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: #FFC107;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
}

#binance-info {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Animación de entrada (fade + slide) */
.fade-slide {
  animation: fadeSlide 0.2s ease forwards;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación de entrada (fade + slide) */
.fade-slide {
  animation: fadeSlide 0.2s ease forwards;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  background: #111;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.modal-button:hover {
  transform: translateY(-3px);
  background: #222;
}

.server-info {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #ddd;
}

.server-info li {
    padding: 8px;
    border-bottom: 1px solid #333;
}

.server-info li b {
    color: #2196F3;
}



/* Contenedor general abajo y centrado */
.server-status {
    position: fixed;
    bottom: 20px;          /* margen desde abajo */
    left: 50%;             /* al centro horizontal */
    transform: translateX(-50%); /* lo centra respecto a su ancho */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 9999;
}

/* Caja principal amarilla translúcida */
.status-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 193, 7, 0.3);   /* amarillo translúcido */
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);

    /* Efecto vidrio */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.4); /* borde dorado sutil */
}

/* Logo */
.status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.status-logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    display: block;
    border-radius: 50%; /* quítalo si no quieres redondear */
}

/* Texto */
.status-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.status-label {
    font-weight: bold;
}

.status-state {
    color: #4caf50; /* verde si está online */
}

.status-icon.offline + .status-text .status-state {
    color: #f44336; /* rojo si está offline */
}

.users-count {
    font-size: 17px;
    opacity: 0.8;
}

/* Botón de refresco */
.status-refresh {
    margin-left: auto;
    cursor: pointer;
    color: #aaa;
    transition: transform 0.3s ease, color 0.3s ease;
}

.status-refresh:hover {
    color: #fff;
    transform: rotate(180deg);
}

/* Logo con animación */
.status-icon.online .status-logo {
    border: 10px solid #4caf50;
    animation: pulseGreen 2s infinite;
}

.status-icon.offline .status-logo {
    border: 5px solid #f44336;
    animation: pulseRed 2s infinite;
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(244, 67, 54, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 67, 54, 0); }
}

.status-state {
    font-weight: bold;
    color: #4caf50;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.7);
}

.status-icon.offline + .status-text .status-state {
    color: #f44336;
    text-shadow: 0 0 8px rgba(244, 67, 54, 0.7);
}

/* Estilos para el botón de Kick */
.kick-button {
    position: fixed;
    right: 20px;
    bottom: 90px;   /* Un poco más arriba del botón de YouTube */
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kick-box {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.9); /* Fondo negro */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 1px solid rgba(82, 255, 0, 0.4); /* Verde Kick */
    transition: all 0.3s ease;
}

.kick-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.kick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #52FF00; /* Verde Kick */
    color: black;
    font-size: 24px;
    font-weight: bold;
}

.kick-text {
    padding: 0 15px;
    font-weight: 600;
    color: #52FF00; /* Verde Kick */
    font-size: 14px;
    white-space: nowrap;
}

.kick-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 50px;
    background-color: rgba(82, 255, 0, 0.1);
    color: #52FF00;
    font-size: 24px;
    transition: all 0.2s ease;
}

.kick-play:hover {
    background-color: rgba(82, 255, 0, 0.2);
}

