/* Frontend Styles - Nexora VE Networks shared theme */

/* Protección contra selección de texto */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Permitir selección en inputs y textareas */
input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevenir arrastrar imágenes */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Permitir clics en imágenes que son enlaces o botones */
a img,
button img,
img[onclick] {
    cursor: pointer;
}
:root {
    --mu-gold: #eda93a;
    --mu-blue: #eda93a;
    --mu-blue-light: #ffd37a;
    --mu-purple: #913dff;
    --mu-red: #e74c3c;
    --mu-dark: #0d090f;
    --mu-darker: #050305;
    --mu-card: #171019;
    --mu-border: #3b2c2f;
    --text-primary: #fff8e9;
    --text-secondary: #cdbdad;
    --shadow-glow: rgba(238, 169, 58, 0.3);
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: var(--mu-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.6) contrast(1.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Glass effect overlay */
        linear-gradient(135deg, rgba(5, 8, 16, 0.7) 0%, rgba(10, 14, 39, 0.6) 100%),
        /* Mantener colores originales con glassmorphism */
        radial-gradient(circle at 20% 50%, rgba(145, 61, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(238, 169, 58, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: -1;
}

/* Particle Background - Mantener encima del video */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(145, 61, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(238, 169, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: particleMove 20s ease-in-out infinite;
    mix-blend-mode: screen;
}

@keyframes particleMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mu-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--mu-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-brand i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--mu-gold), var(--mu-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 5px var(--mu-gold)); }
    50% { filter: drop-shadow(0 0 20px var(--mu-gold)); }
}

.brand-highlight {
    color: var(--mu-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mu-gold), var(--mu-blue));
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--mu-gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--mu-gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(145, 61, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-glow {
    display: block;
    font-size: 0.6em;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.title-main {
    background: linear-gradient(135deg, var(--mu-gold), var(--mu-blue), var(--mu-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(238, 169, 58, 0.5);
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--mu-blue), var(--mu-blue-light));
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(238, 169, 58, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 169, 58, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--mu-gold);
    border: 2px solid var(--mu-gold);
}

.btn-secondary:hover {
    background: var(--mu-blue);
    color: var(--text-primary);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--mu-gold);
}

.section-title i {
    font-size: 2rem;
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    position: relative;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card-wrapper {
    position: relative;
}

.category-card {
    background: var(--mu-card);
    border: 2px solid var(--mu-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card-wrapper:hover .category-card {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(145, 61, 255, 0.4);
    border-color: var(--category-color, var(--mu-gold));
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.category-card-wrapper:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    animation: none;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.category-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--mu-gold);
    transition: color 0.3s ease;
}

.category-card-wrapper:hover .category-card h3 {
    color: var(--category-color, var(--mu-gold));
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(145, 61, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--mu-blue);
    transition: all 0.3s ease;
}

.category-card-wrapper:hover .category-count {
    background: var(--category-color, rgba(145, 61, 255, 0.3));
    color: var(--text-primary);
}

.category-chevron {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.category-card-wrapper:hover .category-chevron {
    transform: rotate(180deg);
}

/* Subcategorías Dropdown */
.subcategories-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--mu-card);
    border: 2px solid var(--mu-border);
    border-radius: 16px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.category-card-wrapper:hover .subcategories-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
    border-color: var(--category-color, var(--mu-gold));
}

.subcategories-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.subcategory-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subcategory-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--category-color, var(--mu-gold));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.subcategory-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(145, 61, 255, 0.2);
}

.subcategory-item:hover::before {
    transform: scaleY(1);
}

.subcategory-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.subcategory-item:hover .subcategory-icon {
    transform: scale(1.1) rotate(5deg);
}

.subcategory-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.subcategory-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.subcategory-count {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.subcategory-arrow {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-5px);
}

.subcategory-item:hover .subcategory-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--category-color, var(--mu-gold));
}

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(145, 61, 255, 0.3);
    border-color: var(--mu-gold);
}

.guide-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    overflow: hidden;
    background: var(--mu-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-card-image img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
    display: block;
    margin: 0;
    padding: 0;
}

.guide-card:hover .guide-card-image img {
    transform: scale(1.1);
}

.guide-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.8) 100%);
}

.guide-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.guide-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.guide-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.guide-card h3 a:hover {
    color: var(--mu-gold);
}

.guide-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex: 1;
}

.guide-card-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.guide-card-meta i {
    margin-right: 0.25rem;
}

.guide-card-link {
    color: var(--mu-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.guide-card-link:hover {
    gap: 1rem;
}

/* News Section */
.news-section {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(145, 61, 255, 0.05) 50%, transparent 100%);
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(238, 169, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.news-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mu-gold), var(--mu-blue), var(--mu-gold), transparent);
    opacity: 0.6;
    animation: newsLine 4s ease-in-out infinite;
}

@keyframes newsLine {
    0%, 100% { opacity: 0.4; transform: scaleX(1); }
    50% { opacity: 0.8; transform: scaleX(1.1); }
}

.news-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.news-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-icon {
    position: relative;
    font-size: 2rem;
    color: var(--mu-gold);
    animation: newsIconPulse 2s ease-in-out infinite;
}

