* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    background: url('https://external-preview.redd.it/ESSabRPUaDj-4sTgD4cwDdihFIs1L0fCuB-ZqPCYcWo.jpg?auto=webp&s=9877e45259298aedb2271b9be97ff99e942b28d7') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
    position: relative;
    color: white;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
    backdrop-filter: blur(8px);
}

/* Partículas flotantes */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 87, 34, 0.8);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.6);
}

.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 1s; }
.particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 2s; width: 8px; height: 8px; }
.particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 3s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 4s; width: 5px; height: 5px; }
.particle:nth-child(5) { top: 40%; left: 90%; animation-delay: 0.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-30px) translateX(10px) rotate(180deg); opacity: 1; }
}

/* Header moderno */
.header {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.nav-container {
    display: flex;
    gap: 5px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    padding: 8px;
    border-radius: 30px;
    border: 1px solid rgba(255, 87, 34, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-item {
    background: transparent;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
	text-decoration: none !important;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 87, 34, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.nav-item:hover {
    color: #FF5722;
    transform: translateY(-3px);
}

.nav-item:hover::before {
    transform: scaleX(1);
}


.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: #FF5722;
    border-radius: 2px;
}

/* Iconos sociales */
.social-icons {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 9999;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF5722;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 87, 34, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: rgba(255, 87, 34, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

/* Contenedor principal */
.main-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 50;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo flotante */
.floating-logo {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    animation: floatLogo 3s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.floating-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

/* Contenedor de LiteBans */
.litebans-container {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 87, 34, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}

/* Estilos para el contenido de LiteBans */
.litebans-index {
    text-align: center;
    margin-bottom: 20px;
}

.litebans-index-main h2 {
    font-size: 2.5rem;
    color: #FF5722;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
    margin-bottom: 15px;
    font-weight: bold;
}

.litebans-index-sub p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Botones de moderación */
.mod-buttons {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 60;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    padding: 15px;
    border-radius: 30px;
    border: 1px solid rgba(255, 87, 34, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mod-btn {
    background: rgba(30, 30, 30, 0.7);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
	text-decoration: none !important;
}

.mod-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 87, 34, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.mod-btn:hover {
    color: #FF5722;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mod-btn:hover::before {
    transform: scaleX(1);
}

.mod-btn.active {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.3), rgba(255, 87, 34, 0.1));
    color: #FF5722;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.2);
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.mod-btn i {
    font-size: 16px;
}

/* Efectos de luz */
.glow-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.4), transparent 70%);
    animation: glow 6s ease-in-out infinite;
    filter: blur(10px);
}

.glow-orb:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 1s;
}

.glow-orb:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    width: 200px;
    height: 200px;
}

@keyframes glow {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Efecto de borde brillante para la imagen */
.floating-logo::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
                    #FF5722, 
                    #FF9800, 
                    #F44336, 
                    #FF5722);
    background-size: 400% 400%;
    z-index: -1;
    animation: gradientBorder 6s ease infinite;
    opacity: 0.7;
    filter: blur(15px);
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* Botones laterales */
.side-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 9999;
}

.side-btn {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 87, 34, 0.3);
    padding: 12px 15px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 160px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0 5px;
	text-decoration: none !important;

}

.side-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 87, 34, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.side-btn:hover {
    color: #FF5722;
    transform: translateY(-5px);
}

.side-btn:hover::before {
    transform: scaleX(1);
}

.side-btn:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}

.side-btn i {
    font-size: 24px;
}

.side-btn span {
    font-size: 12px;
    opacity: 0.8;
    text-transform: none;
    font-weight: normal;
    letter-spacing: 0.5px;
}

/* Estilos específicos para los botones */
.side-btn.store {
    background: rgba(255, 87, 34, 0.3);
    color: #FF5722;
}

.side-btn.discord {
    background: rgba(88, 101, 242, 0.3);
}

.side-btn.store:hover {
    background: rgba(255, 87, 34, 0.5);
}

.side-btn.discord:hover {
    background: rgba(88, 101, 242, 0.5);
}

/* Responsivo para botones laterales */
@media (max-width: 768px) {
    .side-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
        top: 65%;
    }
    
    .side-btn {
        width: 100%;
        max-width: 250px;
        padding: 15px 20px;
    }
}


/* Responsivo mejorado */
@media (max-width: 768px) {
    .header {
        top: 10px;
    }
    
    .nav-container {
        flex-wrap: wrap;
        padding: 6px;
        gap: 3px;
    }
    
    .nav-item {
        padding: 8px 12px;
        font-size: 12px;
		
    }
    
    .social-icons {
        top: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .floating-logo {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }
    
    .litebans-container {
        padding: 20px;
        width: 95%;
    }
    
    .litebans-index-main h2 {
        font-size: 1.8rem;
    }
    
    .litebans-index-sub p {
        font-size: 1rem;
    }
    
    .mod-buttons {
        flex-wrap: wrap;
        justify-content: center;
        width: 90%;
        bottom: 20px;
        padding: 10px;
    }
    
    .mod-btn {
        padding: 10px 15px;
        min-width: 100px;
        font-size: 12px;
    }
}

/* Contenedor principal del paginador */
.litebans-pager-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Botones de navegación */
.litebans-pager {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 87, 34, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none !important;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.litebans-pager::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 87, 34, 0.1));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.litebans-pager-active:hover {
    color: #FF5722;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

.litebans-pager-active:hover::before {
    transform: scaleX(1);
}

.litebans-pager-inactive {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.3);
}

