/* Variables CSS para personalización */
:root {
    /* Colores principales */
    --primary-color: #ff6b35;
    --primary-light: #ff8c42;
    --primary-dark: #e55a2b;
    
    /* Colores de fondo */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-card: rgba(26, 26, 46, 0.85);
    --bg-overlay: rgba(0, 0, 0, 0.6);
    
    /* Colores de texto */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --text-accent: #ff6b35;
    
    /* Colores de estado */
    --success-color: #00ff00;
    --error-color: #ff0000;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-bg: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    --gradient-header: linear-gradient(90deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    --gradient-navbar: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    --gradient-card: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
    
    /* Bordes */
    --border-color: #333333;
    --border-accent: var(--primary-color);
    --border-radius: 10px;
    --border-radius-lg: 25px;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Tamaños */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

a {text-decoration: none !important;}
.usercp li img { vertical-align: middle;}
.usercp li { border-bottom: 1px inset black; list-style: none; line-height: 35px; }
.usercp li a { color: coral; margin-left: 10px;}

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
}


/* Navigation */
.navbar {
    background: transparent;
    padding: var(--spacing-sm) 0;
    position: relative;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-sm);
    justify-content: center;
    align-items: center;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 0.8rem var(--spacing-lg);
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 
        var(--shadow-xl),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.nav-menu:hover::before {
    opacity: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 2px solid transparent;
    font-weight: 500;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all var(--transition-normal);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-slow);
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    width: 100px;
    height: 100px;
}

.nav-link:hover,
.nav-link.active {
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.5);
}

.nav-link.active::before {
    opacity: 1;
}

.nav-link i {
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.nav-link:hover i,
.nav-link.active i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.nav-link span {
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

/* Efecto de partículas flotantes */
.nav-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all var(--transition-normal);
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-link:hover + .nav-item::before,
.nav-item:hover::before {
    opacity: 1;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Hamburger menu para móviles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: relative;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 4rem auto 2rem auto;
    padding: 0 var(--spacing-lg);
}

/* Hero Section */
.hero-section {
    position: absolute;
    top: 350px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    z-index: 10;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 var(--spacing-lg);
    gap: var(--spacing-lg);
}

/* Server Status Container */
.server-status-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.server-status-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 
        var(--shadow-xl),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.server-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(255, 140, 66, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.server-status-card:hover::before {
    opacity: 1;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.status-header i {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

/* Progress Bar */
.progress-container {
    display: flex;
    flex-direction: column;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    transition: width var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all var(--transition-normal);
    min-width: 160px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.hero-btn i {
    font-size: 1.2rem;
}

.hero-btn span {
    font-size: 1rem;
    font-weight: bold;
}

.hero-btn-primary {
    background: var(--gradient-primary);
    color: #000;
    border-color: var(--primary-color);
}

.hero-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-glow);
    background: var(--gradient-primary);
}

.hero-btn-secondary {
    background: var(--gradient-navbar);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-glow);
    background: var(--gradient-navbar);
    color: var(--text-primary);
}

.content-container {
    display: grid;
    grid-template-columns: 280px 780px 280px;
    gap: var(--spacing-lg);
    margin-top: 450px;
    justify-content: center;
}

/* Sidebar */
.sidebar {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    height: fit-content;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(15px);
}

.sidebar-left {
    order: 1;
}

.sidebar-right {
    order: 3;
}

.sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-section h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0.6rem 0.8rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 140, 66, 0.08));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.sidebar-section h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 53, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.sidebar-section h3:hover::before {
    left: 100%;
}

.sidebar-section h3 i {
    font-size: 0.9rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 2px rgba(255, 107, 53, 0.2));
}

/* Login Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-form input {
    padding: 0.8rem;
    border: 1px solid #333;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 0.9rem;
}

.login-form input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.login-form button {
    padding: 0.8rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.login-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.forgot-password {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.8rem;
    text-align: center;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Stats */
.stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
}

.stat-value {
    color: #ff6b35;
    font-weight: bold;
}

/* Announcements */
.announcements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.announcement {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    border-left: 3px solid #ff6b35;
}

.announcement h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.announcement p {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.4;
}

/* Main Section */
.main-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
    order: 2;
}

/* News Section */
.news-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
}

.page-title span {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	margin-bottom: 50px;
}

.page-title span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 53, 0.15), 
        transparent);
    transition: left 0.8s ease;
}

.page-title span:hover::before {
    left: 100%;
}

.page-title span i {
    font-size: 1.2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.4));
}

.news-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.news-article {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    gap: var(--spacing-md);
}