.news-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--mu-gold);
    border-radius: 50%;
    animation: newsPulse 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes newsIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes newsPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.breaking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: breakingGlow 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
}

@keyframes breakingGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(231, 76, 60, 0.9);
        transform: scale(1.05);
    }
}

.news-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin: 0;
}

.news-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Featured News Card */
.news-featured {
    grid-column: 1 / -1;
    background: var(--mu-card);
    border: 2px solid var(--mu-border);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: newsFadeIn 0.8s ease-out;
}

@keyframes newsFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 169, 58, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.news-featured:hover {
    transform: translateY(-5px);
    border-color: var(--mu-gold);
    box-shadow: 0 20px 40px rgba(145, 61, 255, 0.4);
}

.news-featured:hover::before {
    opacity: 1;
}

.news-card-image {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.news-card-image img,
.news-placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(145, 61, 255, 0.2), rgba(238, 169, 58, 0.2));
    font-size: 4rem;
    color: var(--mu-blue);
}

.news-featured:hover .news-card-image img {
    transform: scale(1.1);
}

.news-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 16, 0.7) 100%);
    transition: opacity 0.4s ease;
}

.news-featured:hover .news-image-overlay {
    opacity: 0.8;
}

.news-breaking-label,
.news-featured-label {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(231, 76, 60, 0.95);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: labelFloat 3s ease-in-out infinite;
}

.news-featured-label {
    top: auto;
    bottom: 1.5rem;
    background: rgba(238, 169, 58, 0.95);
}

@keyframes labelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.news-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-meta i {
    color: var(--mu-blue);
    font-size: 0.9rem;
}

