@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: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 500px;
    text-align: center;
}

.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;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.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;
}