.news-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.news-article.featured {
    border: 2px solid var(--primary-color);
    background: var(--gradient-card);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.news-image img {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem; vertical-align: middle;
}

.news-content {
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.news-date {
    color: #ccc;
    font-size: 0.9rem;
}

.news-category {
    background: var(--gradient-primary);
    color: #000;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.news-article h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-weight: 600;
    padding: 0.5rem 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 0.8rem;
    transition: all var(--transition-normal);
}

.news-article:hover h3 {
    color: var(--primary-light);
    border-left-color: var(--primary-light);
    transform: translateX(5px);
}

.news-article p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
}

.read-more:hover {
    color: var(--primary-light);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform var(--transition-normal);
}

.read-more:hover i {
    transform: translateX(3px);
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-btn {
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 5px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    color: #fff;
}

.pagination-btn.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #000;
    font-weight: bold;
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.content-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-card ul {
    list-style: none;
}

.content-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    color: #ccc;
}

.content-card li:last-child {
    border-bottom: none;
}

/* Schedule */
.schedule {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

/* Top Players */
.top-players {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.player {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.player:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.player-avatar {
    position: relative;
    flex-shrink: 0;
}

.player-avatar img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
}

.player:hover .player-avatar img {
    border-color: #ff8c42;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.player-avatar .rank {
    position: absolute;
    top: -3px;
    right: -3px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    border: 2px solid #1a1a2e;
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.name {
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
}

.name a {
    color: coral;
    font-weight: bold;
    font-size: 0.9rem;
}


.level {
    color: darkgray;
    font-weight: 600;
    font-size: 0.75rem;
}
.level a {
    color: darkgray;
    font-weight: 600;
    font-size: 0.75rem;
}
/* Guilds */
.guilds {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.guild {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.guild:hover {
    background: rgba(255, 107, 53, 0.1);
}

.guild-name {
    color: #fff;
    font-weight: bold;
}

.guild-members {
    color: #ff6b35;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Events */
.events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    border-left: 3px solid #ff6b35;
}

.event h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.event p {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.4;
}

/* Server Info */
.server-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.info-label {
    font-size: 0.9rem;
    color: #ccc;
    flex: 1;
}

.info-value {
    color: #ff6b35;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    border-top: 3px solid #ff6b35;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 1rem 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header-info {
        flex-direction: column;
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .navbar {
        z-index: 1001;
        position: relative;
    }
    
    .hamburger {
        z-index: 1002;
        position: relative;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hero-section {
        top: 300px;
    }
    
    .hero-container {
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-btn {
        min-width: 250px;
        padding: 1.2rem 2rem;
    }

    .content-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .main-content {
        padding: 0 0.5rem;
        margin: 2rem auto 1rem auto;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }

    .sidebar-left {
        order: 2;
    }

    .sidebar-right {
        order: 3;
    }

    .main-section {
        order: 1;
    }

    .welcome-banner h2 {
        font-size: 2rem;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .content-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .news-header h2 {
        font-size: 1.5rem;
    }

    .news-article {
        flex-direction: column;
        gap: 1rem;
    }

    .news-image img {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        align-self: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0 0.5rem;
        margin: 1.5rem auto 0.5rem auto;
    }

    .header-container {
        padding: 0.5rem;
    }

    .nav-container {
        padding: 0 0.5rem;
    }
    
    .main-section {
        padding: 1rem 0.5rem;
    }
    
    .sidebar {
        padding: 1rem 0.5rem;
    }

    .welcome-banner {
        padding: 1rem;
    }

    .hero-section {
        top: 250px;
    }
    
    .hero-container {
        padding: 0 0.5rem;
    }

    .hero-btn {
        min-width: 200px;
        padding: 1rem 1.5rem;
    }

    .hero-btn i {
        font-size: 1.2rem;
    }

    .hero-btn span {
        font-size: 1rem;
    }

    .welcome-banner h2 {
        font-size: 1.5rem;
    }

    .content-card {
        padding: 1rem;
    }
}


.admincp-button {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #ffffff !important;
	border: 2px solid #000000 !important;
	color: #000000 !important;
	font-weight: bold !important;
}



/* NEWS MODULE */
.panel-news {
	margin-bottom: 30px;
	color: #333;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: 0 0 0px #e3e3e3;
	-webkit-box-shadow: 0 0 0px #e3e3e3;
	box-shadow: 0 0 0px #e3e3e3;
}
.panel-news .panel-heading {
	padding-top: 10px;
	padding-bottom: 10px;
}
.panel-news .panel-title {
	color: #000000;
	font-size: 24px;
	font-weight: bold;
}
.panel-news .panel-body {
	padding: 10px;
}
.panel-news .panel-footer {
	border-top: 1px solid #e7e7e7;
	background: #fff;
	font-style: italic;
	font-size: 11px;
	height: 40px;
	color: #777;
}

/* RANKINGS MODULE (DARK ORANGE THEME) */
.rankings-table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

.rankings-class-image {
	width: 30px;
	height: auto;
	/* Sombra ajustada para un tema oscuro */
	-moz-box-shadow: 0 0 5px #333;
	-webkit-box-shadow: 0 0 5px #333;
	box-shadow: 0 0 5px #333;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.rankings-table tr td {
	/* Borde divisorio oscuro */
	border-bottom: 1px solid #333;
	padding: 10px;
	font-size: 18px;
	/* Texto claro para contraste con fondo oscuro */
	color: #ff6b35; 
	vertical-align: middle !important;
	text-align: center;
}

.rankings-table tr td a{
	color: #ff8c00; /* DarkOrange */
	text-decoration: none;
	font-weight: bolder;
}

.rankings-table-place {
	/* Color del lugar (place) más claro */
	color: #aaa;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
}
.rankings-table tr:first-child td {
	/* Naranja Oscuro como color de acento para el 1er lugar */
	color: #ff8c00; /* DarkOrange */
	border-bottom: 3px solid #ff8c00;
}
.rankings-update-time {
	text-align: right;
	font-size: 11px;
	/* Color muy sutil para la hora de actualización */
	color: #555;
	padding: 10px 0px;
}
.rankings_menu {
	width: 100%;
	display: inline-block;
	text-align: center;
	margin-bottom: 10px;
}
.rankings_menu span {
	width: 100%;
	display: inline-block;
	padding: 10px 0px;
	color: #ccc;
	font-size: 24px;
}
.rankings_menu a {
	display: inline-block;
padding: 0.6rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s 
ease;
	margin-left: 15px;
	margin-bottom: 15px;
	text-decoration: none;

}
.rankings_menu a.active {
	color: #333;
	border-color: #333;
}
.rankings_guild_logo tr td {
	border: 0px !important;
	padding: 0px !important;
	margin: 0px !important;
}
.rankings-gens-img {
	width: auto !important;
	height: 30px !important;
	border: 0 !important;
	-moz-box-shadow: 0 0 0px #000 !important;
	-webkit-box-shadow: 0 0 0px #000 !important;
	box-shadow: 0 0 0px #000 !important;
	-moz-border-radius: 0px !important;
	border-radius: 0px !important;
}

/* MY ACCOUNT MODULE (DARK ORANGE THEME) */
.myaccount-table {
	width: 100%;
	/* Fondo Oscuro */
	background: #2b2b2b; 
	/* Borde Gris Oscuro */
	border: 1px solid #444444;
	/* Color de texto por defecto */
	color: #eeeeee;
}
.myaccount-table tr td:first-child {
	/* Naranja Oscuro para las etiquetas/títulos de columna */
	color: #ff8c00; 
	font-weight: bold;
}
.myaccount-table tr td {
	/* Borde divisorio oscuro */
	border-bottom: 1px solid #444444;
	padding: 15px !important;
}
.myaccount-table tr:last-child td {
	border: 0px;
}

/* GENERAL TABLE UI (DARK ORANGE THEME) */
.general-table-ui {
	width: 100%;
	table-layout: fixed;
	/* Fondo Oscuro */
	background: #2b2b2b; 
	/* Borde Gris Oscuro */
	border: 1px solid #444444;
	padding: 10px;
	margin: 10px 0px;
	/* Color de texto por defecto */
	color: #cccccc;
}
.general-table-ui tr td {
	padding: 5px;
	vertical-align: middle !important;
}
.general-table-ui tr:first-child td {
	/* Naranja Oscuro para la primera fila (encabezados o destacados) */
	color: #ff8c00; 
}
.general-table-ui tr:nth-child(2n+2) td {
	/* Alternancia de color de fondo más oscuro */
	background: #333333;
}
.general-table-ui tr td {
	text-align: center;
}
.general-table-ui img {
	width: 50px;
	height: auto;
	/* Sombra sutil para el tema oscuro */
	-moz-box-shadow: 0 0 5px #333;
	-webkit-box-shadow: 0 0 5px #333;
	box-shadow: 0 0 5px #333;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
/* TERMS OF SERVICE PAGE */
.tos_list li {
	color: #aa0000;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 40px;
}
.tos_list li p {
	color: #444;
	text-align: justify;
	text-justify: inter-word;
	text-transform: none;
	padding-right: 35px;
	font-size: 14px;
	font-weight: normal;
}

/* DONATION MODULE (DARK ORANGE THEME) - Compatible con Bootstrap */
.panel.panel-donation-module {
	margin-bottom: 30px;
	background-color: var(--bg-card) !important;
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color) !important;
	border-radius: var(--border-radius) !important;
	color: var(--text-primary);
	box-shadow: var(--shadow-xl);
	transition: all var(--transition-normal);
	overflow: visible;
}

.panel.panel-donation-module:hover {
	border-color: rgba(255, 107, 53, 0.5) !important;
	box-shadow: var(--shadow-glow);
}

.panel.panel-donation-module .panel-body {
	padding: var(--spacing-md);
	background-color: transparent;
}

.panel.panel-donation-module .panel-body > .panel-title {
	color: var(--primary-color) !important;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	border-bottom: 2px solid rgba(255, 107, 53, 0.3);
	padding-bottom: var(--spacing-sm);
	padding-top: 0;
	margin-top: 0;
	margin-bottom: var(--spacing-md) !important;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.panel.panel-donation-module .panel-body > .panel-title i {
	font-size: 1.2rem;
	filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.4));
}

/* Donation Packages Row */
.donation-packages-row {
	margin-left: -15px;
	margin-right: -15px;
	display: flex;
	flex-wrap: wrap;
}

.donation-package-container {
	padding: 15px;
	margin-bottom: 20px;
}

/* Donation Package Card */
.donation-package-card {
	background: rgba(0, 0, 0, 0.3);
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: var(--spacing-md);
	transition: all var(--transition-normal);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.donation-package-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-card);
	opacity: 0;
	transition: opacity var(--transition-normal);
	z-index: 0;
}

.donation-package-card:hover::before {
	opacity: 1;
}

.donation-package-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
	box-shadow: var(--shadow-glow);
}

.donation-package-card > * {
	position: relative;
	z-index: 1;
}

/* Donation Package Logo */
.donation-package-logo {
	text-align: center;
	margin-bottom: var(--spacing-md);
	padding: var(--spacing-sm);
	background: rgba(255, 107, 53, 0.05);
	border-radius: var(--border-radius);
}

.payment-logo-main {
	max-width: 200px;
	height: auto;
	margin-bottom: 10px;
	filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
	transition: all var(--transition-normal);
}

.donation-package-card:hover .payment-logo-main {
	transform: scale(1.05);
	filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.5));
}

.payment-logo-credits {
	max-width: 80px;
	height: auto;
	opacity: 0.9;
	transition: all var(--transition-normal);
}

.donation-package-card:hover .payment-logo-credits {
	opacity: 1;
	transform: scale(1.1);
}

/* Donation Package Info */
.donation-package-info {
	text-align: center;
	margin-bottom: var(--spacing-md);
	flex-grow: 1;
}

.donation-package-price {
	font-size: 2rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: var(--spacing-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.donation-package-price i {
	font-size: 1.5rem;
}

.donation-package-credits {
	font-size: 1.2rem;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: 600;
}

.donation-package-credits i {
	color: var(--primary-color);
	font-size: 1rem;
}

/* Donation Package Button */
.donation-package-button {
	text-align: center;
	margin-top: auto;
}

.btn-donation-paypal,
.btn-donation-binance {
	width: 100%;
	padding: var(--spacing-sm) var(--spacing-md);
	background: var(--gradient-primary) !important;
	border: none !important;
	border-radius: var(--border-radius);
	color: #000 !important;
	font-weight: bold;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all var(--transition-normal);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	cursor: pointer;
	text-decoration: none;
	box-shadow: var(--shadow-md);
}

.btn-donation-paypal:hover,
.btn-donation-binance:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
	background: var(--gradient-primary) !important;
	color: #000 !important;
}

.btn-donation-paypal i,
.btn-donation-binance i,
.btn-donation-paypal .fa-brands,
.btn-donation-binance .fa-brands {
	font-size: 1.2rem;
	display: inline-block;
	margin-right: 0.5rem;
}

/* Responsive para módulos de donación */
@media (max-width: 768px) {
	.donation-package-container {
		padding: 10px;
		margin-bottom: 15px;
	}
	
	.donation-package-card {
		padding: var(--spacing-sm);
	}
	
	.donation-package-price {
		font-size: 1.5rem;
	}
	
	.donation-package-credits {
		font-size: 1rem;
	}
	
	.payment-logo-main {
		max-width: 150px;
	}
}

@media (max-width: 480px) {
	.donation-packages-row {
		margin-left: -10px;
		margin-right: -10px;
	}
	
	.donation-package-container {
		padding: 8px;
	}
	
	.donation-package-price {
		font-size: 1.3rem;
	}
	
	.payment-logo-main {
		max-width: 120px;
	}
	
	.payment-logo-credits {
		max-width: 60px;
	}
}

/* Legacy PayPal styles (mantener compatibilidad) */
.paypal-gateway-container {
	width: 100%;
}

.paypal-gateway-content {
	background: rgba(0, 0, 0, 0.3);
	border: 2px solid var(--border-color);
	padding: 15px;
	overflow: auto;
	border-radius: var(--border-radius);
	font-weight: bold;
	color: var(--text-primary);
}

.paypal-gateway-logo,
.mercadopago-gateway-logo {
	width: 100%;
	text-align: center;
	margin-bottom: 15px;
}

.paypal-gateway-form {
	width: 100%;
	margin: 20px auto;
	text-align: center;
}

.paypal-gateway-form div {
	display: inline-block;
	padding: 0px 10px;
	color: var(--text-primary);
	font-size: 24px;
}

.paypal-gateway-continue {
	margin: 0px auto;
	text-align: center;
}

.module-requirements {
	font-size: 12px;
	margin-top: 20px;
}

/* SIDEBAR */
.panel-sidebar {
	background: #f1f1f1;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: 0 0 10px #e3e3e3;
	-webkit-box-shadow: 0 0 10px #e3e3e3;
	box-shadow: 0 0 10px #e3e3e3;
}

.panel-sidebar > .panel-heading {
	background: #fff;
	color: #ff0000;
	font-family: 'PT Sans', sans-serif;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border-bottom: 3px solid #ff0000;
}

.panel-usercp {
	background: url('../img/usercp_bg.jpg') no-repeat top center;
	background-size: cover;
}

.panel-usercp ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

.panel-usercp ul li {
	display: table;
	width: 100%;
	vertical-align: middle;
	line-height: 30px;
}

.panel-usercp ul li a {
	color: #444 !important;
	font-weight: bold;
}
.panel-usercp ul li a:active, .panel-usercp ul li a:hover {
	color: #ff0000 !important;
}

.panel-usercp ul li img {
	position: relative;
	top: -2px;
	padding-right: 10px;
}

.sidebar-banner {
	margin: 20px 0px;
	border: 0px;
}

.sidebar-banner img {
	-moz-box-shadow: 0 0 10px #e3e3e3;
	-webkit-box-shadow: 0 0 10px #e3e3e3;
	box-shadow: 0 0 10px #e3e3e3;
	border: 0px;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -khtml-border-radius: 5px;
}

/* GENERAL PANEL STYLING (DARK ORANGE THEME) */
.panel-general {
	margin-bottom: 30px;
	/* Fondo oscuro */
	background: #2b2b2b; 
	/* Borde gris oscuro */
	border: 1px solid #444444; 
	-moz-border-radius: 0px;
	border-radius: 0px;
	/* Texto claro */
	color: #eeeeee; 
}

.panel-body .panel-title {
	/* Naranja Oscuro para el título del panel */
	color: #ff8c00; 
	font-family: 'PT Sans', sans-serif;
	font-size: 14px;
	/* Borde divisorio oscuro */
	border-bottom: 1px solid #444444; 
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* ADD STATS MODULE (DARK ORANGE THEME) */
.panel-addstats {
	margin-bottom: 30px;
	/* Fondo oscuro */
	background: #2b2b2b;
	/* Borde gris oscuro */
	border: 1px solid #444444;
	-moz-border-radius: 0px;
	border-radius: 0px;
	/* Texto claro */
	color: #eeeeee;
}
.panel-addstats .character-avatar img {
	width: 100px;
	height: auto;
	/* Sombra sutil para el tema oscuro */
	-moz-box-shadow: 0 0 5px #333;
	-webkit-box-shadow: 0 0 5px #333;
	box-shadow: 0 0 5px #333;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.panel-addstats .character-name {
	/* Naranja Oscuro para el nombre del personaje */
	color: #ff8c00; 
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	/* Borde divisorio oscuro */
	border-bottom: 1px solid #444444; 
	padding: 20px 0px;
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* USERCP MODULE (DARK ORANGE THEME) - Compatible con Bootstrap */
.panel.panel-usercp-module {
	margin-bottom: 30px;
	background-color: var(--bg-card) !important;
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color) !important;
	border-radius: var(--border-radius) !important;
	color: var(--text-primary);
	box-shadow: var(--shadow-xl);
	transition: all var(--transition-normal);
	overflow: visible;
}

.panel.panel-usercp-module:hover {
	border-color: rgba(255, 107, 53, 0.5) !important;
	box-shadow: var(--shadow-glow);
}

.panel.panel-usercp-module .panel-body {
	padding: var(--spacing-md);
	background-color: transparent;
}

.panel.panel-usercp-module .panel-body > .panel-title {
	color: var(--primary-color) !important;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	border-bottom: 2px solid rgba(255, 107, 53, 0.3);
	padding-bottom: var(--spacing-sm);
	padding-top: 0;
	margin-top: 0;
	margin-bottom: var(--spacing-md) !important;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.panel.panel-usercp-module .panel-body > .panel-title i {
	font-size: 1.2rem;
	filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.4));
}

/* Tablas de usercp */
.panel.panel-usercp-module .usercp-table.table,
.panel.panel-usercp-module .myaccount-table.table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background-color: transparent;
	margin-bottom: 0;
}

.panel.panel-usercp-module .usercp-table.table thead th {
	background-color: rgba(255, 107, 53, 0.1) !important;
	color: var(--primary-color) !important;
	border-bottom: 2px solid rgba(255, 107, 53, 0.3) !important;
	font-weight: bold;
	text-align: center;
	padding: var(--spacing-sm);
}

.panel.panel-usercp-module .usercp-table.table tbody tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all var(--transition-normal);
}

.panel.panel-usercp-module .usercp-table.table tbody tr:hover {
	background-color: rgba(255, 107, 53, 0.1) !important;
	transform: translateX(3px);
}

.panel.panel-usercp-module .usercp-table.table tbody td {
	padding: var(--spacing-sm);
	vertical-align: middle !important;
	color: var(--text-primary);
	border-top: none;
}

.panel.panel-usercp-module .usercp-table.table tbody td strong {
	color: var(--primary-color);
	font-weight: 600;
}

/* Tabla myaccount específica */
.panel.panel-usercp-module .myaccount-table.table tr td:first-child {
	color: var(--primary-color);
	font-weight: bold;
}

.panel.panel-usercp-module .myaccount-table.table tr td {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: var(--spacing-sm) !important;
	color: var(--text-primary);
}

.panel.panel-usercp-module .myaccount-table.table tr:last-child td {
	border-bottom: none;
}

/* Formularios en usercp */
.panel.panel-usercp-module .form-horizontal .form-group {
	margin-bottom: var(--spacing-sm);
}

.panel.panel-usercp-module .form-horizontal .control-label {
	color: var(--text-primary);
	font-weight: 500;
}

.panel.panel-usercp-module .form-control {
	background-color: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	color: var(--text-primary);
	padding: 0.6rem;
	transition: all var(--transition-normal);
}

.panel.panel-usercp-module .form-control:focus {
	background-color: rgba(0, 0, 0, 0.5);
	border-color: var(--primary-color);
	color: var(--text-primary);
	box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
	outline: none;
}

.panel.panel-usercp-module .form-control option {
	background-color: var(--bg-card);
	color: var(--text-primary);
}

/* Botones en usercp */
.panel.panel-usercp-module .btn-muchoco {
	background: var(--gradient-primary) !important;
	border: none !important;
	color: #000 !important;
	font-weight: 600;
	padding: 8px 20px;
	border-radius: var(--border-radius);
	transition: all var(--transition-normal);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
}

.panel.panel-usercp-module .btn-muchoco:hover {
	background: var(--gradient-primary) !important;
	color: #000 !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.panel.panel-usercp-module .btn-muchoco i {
	font-size: 0.9rem;
}

.panel.panel-usercp-module .btn-muchoco.btn-xs {
	padding: 4px 12px;
	font-size: 0.85rem;
}

/* Character avatar en addstats */
.panel.panel-usercp-module .character-avatar img {
	width: 100px;
	height: auto;
	border-radius: var(--border-radius);
	box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
	transition: all var(--transition-normal);
}

.panel.panel-usercp-module .character-avatar img:hover {
	transform: scale(1.05);
	box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

/* Module requirements */
.module-requirements {
	margin-top: var(--spacing-md);
	padding: var(--spacing-sm);
	background-color: rgba(255, 107, 53, 0.05);
	border-left: 3px solid var(--primary-color);
	border-radius: var(--border-radius);
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.module-requirements p {
	margin-bottom: 0.5rem;
}

.module-requirements p:last-child {
	margin-bottom: 0;
}

/* Responsive para módulos usercp */
@media (max-width: 768px) {
	.panel.panel-usercp-module .panel-body > .panel-title {
		font-size: 16px;
	}
	
	.panel.panel-usercp-module .usercp-table.table tbody td,
	.panel.panel-usercp-module .myaccount-table.table tr td {
		padding: 0.6rem;
		font-size: 0.9rem;
	}
	
	.panel.panel-usercp-module .character-avatar img {
		width: 80px;
	}
}

@media (max-width: 480px) {
	.panel.panel-usercp-module .panel-body > .panel-title {
		font-size: 14px;
		flex-wrap: wrap;
	}
	
	.panel.panel-usercp-module .usercp-table.table tbody td,
	.panel.panel-usercp-module .myaccount-table.table tr td {
		padding: 0.5rem;
		font-size: 0.85rem;
	}
	
	.panel.panel-usercp-module .btn-muchoco {
		padding: 6px 16px;
		font-size: 0.85rem;
	}
}

/* DOWNLOADS (DARK ORANGE THEME) - Compatible con Bootstrap */
.panel.panel-downloads {
	margin-bottom: 30px;
	/* Fondo oscuro manteniendo compatibilidad Bootstrap */
	background-color: var(--bg-card) !important;
	backdrop-filter: blur(20px);
	/* Borde gris oscuro con acento naranja */
	border: 1px solid var(--border-color) !important;
	border-radius: var(--border-radius) !important;
	/* Texto claro */
	color: var(--text-primary);
	box-shadow: var(--shadow-xl);
	transition: all var(--transition-normal);
	overflow: visible; /* Cambiado de hidden a visible para Bootstrap */
}

.panel.panel-downloads:hover {
	border-color: rgba(255, 107, 53, 0.5) !important;
	box-shadow: var(--shadow-glow);
}

/* Panel body - Manteniendo padding de Bootstrap pero mejorado */
.panel.panel-downloads .panel-body {
	padding: var(--spacing-md);
	background-color: transparent;
}

/* Panel title dentro del body - Estilo mejorado */
.panel.panel-downloads .panel-body > .panel-title {
	color: var(--primary-color) !important;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	border-bottom: 2px solid rgba(255, 107, 53, 0.3);
	padding-bottom: var(--spacing-sm);
	padding-top: 0;
	margin-top: 0;
	margin-bottom: var(--spacing-md) !important;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.panel.panel-downloads .panel-body > .panel-title i {
	font-size: 1.2rem;
	filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.4));
}

/* Tabla de descargas - Compatible con Bootstrap table */
.panel.panel-downloads .download-table.table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background-color: transparent;
	margin-bottom: 0;
	/* Sobrescribir estilos de general-table-ui si está presente */
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
	table-layout: auto !important;
}

/* Sobrescribir table-bordered específicamente para downloads */
.panel.panel-downloads .download-table.table-bordered {
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.panel.panel-downloads .download-table.table-bordered > tbody > tr > td,
.panel.panel-downloads .download-table.table-bordered > tbody > tr > th {
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.panel.panel-downloads .download-table.table tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all var(--transition-normal);
}

/* Sobrescribir table-striped de Bootstrap para tema oscuro */
.panel.panel-downloads .download-table.table-striped > tbody > tr:nth-of-type(odd) {
	background-color: rgba(255, 255, 255, 0.02) !important;
}

.panel.panel-downloads .download-table.table-striped > tbody > tr:nth-of-type(even) {
	background-color: transparent !important;
}

.panel.panel-downloads .download-table.table tr:last-child {
	border-bottom: none;
}

.panel.panel-downloads .download-table.table tr:hover {
	background-color: rgba(255, 107, 53, 0.1) !important;
	transform: translateX(5px);
}

.panel.panel-downloads .download-table.table td {
	padding: var(--spacing-sm) !important;
	vertical-align: middle !important;
	color: var(--text-primary);
	border-top: none;
	/* Sobrescribir text-align center de general-table-ui si está presente */
	text-align: left;
}

.panel.panel-downloads .download-table.table td.text-center {
	text-align: center !important;
}

.panel.panel-downloads .download-table.table td strong {
	color: var(--primary-color);
	font-weight: 600;
	display: block;
	margin-bottom: 0.3rem;
}

.download-description {
	font-size: 13px;
	display: block;
	margin-top: 0.3rem;
	color: var(--text-secondary);
	line-height: 1.4;
}

/* Sobrescribir table-striped de Bootstrap para tema oscuro en todos los paneles */
.panel .table-striped > tbody > tr:nth-of-type(odd) {
	background-color: rgba(255, 255, 255, 0.02) !important;
}

.panel .table-striped > tbody > tr:nth-of-type(even) {
	background-color: transparent !important;
}

/* Sobrescribir table-bordered de Bootstrap para tema oscuro en todos los paneles */
.panel .table-bordered {
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.panel .table-bordered > thead > tr > th,
.panel .table-bordered > tbody > tr > th,
.panel .table-bordered > tfoot > tr > th,
.panel .table-bordered > thead > tr > td,
.panel .table-bordered > tbody > tr > td,
.panel .table-bordered > tfoot > tr > td {
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.panel .table-bordered > thead > tr > th,
.panel .table-bordered > thead > tr > td {
	border-bottom-width: 2px;
	border-bottom-color: rgba(255, 107, 53, 0.3) !important;
}

/* INFO MODULE (DARK ORANGE THEME) - Compatible con Bootstrap */
.panel.panel-info-module {
	margin-bottom: 30px;
	/* Fondo oscuro manteniendo compatibilidad Bootstrap */
	background-color: var(--bg-card) !important;
	backdrop-filter: blur(20px);
	/* Borde gris oscuro con acento naranja */
	border: 1px solid var(--border-color) !important;
	border-radius: var(--border-radius) !important;
	/* Texto claro */
	color: var(--text-primary);
	box-shadow: var(--shadow-xl);
	transition: all var(--transition-normal);
	overflow: visible;
}

.panel.panel-info-module:hover {
	border-color: rgba(255, 107, 53, 0.5) !important;
	box-shadow: var(--shadow-glow);
}

/* Panel body - Manteniendo padding de Bootstrap pero mejorado */
.panel.panel-info-module .panel-body {
	padding: var(--spacing-md);
	background-color: transparent;
}

/* Panel title dentro del body - Estilo mejorado */
.panel.panel-info-module .panel-body > .panel-title {
	color: var(--primary-color) !important;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	border-bottom: 2px solid rgba(255, 107, 53, 0.3);
	padding-bottom: var(--spacing-sm);
	padding-top: 0;
	margin-top: 0;
	margin-bottom: var(--spacing-md) !important;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.panel.panel-info-module .panel-body > .panel-title i {
	font-size: 1.2rem;
	filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.4));
}

/* Tabla de información - Compatible con Bootstrap table */
.panel.panel-info-module .info-table.table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background-color: transparent;
	margin-bottom: 0;
}

/* Sobrescribir table-bordered específicamente para info */
.panel.panel-info-module .info-table.table-bordered {
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.panel.panel-info-module .info-table.table-bordered > thead > tr > th,
.panel.panel-info-module .info-table.table-bordered > tbody > tr > th,
.panel.panel-info-module .info-table.table-bordered > tbody > tr > td {
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.panel.panel-info-module .info-table.table-bordered > thead > tr > th {
	border-bottom: 2px solid rgba(255, 107, 53, 0.3) !important;
}

.panel.panel-info-module .info-table.table thead th {
	background-color: rgba(255, 107, 53, 0.1) !important;
	color: var(--primary-color) !important;
	border-bottom: 2px solid rgba(255, 107, 53, 0.3) !important;
	font-weight: bold;
	text-align: center;
	padding: var(--spacing-sm);
}

.panel.panel-info-module .info-table.table tbody tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all var(--transition-normal);
}

/* Sobrescribir table-striped de Bootstrap para tema oscuro */
.panel.panel-info-module .info-table.table-striped > tbody > tr:nth-of-type(odd) {
	background-color: rgba(255, 255, 255, 0.02) !important;
}

.panel.panel-info-module .info-table.table-striped > tbody > tr:nth-of-type(even) {
	background-color: transparent !important;
}

.panel.panel-info-module .info-table.table tbody tr:last-child {
	border-bottom: none;
}

.panel.panel-info-module .info-table.table tbody tr:hover {
	background-color: rgba(255, 107, 53, 0.1) !important;
	transform: translateX(3px);
}

.panel.panel-info-module .info-table.table tbody td {
	padding: var(--spacing-sm);
	vertical-align: middle !important;
	color: var(--text-primary);
	border-top: none;
}

.panel.panel-info-module .info-table.table tbody td strong {
	color: var(--text-primary);
	font-weight: 600;
}

.panel.panel-info-module .info-table.table tbody td i {
	color: var(--primary-color);
	margin-right: 0.5rem;
	font-size: 0.9rem;
}

/* Filas especiales (scope="row") */
.panel.panel-info-module .info-table.table tbody td[scope="row"] {
	font-weight: 600;
	color: var(--text-primary);
	background-color: rgba(255, 107, 53, 0.05);
}

.panel.panel-info-module .info-table.table tbody tr:hover td[scope="row"] {
	background-color: rgba(255, 107, 53, 0.15);
}

/* Código de comandos */
.panel.panel-info-module code {
	background-color: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 107, 53, 0.3);
	border-radius: 4px;
	padding: 2px 6px;
	font-family: 'Courier New', monospace;
	font-size: 0.9em;
	color: var(--primary-color) !important;
	font-weight: 600;
}

/* Contenedor de video */
.info-video-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	height: 0;
	overflow: hidden;
	border-radius: var(--border-radius);
	border: 1px solid rgba(255, 107, 53, 0.3);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	transition: all var(--transition-normal);
	background-color: rgba(0, 0, 0, 0.2);
}

.info-video-container:hover {
	border-color: rgba(255, 107, 53, 0.6);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.info-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Responsive para el módulo info */
@media (max-width: 768px) {
	.panel.panel-info-module .panel-body > .panel-title {
		font-size: 16px;
	}
	
	.panel.panel-info-module .info-table.table tbody td {
		padding: 0.6rem;
		font-size: 0.9rem;
	}
	
	.info-video-container {
		padding-bottom: 56.25%;
	}
}

@media (max-width: 480px) {
	.panel.panel-info-module .panel-body > .panel-title {
		font-size: 14px;
		flex-wrap: wrap;
	}
	
	.panel.panel-info-module .info-table.table tbody td {
		padding: 0.5rem;
		font-size: 0.85rem;
	}
	
	.panel.panel-info-module code {
		font-size: 0.8em;
		padding: 1px 4px;
	}
}
.online-status-indicator {
	margin-left: 5px;
}

/* WEBENGINE CMS */
.webengine-powered { color: #777 !important; }
.webengine-powered:active, .webengine-powered:hover { color: #ff3214 !important; }

/* GLOBAL TOP BAR */
.global-top-bar {
	width: 100%;
	background: #101010;
	color: #777777;
	padding: 7px 0px 2px 0px;
	text-transform: uppercase;
	font-size: 12px;
}
	.global-top-bar .global-top-bar-content {
		width: 1040px;
		margin: 0px auto;
	}
		.global-top-bar .global-top-bar-content .row {
			margin: 0px;
			padding: 0px;
		}
	.global-top-bar a.logout {
		color: #ff0000 !important;
	}
	.global-top-bar a {
		color: #999999 !important;
	}
	.global-top-bar a:hover {
		color: #ffffff !important;
	}
.global-top-bar-nopadding {
	padding: 0px !important;
}
.global-top-bar-separator {
	padding: 0px 5px;
}

/* LANGUAGE PICKER */
.webengine-language-switcher {
	display: inline-block;
	list-style: none;
	padding: 0px !important;
	margin: 0px !important;
	width: 46px;
	height: 19px;
	overflow: hidden;
	transition: all .3s ease;
}
.webengine-language-switcher:hover {
	width: 400px;
}
	.webengine-language-switcher li {
		display: inline-block;
		list-style-type: none;
		background: #333333;
		padding: 0px 5px 2px 5px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		-khtml-border-radius: 3px;
		transition: all .3s ease;
	}
	.webengine-language-switcher li:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}
	.webengine-language-switcher li a {
		color: #999999;
	}
	.webengine-language-switcher li a:hover {
		color: #ffffff !important;
	}

/* WEBSITE LOGO */
.webengine-mu-logo {
	transition: all .3s ease;
}
	.webengine-mu-logo:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

/* HEADER INFO */
.header-info-container {
	width: 1040px;
	margin: 0px auto;
	text-align: right;
}
	.header-info-container .header-info {
		display: inline-block;
		width: 350px;
		background: rgba(0, 0, 0, 0.3);
		backdrop-filter: blur(5px);
		margin: 0px;
		padding: 20px;
		overflow: auto;
		-moz-box-shadow: 0 0 15px rgba(0,0,0,0.7);
		-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.7);
		box-shadow: 0 0 15px rgba(0,0,0,0.7);
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		-khtml-border-radius: 5px;
		text-shadow: 1px 1px 3px #000000;
		color: #ffffff;
		border: 1px solid rgba(255,255,255,0.1);
		font-size: 12px;
	}
		.header-info-container .header-info .header-info-block {
			padding: 0px;
			color: #aaaaaa;
		}
		.header-info-container .header-info .header-info-block #tServerTime, .header-info-container .header-info .header-info-block #tLocalTime {
			color: #ffffff;
		}
		.header-info-container .header-info .header-info-block #tServerDate, .header-info-container .header-info .header-info-block #tLocalDate {
			color: #cccccc;
		}
		.header-info-container .header-info .header-info-block .online-count {
			color: #00ff00;
		}
	
/* ONLINE BAR */
.webengine-online-bar {
	width: 100%;
	background: #000000;
	border: 1px solid #555555;
	height: 8px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 0px;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -khtml-border-radius: 4px;
	overflow: hidden;
	transition: all .3s ease;
}
	.webengine-online-bar .webengine-online-bar-progress {
		height: 8px;
		background: #00ff00 url('../img/online_progress_bar.jpg') no-repeat left center;
		-webkit-border-radius: 0px 1px 1px 0px;
		-moz-border-radius: 0px 1px 1px 0px;
		-khtml-border-radius: 0px 1px 1px 0px;
		border-radius: 0px 1px 1px 0px;
	}
	.webengine-online-bar:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

/* MY ACCOUNT CHARACTER LIST */
.myaccount-character-block {
	background: #333;
	border: 1px solid #666;
	padding: 5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
	margin: 0px auto;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
	.myaccount-character-block img {
		width: 100px;
		height: auto;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-moz-box-shadow: 0 0 5px #000;
		-webkit-box-shadow: 0 0 5px #000;
		box-shadow: 0 0 5px #000;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
		.myaccount-character-block img:hover {
			-webkit-filter: brightness(120%);
			filter: brightness(120%);
		}
.myaccount-character-block-location {
	font-size: 12px;
	color: #000;
	margin-bottom: 20px;
	margin-top: 2px;
	line-height: 1.2;
}
.myaccount-character-block-level {
	position: relative;
	top: -77px;
	display: inline-block;
	background: rgba(0,0,0,0.5);
	padding: 0px 5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #fff;
	font-size: 10px;
}
.myaccount-character-name a {
	font-weight: bold;
	color: #000;
	font-size: 16px;
}

/* RANKINGS FILTER BY CLASS */

.rankings-class-filter {
	display: inline-block;
	list-style-type: none;
	margin: 20px auto;
	padding: 10px 20px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}

	.rankings-class-filter li {
		display: inline-block;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
		margin-bottom: 10px;
	}
	
	.rankings-class-filter li:hover {
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}

.rankings-class-filter-selection {
	display: inline-block;
	width: 75px;
	text-align: center;
	color: coral;
	font-size: 11px;
	cursor: pointer;
}

	.rankings-class-filter-selection:hover {
		color: #000000 !important;
	}

	.rankings-class-filter-selection:hover img {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

.rankings-class-filter-selection img {
	width: 40px;
	height: auto;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-khtml-border-radius: 50%;
	margin-bottom: 5px;
	-moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
}

.rankings-class-filter-grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}



.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
/* ALERTS MODULE (DARK ORANGE THEME) */

/* Base de la Alerta */
.alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	/* Color de texto claro por defecto */
	color: #ffffff; 
}
.alert h4 {
	margin-top: 0;
	color: inherit;
}
.alert .alert-link {
	font-weight: bold;
}
.alert > p,
.alert > ul {
	margin-bottom: 0;
}
.alert > p + p {
	margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
	padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
	position: relative;
	top: -2px;
	right: -21px;
	color: inherit;
	opacity: 0.8; /* Hace que el icono de cierre se vea mejor en fondos oscuros */
}

/* Alerta de Éxito (Success - Color Verde Oscuro/Lima) */
.alert-success {
	color: #d4edda; /* Texto Verde Claro */
	background-color: #155724; /* Fondo Verde Oscuro */
	border-color: #c3e6cb; /* Borde Verde Claro */
}
.alert-success hr {
	border-top-color: #92b899;
}
.alert-success .alert-link {
	color: #c6f6d5; /* Enlace Verde Más Claro */
}

/* Alerta de Información (Info - Color Azul Oscuro/Cian) */
.alert-info {
	color: #cce5ff; /* Texto Azul Claro */
	background-color: #004085; /* Fondo Azul Oscuro */
	border-color: #b8daff; /* Borde Azul Claro */
}
.alert-info hr {
	border-top-color: #8bb4e0;
}
.alert-info .alert-link {
	color: #d1ecf1; /* Enlace Cian Claro */
}

/* Alerta de Advertencia (Warning - Color Naranja Oscuro/Amarillo) */
.alert-warning {
	color: #fff3cd; /* Texto Amarillo Claro */
	background-color: #856404; /* Fondo Naranja/Oro Oscuro */
	border-color: #ffeeba; /* Borde Amarillo Claro */
}
.alert-warning hr {
	border-top-color: #bfa34a;
}
.alert-warning .alert-link {
	color: #fff7d5; /* Enlace Amarillo Más Claro */
}

/* Alerta de Peligro/Error (Danger - Color Naranja Oscuro/Rojo) */
.alert-danger {
	color: #f8d7da; /* Texto Rojo Claro */
	background-color: #721c24; /* Fondo Rojo Oscuro */
	border-color: #f5c6cb; /* Borde Rojo Claro */
}
.alert-danger hr {
	border-top-color: #e38d94;
}
.alert-danger .alert-link {
	/* Naranja Oscuro para el enlace de peligro (énfasis "Orange") */
	color: #ff8c00; 
}

.server-box-title {
    background: linear-gradient(90deg, #e4742c, #ff8f4a);
    color: #fff;
    text-align: center;
    padding: 12px 10px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px 6px 0 0;
    position: relative;
    overflow: hidden;
    transition: 0.25s ease-in-out;
    box-shadow: 0 0 12px #e4742c77;
    animation: pulseGlow 3s infinite ease-in-out;
}

/* Línea brillante que se mueve */
.server-box-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, #ffffff55, transparent);
    transform: skewX(-20deg);
    animation: shineMove 3s infinite;
}

/* Hover suave */
.server-box-title:hover {
    transform: scale(1.02);
    box-shadow: 0 0 18px #ff9b5a;
}

/* Animación del brillo */
@keyframes shineMove {
    0% { left: -100%; }
    50% { left: 130%; }
    100% { left: 130%; }
}

/* Efecto de pulso */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px #e4742c66; }
    50% { box-shadow: 0 0 20px #ff9b5a; }
    100% { box-shadow: 0 0 10px #e4742c66; }
}

<style>
    .drops-box-title {
        background: #e4742c;
        color: #fff;
        text-align: center;
        padding: 10px 10px;
        font-weight: 800;
        font-size: 17px;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-radius: 6px 6px 0 0;
    }

    .drops-box-body {
        padding: 15px 18px 18px 18px;
        color: #f1f1f1;
    }

    .drops-list {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .drops-list li {
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        font-size: 14px;
    }

    .drops-list li i {
        margin-right: 6px;
        color: #e4742c;
        font-size: 13px;
    }

    .drops-list a {
        color: #f1f1f1;
        text-decoration: none;
        transition: color .2s, text-shadow .2s;
        cursor: pointer;
    }

    .drops-list a:hover {
        color: #ffd27b;
        text-shadow: 0 0 5px rgba(255, 210, 123, 0.7);
    }

    .drop-modal-list {
        list-style: disc;
        padding-left: 20px;
        margin: 0;
        column-count: 2;
        column-gap: 40px;
    }

    .drop-modal-list.single-col {
        column-count: 1;
    }

    .drop-modal-list li {
        margin-bottom: 4px;
    }

    .drop-guide-data {
        display: none; /* oculto, solo para que JS copie el contenido */
    }
</style>

<style>
/* =========================
   ESTILOS MODALES KUNDUN
   ========================= */
.kundun-modal .modal-dialog {
    max-width: 520px;
    margin: 70px auto;
}

.kundun-modal .modal-content {
    background: #141522;
    color: #f1f1f1;
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 0 0 25px rgba(0,0,0,0.7);
}

/* HEADER */
.kundun-modal .modal-header {
    border-bottom: 1px solid #333;
    padding: 12px 18px;
}

.kundun-modal .modal-header .close {
    float: right;              /* X a la derecha */
    font-size: 22px;
    color: #fff;
    opacity: .8;
}

.kundun-modal .modal-header .close:hover {
    opacity: 1;
}

.kundun-modal .modal-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}

/* BODY */
.kundun-modal .modal-body {
    padding: 15px 25px 10px;
    max-height: 430px;         /* limita alto total */
    overflow-y: auto;          /* scroll interno si hay muchos ítems */
    font-size: 14px;
}

.kundun-modal .kundun-subtitle {
    font-weight: 700;
    margin-bottom: 8px;
}

.kundun-modal .kundun-list {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
    column-count: 2;
    column-gap: 35px;
}

.kundun-modal .kundun-list li {
    margin-bottom: 4px;
}

/* MOBILE: 1 sola columna */
@media (max-width: 480px) {
    .kundun-modal .kundun-list {
        column-count: 1;
    }
}

/* FOOTER */
.kundun-modal .modal-footer {
    border-top: 1px solid #333;
    text-align: center;
    padding: 10px 0 14px;
}

.kundun-modal .modal-footer .btn {
    min-width: 120px;
    border-radius: 4px;
    font-weight: 600;
    background: #ff7b31;
    border-color: #ff7b31;
}

.kundun-modal .modal-footer .btn:hover {
    background: #ff8f4f;
    border-color: #ff8f4f;
}
</style>

/* Items del drop acomodados en filas */
.kundun-drop-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px; /* espacio entre ítems */
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.kundun-drop-list li {
    width: auto;
    white-space: nowrap;
    font-size: 13px;
    color: #fff;
}
.server-info-card {
    background: #141522;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.35);
    margin-bottom: 25px;
}

.server-info-header {
    background: #e4742c;
    padding: 0;
    border-bottom: 1px solid #333;
    transition: all .2s ease;
}

.server-info-header:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,.45);
}

.server-info-toggle {
    width: 100%;
    text-align: left;
    padding: 12px 18px;
    color: #fff !important;         /* para que NO quede azul */
    text-decoration: none !important;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.server-info-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-info-arrow {
    transition: transform .25s ease;
}

.server-info-arrow.rotate {
    transform: rotate(180deg);
}

<style>
.item-icon {
    margin-right: 6px;
    font-size: 14px;
    opacity: .85;
}
</style>
<style>
    /* Solo uno visible a la vez en CUSTOM MIX */
    .cm-content {
        display: none;
    }
    .cm-content.active {
        display: block;
    }
</style>

<style>
/* ============================================
   DESCARGAS — FONDOS OSCUROS COMO MUCHOCO.NET
===============================================*/

/* Fondo del panel de descargas */
.server-info-card,
.server-info-body {
    background: #191919 !important; /* el fondo oscuro de MuChoco */
    color: #f1f1f1;
}

/* Subtítulos tipo "Clientes / Parches / Tools" */
.kundun-subtitle {
    background: #e4742c;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Fondo de la tabla - Específico para evitar conflictos con Bootstrap */
.panel.panel-downloads .download-table.table {
    background-color: transparent !important;
    color: var(--text-primary) !important;
}

/* Celdas - Manteniendo compatibilidad Bootstrap */
.panel.panel-downloads .download-table.table td,
.panel.panel-downloads .download-table.table th {
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-primary) !important;
}

/* Hover de las filas - Más específico */
.panel.panel-downloads .download-table.table tbody tr:hover {
    background-color: rgba(255, 107, 53, 0.1) !important;
}

/* Descripción del archivo - Específica para panel downloads */
.panel.panel-downloads .download-table.table .download-description {
    color: var(--text-secondary) !important;
    font-size: 13px !important;
}

/* Botón DESCARGAR en tabla de descargas - Compatible con Bootstrap btn */
.panel.panel-downloads .download-table.table a.btn,
.panel.panel-downloads .download-table.table .btn-muchoco {
    background-color: var(--primary-color) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.panel.panel-downloads .download-table.table a.btn:hover,
.panel.panel-downloads .download-table.table .btn-muchoco:hover {
    background-color: var(--primary-light) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Botones internos (Clientes / Parches / Tools) */
.kundun-btn {
    background: #111 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
}

.kundun-btn.active {
    background: #e4742c !important;
    border-color: #e4742c !important;
    color: #fff !important;
}

/* Flecha del acordeón */
.server-info-arrow.rotate {
    transform: rotate(180deg);
}

.btn-muchoco {
    background: #e4742c !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 4px;
    transition: 0.2s;
}

.btn-muchoco:hover {
    background: #ff8b39 !important;
    color: #ffffff !important;
}
.btn-muchoco {
    background: #e4742c !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 4px;
    transition: 0.2s;
}

.btn-muchoco:hover {
    background: #ff8b39 !important;
    color: #ffffff !important;
}


/* ===== ÚLTIMOS KILLS PVP ===== */
.pvp-kills-container {
  position: relative;
  overflow: hidden;
  height: 245px; /* Altura para mostrar aproximadamente 7 items */
  letter-spacing: 2px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 20px;
}

.pvp-kills-list {
  margin-bottom: 0 !important;
  position: relative;
  padding: 10px;
  animation: marquee 30s linear infinite;
  animation-play-state: running;
  display: flex;
  flex-direction: column;
}

.pvp-kills-list-original,
.pvp-kills-list-clone {
  flex-shrink: 0;
}

.pvp-kills-container:hover .pvp-kills-list {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); } /* Exactamente la altura de la primera mitad */
}

.pvp-kill-item {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: #e2e8f0;
  display: flex;
  align-items: center;
}

.pvp-kill-item:last-child {
  border-bottom: none;
}

.pvp-player-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.pvp-player-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pvp-killer-wrapper,
.pvp-victim-wrapper {
  display: inline-flex;
  align-items: center;
  margin: 0 2px;
}

.pvp-killer {
  color: #10b981;
  font-weight: 600;
}

.pvp-victim {
  color: #ef4444;
  font-weight: 600;
}

.pvp-map {
  color: #60a5fa;
  font-weight: 600;
}

.pvp-time {
  color: #94a3b8;
  font-size: 11px;
  margin-left: 5px;
  font-style: italic;
}

/* Efecto hover */
.pvp-kill-item:hover {
  background: rgba(15, 23, 42, 0.3);
}

/* Responsive */
@media (max-width: 400px) {
  .pvp-kill-item {
    font-size: 11px;
  }
  
  .pvp-time {
    font-size: 10px;
  }
  
  .pvp-player-icon {
    width: 16px;
    height: 16px;
  }
}
.achievement-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #ff6600;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 102, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}
.achievement-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 102, 0, 0.2);
    border-color: #ff8800;
}
.achievement-header {
    border-bottom: 2px solid #ff6600;
    padding-bottom: 15px;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.achievement-header h5 {
    color: #ff6600;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
    font-size: 16px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.achievement-header .completed {
    color: #00ff88;
}
.achievement-header .not-completed {
    color: #888888;
}
.achievement-image {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}
.achievement-image img {
    width: 120px;
    height: 120px;
    max-width: 100%;
    border: 2px solid #ff6600;
    border-radius: 8px;
    padding: 5px;
    background: rgba(255, 102, 0, 0.1);
    object-fit: contain;
}
.achievement-description {
    width: 100%;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}
.achievement-divider {
    border: none;
    border-top: 1px solid #ff6600;
    margin: 15px 0;
    opacity: 0.5;
}
.achievement-reward {
    background: rgba(255, 102, 0, 0.15);
    border-left: 4px solid #ff6600;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}
.achievement-reward .reward-label {
    color: #ff6600;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.achievement-reward .reward-text {
    color: #ffffff;
    font-size: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.achievement-time {
    color: #ffaa44;
    font-size: 13px;
    text-align: center;
    padding-top: 10px;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Media Queries para Responsive */
@media (max-width: 767px) {
    .achievement-container {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .achievement-header {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    
    .achievement-header h5 {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .achievement-image img {
        width: 100px;
        height: 100px;
    }
    
    .achievement-description {
        font-size: 13px;
        padding: 8px;
        line-height: 1.5;
    }
    
    .achievement-reward {
        padding: 10px 12px;
    }
    
    .achievement-reward .reward-label {
        font-size: 11px;
    }
    
    .achievement-reward .reward-text {
        font-size: 14px;
    }
    
    .achievement-time {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .achievement-container {
        padding: 12px;
        margin-bottom: 12px;
        border-width: 1px;
    }
    
    .achievement-header {
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom-width: 1px;
    }
    
    .achievement-header h5 {
        font-size: 13px;
        line-height: 1.2;
    }
    
    .achievement-image {
        margin-bottom: 12px;
    }
    
    .achievement-image img {
        width: 80px;
        height: 80px;
        padding: 3px;
    }
    
    .achievement-description {
        font-size: 12px;
        padding: 8px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .achievement-divider {
        margin: 12px 0;
    }
    
    .achievement-reward {
        padding: 8px 10px;
        margin-bottom: 8px;
        border-left-width: 3px;
    }
    
    .achievement-reward .reward-label {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .achievement-reward .reward-text {
        font-size: 13px;
    }
    
    .achievement-time {
        font-size: 11px;
        padding-top: 8px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .achievement-container {
        padding: 18px;
    }
    
    .achievement-image img {
        width: 110px;
        height: 110px;
    }
}

/* Asegurar que el row no desborde */
.row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (max-width: 575px) {
    .row > [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.deidad-monsterkills-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    padding: 20px 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.deidad-monsterkills-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 102, 0, 0.1);
    box-sizing: border-box;
    overflow-x: hidden;
}

.deidad-monsterkills-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
}

.deidad-monsterkills-item {
    flex: 0 0 auto;
    width: 280px;
    max-width: 280px;
    min-width: 280px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #ff6600;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.deidad-monsterkills-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 102, 0, 0.2);
    border-color: #ff8800;
}

.deidad-monsterkills-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #ff6600;
}

.deidad-monsterkills-item h3 {
    color: #ff6600;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.deidad-monsterkills-item p {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

.deidad-monsterkills-item .kill-info {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 102, 0, 0.3);
}

.deidad-monsterkills-item .kill-info-item {
    color: #b0b0b0;
    font-size: 12px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.deidad-monsterkills-item .kill-info-item i {
    color: #ff6600;
    width: 16px;
}

.deidad-monsterkills-item .kill-player {
    color: #ffaa44;
    font-weight: bold;
}

.deidad-monsterkills-item p img {
    width: 30px !important;
    height: 30px !important;
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px;
}

.deidad-monsterkills-item .kill-time {
    color: #00ff88;
    font-style: italic;
}

.deidad-monsterkills-item .kill-location {
    color: #88aaff;
}

.deidad-monsterkills-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 102, 0, 0.8);
    border: 2px solid #ff6600;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.deidad-monsterkills-nav:hover {
    background: rgba(255, 102, 0, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.deidad-monsterkills-nav.prev {
    left: 10px;
}

.deidad-monsterkills-nav.next {
    right: 10px;
}

.deidad-monsterkills-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.deidad-monsterkills-nav:disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 102, 0, 0.8);
}

.deidad-monsterkills-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
}

.deidad-monsterkills-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.3);
    border: 2px solid #ff6600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deidad-monsterkills-indicator.active {
    background: #ff6600;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.6);
}

.deidad-monsterkills-indicator:hover {
    background: rgba(255, 102, 0, 0.6);
}
.avatardeidad { 
    width: 30px !important;
    height: 30px !important;
    display: inline-block;
    vertical-align: middle;
}

.deidad-monsterkills-item .avatardeidad {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain;
}

/* Media Queries para Responsive */
@media (min-width: 768px) {
    .deidad-monsterkills-item {
        width: calc((100% - 140px) / 2);
        max-width: 250px;
        min-width: 200px;
    }
    
    .deidad-monsterkills-track {
        padding: 20px 60px;
    }
}

@media (min-width: 1024px) {
    .deidad-monsterkills-item {
        width: calc((100% - 160px) / 3);
        max-width: 300px;
        min-width: 200px;
    }
}

@media (min-width: 1200px) {
    .deidad-monsterkills-item {
        width: calc((100% - 180px) / 4);
        max-width: 300px;
        min-width: 200px;
    }
}

/* Ajustes para móviles */
@media (max-width: 767px) {
    .deidad-monsterkills-wrapper {
        margin: 15px 0;
        padding: 10px 0;
        overflow-x: hidden;
    }
    
    .deidad-monsterkills-container {
        overflow-x: hidden;
    }
    
    .deidad-monsterkills-track {
        padding: 15px 50px;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    .deidad-monsterkills-item {
        width: calc(100% - 20px);
        max-width: 280px;
        min-width: 200px;
        padding: 15px;
    }
    
    .deidad-monsterkills-item img {
        width: 80px;
        height: 80px;
    }
    
    .deidad-monsterkills-item h3 {
        font-size: 16px;
    }
    
    .deidad-monsterkills-item p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .deidad-monsterkills-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .deidad-monsterkills-nav.prev {
        left: 5px;
    }
    
    .deidad-monsterkills-nav.next {
        right: 5px;
    }
    
    .deidad-monsterkills-indicators {
        margin-top: 15px;
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .deidad-monsterkills-track {
        padding: 10px 45px;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    .deidad-monsterkills-item {
        width: calc(100% - 20px);
        max-width: 260px;
        min-width: 180px;
        padding: 12px;
    }
    
    .deidad-monsterkills-item img {
        width: 60px;
        height: 60px;
    }
    
    .deidad-monsterkills-item h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .deidad-monsterkills-item p {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .deidad-monsterkills-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}



/* Estilos generales de la tabla de horarios (Modo Oscuro) */
.schedules {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    color: #f0f0f0; /* Texto claro por defecto */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* Sombra más pronunciada */
    overflow: hidden;
}

/* Estilos para cada fila de la tabla */
.schedules tr {
    border-bottom: 1px solid #333; /* Separador oscuro */
}

/* Estilo para la celda (td) que contiene toda la información del evento */
.schedules td {
    padding: 5px 8px;
    line-height: 1.2;
    display: block;
}

/* Efecto de hover en las filas */
.schedules tr:hover {
    background-color: #2a2a2a; /* Fondo más claro al pasar el ratón */
    transition: background-color 0.3s ease;
}

/* Estilos para el nombre del evento (clase .ename) */
.schedules .ename {
    font-weight: bold;
    font-size: 1.1em;
    color: #e0e0e0; /* Color claro para el nombre */
    display: inline-block;
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Estilos para "Left Time" y "Server Time" (clase .other) */
.schedules .other {
    font-size: 0.9em;
    color: #a0a0a0; /* Color gris suave */
    margin-right: 10px;
}

/* Ajuste para el texto que flota a la derecha ("Left Time") */
.schedules .other[style="float:right"] {
    font-weight: 600;
    color: #c0c0c0; /* Color más visible */
    margin-right: 0;
}

/* Estilos para el tiempo restante (clase .sortTable .timepro) */
.schedules .sortTable.timepro {
    font-weight: bold;
    font-size: .8em;
    padding: 2px 6px;
    border-radius: 4px;
    float: right;
    clear: right;
    margin-top: 5px;
    /* Ajustado para el modo oscuro, el texto del contador debe ser oscuro */
    color: #1e1e1e;
}

/* Estilo específico para eventos que están a punto de comenzar (clase .ontime) */
.schedules .timepro.ontime {
    background: #2e3825;
    border: 1px solid #7a8540;
    border-radius: 6px;
    color: #d6d1b1;
    box-shadow: 0 1px 3px rgba(76, 175, 80, 0.4);
}

/* Estilo específico para eventos que están en el futuro (clase .outtime) */
.schedules .timepro.outtime {
background: rgb(255 159 34 / .2);
    border: 1px solid #ff9f00;
    border-radius: 6px;
	color: aliceblue;
}

/* Limpieza de floats */
.schedules td:after {
    content: "";
    display: table;
    clear: both;
}

/* Media query para pantallas pequeñas (móviles) */
@media (max-width: 600px) {
    .schedules td {
        padding: 12px 15px;
    }

    .schedules .ename,
    .schedules .other {
        font-size: 1em;
    }
}

/* Nuevas reglas para la funcionalidad de expansión */
.schedules-container {
    /* El contenedor es esencial para limitar la altura */
    max-height: 400px;
    overflow: hidden;
    position: relative; /* Necesario para posicionar el gradiente y el botón */
    transition: max-height 0.5s ease-out; /* Animación de expansión */
}

/* Clase para expandir el contenedor */
.schedules-container.expanded {
    max-height: 3000px; /* Un valor grande para que se muestre todo */
    overflow: visible;
}

/* Gradiente de desvanecimiento para indicar que el contenido está oculto */
.schedules-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px; /* Altura del desvanecimiento */
    background: linear-gradient(to top, #1e1e1e, transparent); /* Gradiente del modo oscuro */
    pointer-events: none; /* Permite hacer clic a través del gradiente */
    opacity: 1;
    transition: opacity 0.5s;
}

/* Ocultar el gradiente cuando se expande */
.schedules-container.expanded::after {
    opacity: 0;
    height: 0;
}

/* Estilo para el botón de expansión */
#expand-button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: -10px; /* Solapa ligeramente con el contenedor */
    text-align: center;
    cursor: pointer;
    background-color: #383838; /* Fondo del botón */
    color: #fff;
    border: none;
    border-top: 2px solid #555;
    border-radius: 0 0 8px 8px; /* Solo esquinas inferiores */
    font-weight: bold;
    transition: background-color 0.3s;
}

#expand-button:hover {
    background-color: #505050;
}