.news-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-card-title a {
    background: linear-gradient(135deg, var(--mu-gold), var(--mu-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-featured:hover .news-card-title a {
    filter: brightness(1.2);
}

.news-card-excerpt {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--mu-gold), var(--mu-blue));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.news-read-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.news-read-more:hover::before {
    width: 300px;
    height: 300px;
}

.news-read-more:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(238, 169, 58, 0.5);
}

.news-read-more i {
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(5px);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.news-item {
    background: var(--mu-card);
    border: 2px solid var(--mu-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: newsItemFadeIn 0.6s ease-out backwards;
    position: relative;
}

@keyframes newsItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(238, 169, 58, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.news-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--mu-gold);
    box-shadow: 0 15px 35px rgba(145, 61, 255, 0.4);
}

.news-item:hover::before {
    opacity: 1;
}

.news-card-image-small {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-card-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-item:hover .news-card-image-small img {
    transform: scale(1.15);
}

.news-card-content-small {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.news-meta-small {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.news-date-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-breaking-tag {
    color: var(--mu-red);
    font-size: 0.9rem;
    animation: firePulse 1.5s ease-in-out infinite;
}

@keyframes firePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.news-item-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-item-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    background: linear-gradient(135deg, var(--text-primary), var(--mu-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-item:hover .news-item-title a {
    filter: brightness(1.3);
}

.news-item-excerpt {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-item-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mu-blue);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-item-link i {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.news-item:hover .news-item-link {
    color: var(--mu-gold);
}

.news-item:hover .news-item-link i {
    transform: translateX(5px);
}

/* News Placeholders */
.news-placeholder {
    opacity: 0.7;
}

.news-placeholder-content {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.news-placeholder-content i {
    font-size: 3rem;
    color: var(--mu-blue);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.news-placeholder-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.news-placeholder-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.news-placeholder-image-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(145, 61, 255, 0.15), rgba(238, 169, 58, 0.15));
    font-size: 2rem;
    color: var(--mu-blue);
    opacity: 0.5;
}

.news-placeholder-item {
    opacity: 0.6;
    border-style: dashed;
}

.news-placeholder-item-content {
    text-align: center;
    padding: 1rem 0;
    color: var(--text-secondary);
}

.news-placeholder-item-content i {
    font-size: 1.5rem;
    color: var(--mu-blue);
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.news-placeholder-item-content p {
    font-size: 0.875rem;
    margin: 0;
}

/* Featured & Recent Sections */
.featured-section,
.recent-section {
    padding: 5rem 0;
}

/* Guides List */
.guides-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guide-list-item {
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.guide-list-item:hover {
    transform: translateX(10px);
    border-color: var(--mu-gold);
    box-shadow: 0 5px 20px rgba(145, 61, 255, 0.3);
}

.guide-list-content {
    flex: 1;
}

.guide-category-small {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guide-list-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.guide-list-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.guide-list-content h3 a:hover {
    color: var(--mu-gold);
}

.guide-list-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.guide-list-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.guide-list-meta span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.btn-read-more {
    color: var(--mu-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.btn-read-more:hover {
    gap: 1rem;
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(145, 61, 255, 0.1), rgba(238, 169, 58, 0.1));
    border-bottom: 1px solid var(--mu-border);
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--mu-gold);
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Guides Page */
.guides-page {
    padding: 3rem 0;
}

.filters-section {
    margin-bottom: 3rem;
}

.filters-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    gap: 0.5rem;
    position: relative;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 1rem;
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--mu-gold);
    box-shadow: 0 0 0 3px rgba(238, 169, 58, 0.2);
}

.filter-group select {
    padding: 1rem;
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
}

.btn-search {
    padding: 1rem 2rem;
    background: var(--mu-blue);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-search:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(238, 169, 58, 0.4);
}

.search-group {
    position: relative;
}

.search-loading {
    position: absolute;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mu-gold);
    font-size: 1rem;
    pointer-events: none;
    z-index: 10;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.btn-clear-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-clear-filters:hover {
    background: #ef4444;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results i {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--mu-gold);
}

.no-results p {
    color: var(--text-secondary);
}

/* Guide Detail */
.guide-detail {
    padding: 3rem 0;
}

.guide-header-detail {
    margin-bottom: 3rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--mu-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--mu-gold);
}

.guide-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-header-detail h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.guide-meta-detail {
    display: flex;
    gap: 2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.guide-meta-detail span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    max-width: 100%;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.guide-featured-image img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 16px;
}

.guide-body-detail {
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 16px;
    padding: 3rem;
}

.guide-excerpt-box {
    padding: 1.5rem;
    background: rgba(145, 61, 255, 0.1);
    border-left: 4px solid var(--mu-gold);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.guide-excerpt-box p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.guide-content {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.125rem;
    word-wrap: break-word;
}

/* Estilos para el contenido HTML renderizado */
.guide-content h1,
.guide-content h2,
.guide-content h3,
.guide-content h4,
.guide-content h5,
.guide-content h6 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.guide-content h1 { font-size: 2.5rem; }
.guide-content h2 { font-size: 2rem; }
.guide-content h3 { font-size: 1.75rem; }
.guide-content h4 { font-size: 1.5rem; }
.guide-content h5 { font-size: 1.25rem; }
.guide-content h6 { font-size: 1.125rem; }

.guide-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.guide-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: block;
}

.guide-content ul,
.guide-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.guide-content li {
    margin-bottom: 0.75rem;
}

.guide-content code {
    background: rgba(145, 61, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--mu-gold);
}

.guide-content pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border-left: 4px solid var(--mu-gold);
}

.guide-content pre code {
    background: transparent;
    padding: 0;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.guide-content blockquote {
    border-left: 4px solid var(--mu-gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-style: italic;
}

.guide-content a {
    color: var(--mu-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.guide-content a:hover {
    color: var(--mu-gold);
    text-decoration: underline;
}

.guide-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.guide-content table th,
.guide-content table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--mu-border);
    text-align: left;
}

.guide-content table th {
    background: rgba(145, 61, 255, 0.2);
    color: var(--mu-gold);
    font-weight: 600;
}

.guide-content table td {
    color: var(--text-secondary);
}

.guide-content strong,
.guide-content b {
    color: var(--text-primary);
    font-weight: 600;
}

.guide-content em,
.guide-content i {
    font-style: italic;
}

.related-guides {
    margin-top: 4rem;
}

.related-guides h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--mu-gold);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.related-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-guide-card {
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-guide-card:hover {
    transform: translateY(-5px);
    border-color: var(--mu-gold);
    box-shadow: 0 10px 30px rgba(145, 61, 255, 0.3);
}

.related-guide-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, rgba(5, 8, 16, 1) 100%);
    border-top: 2px solid var(--mu-border);
    padding: 4rem 0 0;
    margin-top: 5rem;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(238, 169, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(145, 61, 255, 0.08) 0%, transparent 50%);
    animation: footerGradient 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes footerGradient {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--mu-gold) 20%, 
        var(--mu-blue) 50%, 
        var(--mu-gold) 80%, 
        transparent 100%);
    opacity: 0.8;
    animation: footerLine 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes footerLine {
    0%, 100% { 
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.05);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--mu-border);
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out backwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Brand Section */
.footer-brand {
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-logo::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--mu-gold), var(--mu-blue));
    border-radius: 2px;
    animation: logoLine 1s ease-out 0.5s forwards;
}

@keyframes logoLine {
    to {
        height: 60px;
    }
}

.footer-logo i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--mu-gold), var(--mu-blue), var(--mu-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoGradient 3s ease infinite, logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(238, 169, 58, 0.5));
    position: relative;
    z-index: 1;
}

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

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--mu-gold), var(--mu-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.footer-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--mu-gold), var(--mu-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-brand:hover .footer-description::before {
    opacity: 0.6;
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.footer-server-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.server-badge,
.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(145, 61, 255, 0.15);
    border: 1px solid rgba(145, 61, 255, 0.3);
    border-radius: 12px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.server-badge::before,
.version-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(145, 61, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.server-badge:hover::before,
.version-badge:hover::before {
    width: 200px;
    height: 200px;
}

.server-badge:hover,
.version-badge:hover {
    background: rgba(145, 61, 255, 0.3);
    border-color: var(--mu-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(145, 61, 255, 0.4);
}

.server-badge i,
.version-badge i {
    color: var(--mu-blue);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.server-badge:hover i,
.version-badge:hover i {
    color: var(--mu-gold);
    transform: rotate(360deg) scale(1.2);
}

/* Footer Sections */
.footer-section {
    position: relative;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    color: var(--mu-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
    display: inline-block;
}

.footer-title::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--mu-gold), var(--mu-blue));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section:hover .footer-title::before {
    opacity: 1;
    animation: titleBar 0.5s ease;
}

@keyframes titleBar {
    0% { height: 0; }
    100% { height: 20px; }
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--mu-gold), var(--mu-blue), transparent);
    animation: titleUnderline 2s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%, 100% { width: 40px; opacity: 0.8; }
    50% { width: 60px; opacity: 1; }
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    margin: 0 -0.75rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.footer-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(238, 169, 58, 0.1), transparent);
    transition: width 0.4s ease;
    z-index: 0;
}

.footer-menu li a:hover::before {
    width: 100%;
}

.footer-menu li a i {
    width: 20px;
    text-align: center;
    color: var(--mu-blue);
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.footer-menu li a:hover {
    color: var(--mu-gold);
    transform: translateX(8px);
    padding-left: 1rem;
}

.footer-menu li a:hover i {
    color: var(--mu-gold);
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 0 8px rgba(238, 169, 58, 0.6));
}

/* Footer Info Items */
.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--mu-gold), var(--mu-blue));
    transform: scaleY(0);
    transition: transform 0.4s ease;
    border-radius: 0 2px 2px 0;
}

.info-item:hover::before {
    transform: scaleY(1);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(145, 61, 255, 0.5);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 4px 15px rgba(145, 61, 255, 0.3);
}

.info-item i {
    font-size: 1.25rem;
    color: var(--mu-blue);
    min-width: 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.info-item:hover i {
    color: var(--mu-gold);
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(238, 169, 58, 0.6));
}

.info-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item strong {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.info-item span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(5, 8, 16, 0.6) 0%, rgba(5, 8, 16, 0.9) 100%);
    margin-top: 0;
    border-top: 1px solid var(--mu-border);
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--mu-gold) 20%, 
        var(--mu-blue) 50%, 
        var(--mu-gold) 80%, 
        transparent);
    opacity: 0.5;
    animation: bottomLine 4s ease-in-out infinite;
}