.litebans-pager-inactive:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Iconos de los botones */
.pager-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 87, 34, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.litebans-pager-active:hover .pager-icon-container {
    background: rgba(255, 87, 34, 0.4);
    transform: scale(1.1);
}

.pager-text {
    font-size: 12px;
    font-weight: 600;
}

/* Información de página */
.litebans-pager-info {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 87, 34, 0.3);
    padding: 15px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.pager-info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.pager-current-page {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #FF5722;
}

.page-number {
    background: rgba(255, 87, 34, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 800;
    color: #FF5722;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}

.page-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.total-pages {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.pager-total-records {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Barra de progreso */
.pager-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.pager-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF5722, #FF9800);
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}

/* Páginas numéricas */
.litebans-pager-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 87, 34, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pager-number-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none !important;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pager-number-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF5722, #FF9800);
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
    border-radius: 50%;
}

.pager-number-btn:hover::before,
.pager-number-btn.active::before {
    transform: scale(1);
}

.pager-number-btn:hover,
.pager-number-btn.active {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.pager-dots {
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
    padding: 0 5px;
}

/* Efectos de partículas */
.litebans-pager-info::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.1) 0%, transparent 70%);
    animation: pagerGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pagerGlow {
    0%, 100% { transform: rotate(0deg) scale(0.8); opacity: 0.3; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 0.6; }
}

/* Responsivo */
@media (max-width: 768px) {
    .litebans-pager-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .litebans-pager {
        min-width: 100px;
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .litebans-pager-info {
        padding: 12px 20px;
    }
    
    .litebans-pager-numbers {
        padding: 6px 12px;
    }
    
    .pager-number-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .pager-text {
        display: none;
    }
}
/* Contenedor principal del buscador */
.player-search-container {
    position: relative;
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    z-index: 10;
}

/* Wrapper del buscador */
.search-wrapper {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 87, 34, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-wrapper:hover {
    border-color: rgba(255, 87, 34, 0.4);
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.1);
}

/* Cabecera del buscador */
.search-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.search-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.search-icon svg {
    width: 24px;
    height: 24px;
    color: #FF5722;
}

.search-title {
    font-size: 1.5rem;
    color: #FF5722;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
    margin: 0;
    font-weight: 600;
}

/* Formulario de búsqueda */
.search-form {
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.search-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.1);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF5722, #FF9800);
    transition: width 0.4s ease;
}

.search-input:focus ~ .search-border {
    width: 100%;
}

/* Botón de búsqueda */
.search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.3), rgba(255, 87, 34, 0.1));
    border: none;
    border-radius: 8px;
    color: #FF5722;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.4), rgba(255, 87, 34, 0.2));
}

.search-button:active {
    transform: translateY(0) scale(0.98);
}

.search-button span {
    position: relative;
    z-index: 2;
}

.search-arrow {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.search-button:hover .search-arrow {
    transform: translateX(5px);
}

.search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.5), rgba(255, 87, 34, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.search-button:hover::before {
    transform: scaleX(1);
}

/* Botones de acción rápida */
.quick-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.quick-action-btn span {
    position: relative;
    z-index: 2;
    margin-left: 8px;
}

.action-icon {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Botón Home */
.home-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #FF5722;
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.home-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 87, 34, 0.1));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.home-btn:hover {
    color: #FF5722;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

.home-btn:hover::before {
    transform: scaleX(1);
}

.home-btn:hover .action-icon {
    transform: translateX(-3px);
}

/* Botón Discord */
.discord-btn {
    background: rgba(88, 101, 242, 0.2);
    color: #FFFFFF;
    border: 1px solid rgba(88, 101, 242, 0.4);
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.4), rgba(88, 101, 242, 0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.discord-btn:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover::before {
    transform: scaleX(1);
}

.discord-btn:hover .action-icon {
    transform: scale(1.1);
}

/* Decoraciones */
.search-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    border-radius: 15px;
}

.decoration-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 87, 34, 0.4);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.4);
}

.decoration-particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    width: 8px;
    height: 8px;
}

.decoration-particle:nth-child(2) {
    top: 70%;
    left: 80%;
    animation-delay: 2s;
    width: 6px;
    height: 6px;
}

.decoration-particle:nth-child(3) {
    top: 40%;
    left: 85%;
    animation-delay: 4s;
    width: 5px;
    height: 5px;
}

/* Animaciones */
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-20px) translateX(10px) rotate(180deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .player-search-container {
        padding: 15px;
        margin: 20px auto;
    }
    
    .search-wrapper {
        padding: 20px;
    }
    
    .search-header {
        margin-bottom: 20px;
    }
    
    .search-icon {
        width: 40px;
        height: 40px;
    }
    
    .search-title {
        font-size: 1.3rem;
    }
    
    .search-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .search-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .quick-action-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .quick-action-btn {
        width: 100%;
        padding: 10px 15px;
    }
}