@keyframes bottomLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.copyright:hover {
    color: var(--text-primary);
}

.copyright i {
    color: var(--mu-blue);
    animation: copyrightSpin 4s linear infinite;
}

@keyframes copyrightSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.copyright strong {
    background: linear-gradient(135deg, var(--mu-gold), var(--mu-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    transition: all 0.3s ease;
}

.copyright:hover strong {
    filter: brightness(1.3);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-bottom-links:hover {
    color: var(--text-primary);
}

.footer-bottom-links i {
    color: var(--mu-red);
    animation: heartbeat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(231, 76, 60, 0.6));
}

@keyframes heartbeat {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(231, 76, 60, 0.6));
    }
    25% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.8));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(231, 76, 60, 0.7));
    }
    75% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.8));
    }
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination-wrapper ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.pagination-wrapper a,
.pagination-wrapper span {
    padding: 0.75rem 1.25rem;
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper a:hover {
    background: var(--mu-gold);
    border-color: var(--mu-gold);
    color: var(--mu-dark);
}

.pagination-wrapper .active span {
    background: var(--mu-gold);
    border-color: var(--mu-gold);
    color: var(--mu-dark);
}

/* Responsive */
@media (max-width: 768px) {
    /* Optimizar video en tablets */
    .video-background video {
        opacity: 0.35;
        filter: brightness(0.55) contrast(1.15);
    }

    .video-overlay {
        backdrop-filter: blur(2.5px);
        -webkit-backdrop-filter: blur(2.5px);
        background: 
            linear-gradient(135deg, rgba(5, 8, 16, 0.75) 0%, rgba(10, 14, 39, 0.65) 100%),
            radial-gradient(circle at 20% 50%, rgba(145, 61, 255, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(238, 169, 58, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--mu-card);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .categories-grid,
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    /* Subcategorías en móvil - mostrar siempre visible */
    .subcategories-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: none;
        margin-top: 1rem;
        border: none;
        background: transparent;
        padding: 0;
    }
    
    .category-card-wrapper:hover .subcategories-dropdown {
        border: none;
        background: transparent;
    }
    
    .subcategory-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--mu-border);
    }
    
    .subcategory-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Footer Responsive */
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    /* News Responsive */
    .news-container {
        grid-template-columns: 1fr;
    }
    
    .news-featured {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card-image {
        min-height: 250px;
    }
    
    .news-title {
        flex-direction: column;
        gap: 0.5rem;
    }

    .guide-card-image {
        height: 180px;
        min-height: 180px;
        max-height: 180px;
    }

    .guide-list-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .guide-list-meta {
        align-items: flex-start;
        width: 100%;
    }

    .filters-form {
        flex-direction: column;
    }

    .guide-header-detail h1 {
        font-size: 2rem;
    }

    .guide-body-detail {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Pausar video en móviles pequeños para mejor rendimiento */
    .video-background video {
        display: none;
    }

    .video-overlay {
        background: 
            linear-gradient(135deg, rgba(5, 8, 16, 0.9) 0%, rgba(10, 14, 39, 0.85) 100%),
            radial-gradient(circle at 20% 50%, rgba(145, 61, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(238, 169, 58, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    }

    .hero {
        min-height: 50vh;
    }

    .guide-meta-detail {
        flex-direction: column;
        gap: 0.5rem;
    }

    .guide-card-image {
        height: 150px;
        min-height: 150px;
        max-height: 150px;
    }
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.loading-spinner.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 16, 0.95);
    backdrop-filter: blur(10px);
}

.spinner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.spinner-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid transparent;
    border-top-color: var(--mu-gold);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    width: 120px;
    height: 120px;
    border-top-color: var(--mu-gold);
    animation-duration: 1.5s;
}

.spinner-ring:nth-child(2) {
    width: 100px;
    height: 100px;
    border-top-color: var(--mu-blue);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 80px;
    height: 80px;
    border-top-color: var(--mu-purple);
    animation-duration: 1s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spinner-icon {
    position: relative;
    z-index: 10001;
    font-size: 2.5rem;
    color: var(--mu-blue);
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px var(--shadow-glow);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.spinner-text {
    margin-top: 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--mu-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInOut 2s ease-in-out infinite;
    text-shadow: 0 0 10px var(--shadow-glow);
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Prevent body scroll when spinner is active */
body.spinner-active {
    overflow: hidden;
}

/* History Page Styles */
.history-page {
    padding: 3rem 0;
}

.history-hero {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(145, 61, 255, 0.1), rgba(238, 169, 58, 0.1));
    border-radius: 16px;
    border: 1px solid var(--mu-border);
}

.history-hero-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--mu-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--shadow-glow);
}

.history-hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Timeline */
.history-timeline {
    position: relative;
    padding: 2rem 0;
    margin: 4rem 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--mu-blue), var(--mu-blue-light), var(--mu-purple));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 6rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-marker {
    position: absolute;
    left: 0.5rem;
    top: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--mu-card);
    border: 3px solid var(--mu-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--mu-gold);
    box-shadow: 0 0 20px var(--shadow-glow);
    z-index: 10;
}

.timeline-content {
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(145, 61, 255, 0.3);
    border-color: var(--mu-gold);
}

.timeline-year {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--mu-blue), var(--mu-blue-light));
    color: var(--text-primary);
    border-radius: 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--mu-gold);
    margin-bottom: 1.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.history-quote {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(238, 169, 58, 0.1);
    border-left: 4px solid var(--mu-blue);
    border-radius: 8px;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--mu-blue);
    text-align: center;
    position: relative;
}

.history-quote i {
    font-size: 1.5rem;
    opacity: 0.5;
    margin: 0 0.5rem;
}

/* Stats Section */
.history-stats {
    margin: 4rem 0;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(238, 169, 58, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(145, 61, 255, 0.3);
    border-color: var(--mu-gold);
}

.stat-icon {
    font-size: 3rem;
    color: var(--mu-gold);
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--mu-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--shadow-glow);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 600;
}

/* Values Section */
.history-values {
    margin: 4rem 0;
    padding: 3rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(145, 61, 255, 0.3);
    border-color: var(--mu-gold);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.value-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    color: var(--mu-gold);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
}

/* CTA Section */
.history-cta {
    margin: 4rem 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(145, 61, 255, 0.15), rgba(238, 169, 58, 0.15));
    border: 1px solid var(--mu-border);
    border-radius: 16px;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--mu-gold);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive History Page */
@media (max-width: 768px) {
    .history-hero-content h2 {
        font-size: 2rem;
    }

    .history-timeline::before {
        left: 1.5rem;
    }

    .timeline-item {
        padding-left: 4.5rem;
    }

    .timeline-marker {
        width: 3rem;
        height: 3rem;
        left: 0.25rem;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.5rem;
    }

    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* History Hero Section - Updated */
.history-hero {
    position: relative;
    padding: 6rem 0;
    margin-bottom: 4rem;
    overflow: hidden;
}

.history-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(145, 61, 255, 0.15), rgba(238, 169, 58, 0.15)),
        radial-gradient(circle at 50% 50%, rgba(238, 169, 58, 0.1) 0%, transparent 70%);
    border-radius: 16px;
    z-index: -1;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.history-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.history-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--mu-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 30px var(--shadow-glow); }
    50% { text-shadow: 0 0 50px var(--shadow-glow), 0 0 70px rgba(238, 169, 58, 0.5); }
}

.history-icon {
    font-size: 3rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.history-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* History Timeline Section - Updated */
.history-timeline-section {
    padding: 4rem 0;
    margin: 4rem 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        var(--mu-blue) 0%, 
        var(--mu-blue-light) 50%, 
        var(--mu-purple) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--shadow-glow);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { box-shadow: 0 0 20px var(--shadow-glow); }
    50% { box-shadow: 0 0 40px var(--shadow-glow), 0 0 60px rgba(238, 169, 58, 0.5); }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(odd) {
    padding-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 55%;
    text-align: left;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 10;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--mu-gold);
    border: 4px solid var(--mu-card);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--shadow-glow), 0 0 40px rgba(238, 169, 58, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px var(--shadow-glow), 0 0 40px rgba(238, 169, 58, 0.5);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 30px var(--shadow-glow), 0 0 60px rgba(238, 169, 58, 0.8);
    }
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--mu-blue), transparent);
    transform: translateX(-50%);
}

.timeline-content {
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(238, 169, 58, 0.1), transparent);
    transition: left 0.6s ease;
}

.timeline-content:hover::before {
    left: 100%;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(145, 61, 255, 0.4);
    border-color: var(--mu-gold);
}

.year-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--mu-blue), var(--mu-blue-light));
    color: var(--text-primary);
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(238, 169, 58, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(238, 169, 58, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(238, 169, 58, 0.6); }
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
}

.timeline-description p {
    margin: 0;
}

/* Honor Board Section */
.honor-board-section {
    padding: 6rem 0;
    margin: 4rem 0;
    background: linear-gradient(135deg, rgba(145, 61, 255, 0.05), rgba(238, 169, 58, 0.05));
    border-radius: 20px;
    border: 1px solid var(--mu-border);
}

.honor-board-header {
    text-align: center;
    margin-bottom: 4rem;
}

.honor-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--mu-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-shadow: 0 0 30px var(--shadow-glow);
}

.honor-icon {
    position: relative;
    font-size: 3rem;
    animation: trophyRotate 4s ease-in-out infinite;
}

@keyframes trophyRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.1); }
    75% { transform: rotate(5deg) scale(1.1); }
}

.honor-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(238, 169, 58, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.8; }
}

.honor-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Honor Showcase Grid - Nuevo Diseño */
.honor-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem auto 0;
    padding: 2rem 0;
    justify-items: center;
    max-width: 1400px;
}

@media (max-width: 1400px) {
    .honor-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .honor-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.honor-showcase-item {
    opacity: 0;
    animation: showcaseFadeIn 0.8s ease forwards;
}

@keyframes showcaseFadeIn {
    to { opacity: 1; }
}

.honor-showcase-container {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 39, 0.9));
    border: 2px solid var(--mu-border);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.honor-showcase-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(145, 61, 255, 0.1) 0%, 
        rgba(238, 169, 58, 0.1) 50%, 
        rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.honor-showcase-container:hover::before {
    opacity: 1;
}

.honor-showcase-container:hover {
    transform: translateY(-8px);
    border-color: var(--mu-gold);
    box-shadow: 
        0 20px 60px rgba(238, 169, 58, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 0 60px rgba(145, 61, 255, 0.1);
}

/* Image Container */
.honor-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.honor-image-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--mu-gold);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.5),
        0 0 80px rgba(238, 169, 58, 0.3),
        inset 0 0 40px rgba(145, 61, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.honor-showcase-container:hover .honor-image-wrapper {
    transform: scale(1.05);
    box-shadow: 
        0 0 60px rgba(255, 215, 0, 0.7),
        0 0 120px rgba(238, 169, 58, 0.5),
        inset 0 0 60px rgba(145, 61, 255, 0.3);
    border-color: #ffd700;
}

.honor-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.honor-showcase-container:hover .honor-image-wrapper img {
    transform: scale(1.1);
}

.honor-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.3) 0%, 
        rgba(238, 169, 58, 0.2) 40%, 
        transparent 70%);
    border-radius: 50%;
    animation: imageGlowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes imageGlowPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
}

.honor-image-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 70%);
    transform: rotate(45deg);
    transition: all 1s ease;
    opacity: 0;
    z-index: 2;
}

.honor-showcase-container:hover .honor-image-shine {
    animation: imageShine 1.5s ease;
}

@keyframes imageShine {
    0% { 
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% { opacity: 1; }
    100% { 
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.honor-crown-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--mu-gold), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--mu-dark);
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.4);
    animation: crownFloat 3s ease-in-out infinite;
    z-index: 10;
    border: 3px solid var(--mu-card);
}

@keyframes crownFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% { 
        transform: translateY(-10px) rotate(10deg) scale(1.1);
    }
}

.honor-showcase-container:hover .honor-crown-badge {
    animation: crownFloat 1.5s ease-in-out infinite;
    box-shadow: 
        0 12px 40px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6);
}

/* Server Badge */
.honor-server-badge {
    text-align: center;
    margin-bottom: 2rem;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.honor-server-badge i {
    font-size: 1.5rem;
    color: var(--mu-blue);
    animation: serverIconPulse 2s ease-in-out infinite;
}

@keyframes serverIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.server-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--mu-blue-light), var(--mu-blue), var(--mu-purple), var(--mu-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: serverNameGradient 4s ease infinite, serverNameGlow 3s ease-in-out infinite;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(238, 169, 58, 0.5));
}

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

@keyframes serverNameGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(238, 169, 58, 0.5)) brightness(1);
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(238, 169, 58, 0.8)) drop-shadow(0 0 30px rgba(79, 195, 247, 0.6)) brightness(1.2);
    }
}

.honor-showcase-container:hover .server-name {
    animation: serverNameGradient 2s ease infinite, serverNameGlow 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(238, 169, 58, 0.8)) drop-shadow(0 0 25px rgba(79, 195, 247, 0.6));
}

/* Description Container */
.honor-description-container {
    text-align: center;
    z-index: 1;
    position: relative;
}

.honor-description-text {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.125rem;
    margin: 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(238, 169, 58, 0.2);
    transition: all 0.4s ease;
}

.honor-showcase-container:hover .honor-description-text {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(238, 169, 58, 0.4);
    box-shadow: 0 4px 20px rgba(238, 169, 58, 0.2);
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--mu-card);
    border: 1px solid var(--mu-border);
    border-radius: 16px;
    margin: 2rem 0;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--mu-blue);
    margin-bottom: 1.5rem;
    opacity: 0.5;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.empty-state h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--mu-gold);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive History & Honor */
@media (max-width: 768px) {
    .history-hero-title {
        font-size: 2.5rem;
    }

    .history-hero-subtitle {
        font-size: 1.25rem;
    }

    .timeline-container::before {
        left: 2rem;
    }

    .timeline-item {
        padding-left: 5rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-marker {
        left: 2rem;
        transform: translateX(-50%);
    }

    .honor-title {
        font-size: 2rem;
    }

    .honor-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }

    .honor-showcase-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .honor-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .honor-image-wrapper {
        width: 220px;
        height: 220px;
    }

    .honor-crown-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: -10px;
        right: -10px;
    }

    .server-name {
        font-size: 1.5rem;
    }

    .honor-description-text {
        font-size: 1rem;
        padding: 1.25rem;
    }
}

/* Honor Page Hero Section */
/* Hero Section - Mantener para compatibilidad pero usar nuevos estilos */
.honor-hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.honor-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.honor-hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.honor-title-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--mu-gold), transparent);
    max-width: 200px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: lineGlow 3s ease-in-out infinite;
}

.honor-title-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    letter-spacing: 3px;
}

.honor-hero-subtitle {
    margin-top: 1.5rem;
}

.subtitle-line-1 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.subtitle-line-2 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Honor Board Page Section */
.honor-board-page-section {
    padding: 4rem 0;
    margin: 4rem 0;
}

/* Honor Board Preview Section (en historia) */
.honor-board-preview-section {
    padding: 6rem 0;
    margin: 4rem 0;
    background: linear-gradient(135deg, rgba(145, 61, 255, 0.05), rgba(238, 169, 58, 0.05));
    border-radius: 20px;
    border: 1px solid var(--mu-border);
}

.honor-board-preview-header {
    text-align: center;
    margin-bottom: 3rem;
}

.honor-view-all-btn {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--mu-gold), #ffd700);
    color: var(--mu-dark);
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.honor-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffd700, var(--mu-gold));
}

.honor-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* Responsive Honor Page */
@media (max-width: 768px) {
    .honor-hero-title {
        font-size: 2.5rem;
    }

    .honor-hero-subtitle {
        font-size: 1.25rem;
    }

    .honor-hero-icon {
        font-size: 2.5rem;
    }

    .honor-board-page-section,
    .honor-board-preview-section {
        padding: 3rem 0;
    }

    .honor-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* Honor Page - Nuevo Diseño Completo */

/* Hero Section Rediseñado */
.honor-hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.honor-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.honor-hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.honor-title-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--mu-gold), transparent);
    max-width: 200px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.8; box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
    50% { opacity: 1; box-shadow: 0 0 40px rgba(255, 215, 0, 0.9); }
}

.honor-title-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    letter-spacing: 3px;
}

.honor-hero-subtitle {
    margin-top: 1.5rem;
}

.subtitle-line-1 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.subtitle-line-2 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Section Dividers */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 4rem 0 3rem;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mu-gold), transparent);
    max-width: 300px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.divider-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Top del Mes Section */
.honor-top-month-section {
    padding: 2rem 0;
}

.top-month-card {
    background: linear-gradient(135deg, rgba(238, 169, 58, 0.15), rgba(145, 61, 255, 0.15));
    border: 2px solid var(--mu-gold);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.top-month-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    pointer-events: none;
}

.top-month-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.top-month-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.top-month-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--mu-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    position: relative;
}

.top-month-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-month-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: topMonthGlow 3s ease-in-out infinite;
}

@keyframes topMonthGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

.top-month-crown-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.6);
    border: 3px solid var(--mu-card);
    z-index: 10;
}

.top-month-info {
    flex: 1;
}

.top-month-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(238, 169, 58, 0.5);
}

.top-month-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.top-month-date {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--mu-border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.top-month-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--mu-blue), var(--mu-blue-light));
    color: var(--text-primary);
    border: 2px solid var(--mu-gold);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 169, 58, 0.3);
}

.top-month-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(238, 169, 58, 0.5);
    background: linear-gradient(135deg, var(--mu-blue-light), var(--mu-blue));
}

/* Los Mejores Arterass Section */
.honor-best-section {
    padding: 2rem 0;
}

.best-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.best-category-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 39, 0.9));
    border: 2px solid var(--mu-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.best-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--mu-gold);
    box-shadow: 0 10px 30px rgba(145, 61, 255, 0.3);
}

.category-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--mu-border);
}

.category-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
}

.category-card-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-item:last-child {
    border-bottom: none;
}

.category-item-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--mu-border);
}

.category-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-item-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.category-item-recognitions {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.category-empty {
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
    padding: 2rem 0;
}

.category-more-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    margin-top: 0.5rem;
    background: rgba(238, 169, 58, 0.1);
    border: 1px solid var(--mu-border);
    border-radius: 8px;
    color: var(--mu-blue);
    font-size: 0.9rem;
    font-weight: 600;
}

.category-more-indicator i {
    font-size: 1rem;
}

.category-view-more-btn {
    display: block;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--mu-blue), var(--mu-blue-light));
    color: var(--text-primary);
    border: 1px solid var(--mu-border);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.category-view-more-btn:hover {
    background: linear-gradient(135deg, var(--mu-blue-light), var(--mu-blue));
    border-color: var(--mu-gold);
    transform: translateY(-2px);
}

/* Ranking Histórico Section */
.honor-ranking-section {
    padding: 2rem 0 4rem;
}

.ranking-table-wrapper {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(10, 14, 39, 0.9));
    border: 2px solid var(--mu-border);
    border-radius: 16px;
    padding: 2rem;
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table thead {
    background: rgba(0, 0, 0, 0.3);
}

.ranking-table th {
    padding: 1rem;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--mu-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--mu-gold);
}

.ranking-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.ranking-table tbody tr:hover {
    background: rgba(238, 169, 58, 0.1);
}

.ranking-table td {
    padding: 1rem;
    color: var(--text-primary);
}

.ranking-name {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ranking-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mu-blue), var(--mu-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ranking-category {
    color: var(--text-secondary);
}

.ranking-count {
    font-weight: 700;
    color: var(--mu-gold);
    font-family: 'Orbitron', sans-serif;
}

.ranking-date {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1200px) {
    .best-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .honor-title-text {
        font-size: 2.5rem;
    }

    .honor-title-line {
        max-width: 100px;
    }

    .top-month-content {
        flex-direction: column;
        text-align: center;
    }

    .top-month-image {
        width: 150px;
        height: 150px;
    }

    .top-month-title {
        font-size: 2rem;
    }

    .best-categories-grid {
        grid-template-columns: 1fr;
    }

    .ranking-table-wrapper {
        padding: 1rem;
    }

    .ranking-table {
        font-size: 0.9rem;
    }

    .ranking-table th,
    .ranking-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Honor Modal Styles */
.honor-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.honor-modal.active {
    opacity: 1;
    visibility: visible;
}

.honor-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.honor-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95), rgba(10, 14, 39, 0.98));
    border: 2px solid var(--mu-gold);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.3);
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    display: flex;
    flex-direction: column;
}

.honor-modal.active .honor-modal-container {
    transform: scale(1) translateY(0);
}

.honor-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--mu-gold);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.honor-modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.honor-modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 2px solid var(--mu-border);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
}

.honor-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--mu-gold);
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 2px;
}

.honor-modal-content {
    padding: 2rem 2.5rem;
    overflow-y: auto;
    flex: 1;
}

.honor-modal-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.honor-modal-item {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 31, 58, 0.5));
    border: 1px solid var(--mu-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.honor-modal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.honor-modal-item:hover::before {
    left: 100%;
}

.honor-modal-item:hover {
    border-color: var(--mu-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

.modal-item-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--mu-border);
}

.modal-item-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.modal-item-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--mu-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.modal-item-crown {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--mu-gold), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mu-dark);
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    border: 2px solid var(--mu-card);
    animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.modal-item-title {
    flex: 1;
}

.modal-item-title h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(238, 169, 58, 0.5);
}

.modal-item-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-style: italic;
}

.modal-item-reason {
    margin-top: 1.5rem;
}

.modal-item-reason h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mu-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-item-reason h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--mu-gold), var(--mu-blue));
    border-radius: 2px;
}

.modal-item-reason-content {
    color: var(--text-primary);
    line-height: 1.9;
    font-size: 1.125rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border-left: 4px solid var(--mu-blue);
    white-space: pre-wrap;
}

.modal-item-date {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(238, 169, 58, 0.1);
    border: 1px solid var(--mu-border);
    border-radius: 8px;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.modal-item-date i {
    color: var(--mu-blue);
}

/* Actualizar estilos de category-item-reason */
.category-item-reason {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 0.25rem;
    display: block;
}

.category-item-recognitions {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Scrollbar personalizado para el modal */
.honor-modal-content::-webkit-scrollbar {
    width: 8px;
}

.honor-modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.honor-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--mu-gold), var(--mu-blue));
    border-radius: 4px;
}

.honor-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffd700, var(--mu-blue-light));
}

/* Responsive Modal */
@media (max-width: 768px) {
    .honor-modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .honor-modal-header {
        padding: 2rem 1.5rem 1rem;
    }

    .honor-modal-title {
        font-size: 1.5rem;
    }

    .honor-modal-content {
        padding: 1.5rem;
    }

    .modal-item-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .modal-item-image {
        width: 100px;
        height: 100px;
    }

    .modal-item-title h3 {
        font-size: 1.5rem;
    }

    .modal-item-reason-content {
        font-size: 1rem;
        padding: 1rem;
    }
}

.text-center {
    margin-top: 2rem;
}
