@import "https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Roboto:wght@400;500&display=swap";
:root {
    --ibiza-dark: #08040C;
    --ibiza-purple: #1A0B2E; /* Tu degradado favorito */
    --ibiza-glow: #7B42F6;   /* El violeta del logo */
    --ibiza-red: #FF1E43;    /* El rojo de los destellos */
    --ibiza-silver: #DED9FF; /* El metal de las letras */
}
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #2a0c23;
    font-family: roboto, sans-serif;
    background: url(../img/ibizabg.png) no-repeat;
    color: white;
    background-size: cover;
}

::-webkit-scrollbar {
    width: 10px;
    background: linear-gradient(to bottom, rgb(35 39 89), transparent);
    border-radius: 0 8px 8px 0;
}

::-webkit-scrollbar-thumb {
    background: rgb(42, 48, 129);
    border-radius: 0 8px 8px 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #00c3ff;

}

.rrss-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    filter: drop-shadow(0px 0px 6px black);
    z-index: 100;
}

.rrss-icon a {
    color: white;
    font-size: 24px;
    transition: all .3s ease;
}

.rrss-icon .fa-square-facebook {
    color: #4267B2;
}

.rrss-icon .fa-discord {
    color: #5865F2;
    font-size: 22px!important;
}

.rrss-icon .fa-square-youtube {
    color: #c4302b;
}

.rrss-icon .fa-square-whatsapp {
    color: #25D366;
}

.rrss-icon a:hover {
    filter: drop-shadow(0px 0px 6px black) brightness(0.7);
    transform: translateY(-10px) scale(1.2);
}

.admincp-button {
    position: absolute;
    top: 10%;
    left: 2%;
    z-index: 9999;
    transform: skewX(-10deg);
    border-radius: 4px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    color: white !important;
    background: rgb(42, 48, 129) !important;
    transition: all .3s ease !important;
    box-shadow: 0px 0px 20px rgb(42, 48, 129);
}

.admincp-button:hover {
    transform: skewX(-10deg) translateY(-10px);
    box-shadow: 0px 0px 40px rgb(42, 48, 129);
}

.navbar-toggler {
    border: 0px !important;
    outline: 0 !important;
}

.navbar-toggler-icon {
    background-image: url(../img/menu.png) !important;
}

/* Styling the overlay that covers the whole page */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Viewport height */
    /* Choose a background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    /* Ensure it is on top of everything */
}

.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue spinner */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#videoBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


/* ── Contenedor principal ── */
.container-snap {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* ── Paneles apilados ── */
.panel {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    /* Todas las secciones ocultas por defecto con clip-path */
    clip-path: inset(100% 0 0 0);
    will-change: clip-path;
    color: rgba(255, 255, 255, 0.9);
}

.panel.class-section {
    background: url(../img/bgclass.png) no-repeat;

    display: flex;
    background-size: cover;
    justify-content: center;
    align-items: center;
}

.panel.noticias {
    background: url(../img/newsbg.png) no-repeat;
    background-size: cover;

}

.panel.rankings {
    background: url(../img/bg_news.png) no-repeat;
    background-size: cover;
}

.rankingsSwiper .swiper-wrapper .swiper-slide {
    background: linear-gradient(180deg, #2a0c23, transparent) !important;
    border-radius: 8px;
    padding: 20px;
}

/* La primera sección visible */
.panel.is-active {
    clip-path: inset(0 0 0 0);
}

/* ── Contenido interno animable ── */
.panel-content {
    opacity: 0;
    transform: translateY(60px);
    transition: none;
    position: relative;
    z-index: 2;
}

.panel.is-active .panel-content {
    opacity: 1;
    transform: translateY(0);
}

/* ── Colores de sección ── */
.panel.main-section {
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-family: 'Gambarino', serif;
}

#particles-js {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}



/* ── Indicador vertical de sección ── */
.section-nav {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 100;
}

.nav-dot {
    width: 48px;
    height: 48px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    border: 0;
    transition: all 0.3s ease;
}

.nav-dot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all .5s ease;
}

.nav-dot.active img {
    filter: invert(1);
    transform: scale(1.2) rotate(180deg);
}

.nav-dot:hover {
    transform: scale(1.2) rotate(180deg);
}



.nav-link {
    font: 15px merriweather, serif;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 20px !important;
    color: rgba(242, 243, 246, .75) !important;
}

.nav-link:hover {
    color: #e8a34f !important;
}

.gradient-name {
    background: #FFFFFF;
    background: linear-gradient(to bottom, #ffffff 20%, #9c9c9c 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 5px;
}

.text-main-section {
    font: 15px merriweather, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
    color: #f2f3f6;
    margin: 10px auto;
    text-align: center;
    text-shadow: 0 2px 5px #000000be;
    text-transform: uppercase;
    filter: drop-shadow(2px 4px 6px #000000);
}

.h2-main-section {
    color: #e8a34f;
    text-align: center;
    letter-spacing: 2.55px;
    font-size: 34px;
    line-height: 34px;
    width: 30%;
    font-weight: 700;
    text-shadow: 0 2px 5px #000000be;
    text-transform: uppercase;
    border: 2px solid #e8a34f;
    padding: 8px 22px;
    margin: 0 auto 30px;
    font-family: roboto, sans-serif;

    box-shadow: inset 0 3px 6px #00000029, 0 3px 6px #000000bf;
}

.buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center
}

.buttons a {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: calc(50% - 10px);
    max-width: 400px;
    margin: 0 5px;
    padding: 24px 16px;
    text-align: right;
    filter: hue-rotate(256deg);
    background: url(../img/bg_box_active.png) top center no-repeat;
    background-size: cover;
    text-decoration: none;
}

.buttons a:nth-child(2) {
    background: url(../img/bg_box.png) top center no-repeat;
    background-size: cover;
    justify-content: flex-start
}

.buttons a:nth-child(2) span {
    text-align: left
}

.buttons a span img {
    transition: all .5s ease;
}

.tooltip-inner {
    background-color: #1a1a1a;
    color: #e8a34f;
    font-weight: 600;
}

.tooltip.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: #1a1a1a;
}

@media not all and (pointer:coarse) {
    .buttons a {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        transition: all .5s;
    }

    .buttons a:hover {
        filter: brightness(1.3) hue-rotate(256deg)
    }

    .buttons a:hover span img {
        transform: scale(1.1);
    }
}

.buttons a span {
    padding: 0 16px;
    display: inline-flex;
    flex-direction: column;
    color: #f2f3f6;
    text-align: right;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
    text-shadow: 0 2px 5px #000000be
}

.buttons a span strong {
    font: 15px merriweather, serif;
    font-weight: 700;
    font-size: 21px;
    text-transform: uppercase;
    color: #e8a34f
}

.buttons a span img {
    width: 70px
}

/* class */
#class-showcase {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
}

/* Fondo con profundidad */
.class-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Personaje */
.class-character {
    position: relative;
    z-index: 2;
}

.class-character img {
    height: 65vh;
    transition: all 0.5s ease;
    mask-image: linear-gradient(to bottom, #000000, #000, #000, transparent);
    filter: drop-shadow(0 0 40px rgba(255, 0, 0, 0.5));
}

/* Contenido */
.class-content {
    position: relative;
    z-index: 2;
    padding: 80px;
}

#class-title {
    font-size: 28px;
    font-family: 'merriweather', serif;
    letter-spacing: 4px;
    filter: drop-shadow(2px 4px 6px #00c3ff);
}

#class-description {
    max-width: 500px;
    font-family: 'merriweather', serif;
    color: #d8d8d8;
    font-size: 18px;
    filter: drop-shadow(2px 4px 6px #000000);
}

/* Skills */
.class-skills {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.skill-circle {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #661111, #2a0000);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.skill-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px red;
}

/* Botón */
.class-btn {
    background: linear-gradient(45deg, #5a1a00, #b53b00);
    border: none;
    padding: 15px 40px;
    color: white;
    letter-spacing: 2px;
    font-weight: bold;
    transition: 0.3s;
}

.class-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 60, 0, 0.5);
}

/* Flechas */
.class-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    cursor: pointer;
    z-index: 3;
    padding: 20px;
    color: white;
    opacity: 0.5;
}

.class-nav:hover {
    opacity: 1;
}

.class-nav.left {
    left: 20px;
}

.class-nav.right {
    right: 20px;
}

.class-top-selector {
    justify-content: center;
    position: relative;
    margin: 0 auto;
    display: flex;
    z-index: 5;
    filter: drop-shadow(2px 4px 6px black);
}

/* Botón base */
.class-btn-top {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Imagen */
.class-btn-top img {
    transition: 0.3s;
}

/* Hover */
.class-btn-top:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Activo */
.class-btn-top.active {
    opacity: 1;
}

.class-btn-top.active img {
    filter: brightness(1.2);
}

.footer-main,
.castles-main {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.875rem;
    color: #d1c6d08e;
    font-family: 'roboto', serif;
    background: linear-gradient(180deg, #2a0c23, transparent);
    font-size: 0.625rem;
}

.footer-main .mulanesa-logo {
    height: 4rem;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-main a {
    color: #b3b9fd;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-main a:hover {
    color: #e8a34f;
}

.footer-main .hover-img:hover img {
    opacity: 1 !important;
}

.news-card {
    position: relative;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.news-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.news-card:hover .news-bg {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3), transparent);
    color: #fff;
}

.news-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.news-desc {
    font-size: 14px;
    margin-bottom: 15px;
}

.news-desc a {
    color: #ffc107;
    text-decoration: none;
}

.news-desc a:hover {
    text-decoration: underline;
}

.news-meta {
    font-size: 13px;
    opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffc107;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #fff;
}


.modal-content {
    border: 0 !important;
}

/* Fondo general del modal */
.custom-mu-modal {
    background: linear-gradient(180deg, #1A0B2E, transparent) !important;
    background-color: transparent;

    color: #ddd !important;
}

/* Header */
.custom-mu-modal .modal-title {
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}

/* Tabs */
.mu-tabs {
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.mu-tabs .nav-link {
    color: #aaa;
    background: transparent;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.mu-tabs .nav-link:hover {
    color: #fff;
}

.mu-tabs .nav-link.active {
    color: #ffae42;
    border-bottom: 2px solid #ff7b00;
}

/* Cards internas */
.mu-card {
    background: linear-gradient(to bottom, rgba(20, 20, 25, 0.8), transparent);
    padding: 30px;
    border-radius: 8px;
}

/* Lista */
.mu-list {
    list-style: none;
    padding: 0;
}

.mu-list li {
    margin-bottom: 8px;
}

/* Stats */
.mu-stat {
    background: rgba(255, 120, 0, 0.08);
    border: 1px solid rgba(255, 120, 0, 0.2);
    padding: 20px;
    text-align: center;
    border-radius: 6px;
}

.mu-stat span {
    display: block;
    font-size: 12px;
    color: #aaa;
}

.mu-stat strong {
    font-size: 22px;
    color: #ffb347;
}

.card-download {
    background: linear-gradient(to bottom, rgba(20, 20, 25, 0.8), transparent);
    border-radius: 8px;
    padding: 20px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.card-modules {
    background: linear-gradient(180deg, #1A0B2E, transparent) !important;
    border-radius: 8px;
    padding: 20px;
    color: white;
    font-family: roboto, sans serif;
    transition: all 0.3s ease;
    overflow: auto;
}

.table {
    background: linear-gradient(to bottom, #1A0B2E, transparent) !important;
    color: white;
    border-radius: 8px;
}

.table thead th,
.table tbody tr th,
.table tbody tr td {
    text-align: center;
    border-bottom: none;
    background: transparent !important;
    color: white;
}

.card-donations {
    background: linear-gradient(to bottom, #1A0B2E, transparent);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.card-donations img {
    max-width: 192px;
    padding: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

.card-modules a:hover .card-donations {
    background: linear-gradient(to bottom, rgba(20, 20, 25, 0.8), rgb(20, 20, 25));
    ;
}

.card-modules a:hover .card-donations img {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.discord-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    margin-inline: 8px;
    border-radius: 12px;
    max-width: 420px;
    font-family: 'Inter', sans-serif;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.discord-widget:hover {
    opacity: 1;
}

.discord-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.discord-icon {
    width: 40px;
    height: 40px;
}

.discord-name {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.discord-members {
    font-size: 13px;
    color: #aaa;
}

.login-section {
    background: radial-gradient(circle, #1A0B2E 0%, #0D061A 100%);
    position: absolute;
    height: 100%;
    color: white;
    max-width: 26%;
}

.login-section img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.login-section form input {
    background: rgba(35, 39, 89, 0.151) !important;
    color: white !important;
    border: 1px solid rgb(43, 49, 133) !important;
    border-radius: 8;
}

.register-a {
    color: #00c3ff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: color .3s ease
}

.register-a:hover {
    color: #00c3ffbd;
}

.login-section form input::placeholder {
    color: #aaa !important;
}

.down-left-login {
    width: 14px !important;
    margin-inline: 4px;
    filter: invert(1) brightness(1.5) !important;
    transition: all 0.3s ease;
}

.to-site-login {
    margin: 0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.to-site-login:hover {
    color: white !important;
}

.to-site-login:hover .down-left-login {
    margin-right: 12px;
}

/* RANKINGS MODULE */

.page-title {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    font-size: 1.3rem;
    color: var(--bs-heading-color);
}

.rankings-table {
    width: 100%;
    border-spacing: 0 0.2em;
    background: transparent !important;
    border-collapse: separate;
}



.rankings-class-image {
    width: 30px;
    height: auto;
    -moz-box-shadow: 0 0 5px #666;
    -webkit-box-shadow: 0 0 5px #666;
    box-shadow: 0 0 5px #666;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.rankings-table tr td {
    font-size: 16px !important;
}

.rankings-table tr td a {
    color: #3498db !important;
    font-family: roboto, sans-serif;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.rankings-table tr td a:hover {
    color: white !important;
}

.rankings-table tr th {
    padding: 10px;
    font-size: 18px;
    color: #fff;
    text-shadow: 0 2px 5px #000000be;
    text-align: center;
}


.rankings-table thead {
    border-radius: 8px !important;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.rankings-table tbody tr {
    border-radius: 16px !important;
    backdrop-filter: blur(12px) drop-shadow(2px 4px 6px #3498db);
    transition: all 0.3s ease;
}

.rankings-table tr td {
    padding: 10px;
    font-size: 18px;
    vertical-align: middle !important;
    text-align: center;
    color: #3498db !important;
    font-weight: light !important;
}

.rankings-table-place {
    color: #666;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

.rankings-table tr:first-child td {
    color: #3498db;
    border-bottom: 3px solid transparent !important;
}

.rankings-update-time {
    text-align: right;
    font-size: 11px;
    color: #ccc;
    padding: 10px 0px;
}

.rankings_menu {
    width: 100%;
    overflow: auto;
    text-align: center;
    margin-bottom: 10px;
}

.rankings_menu span {
    width: 100%;
    display: inline-block;
    padding: 10px 0px;
    color: #ccc;
    font-size: 24px;
}

.rankings_menu a {
    display: inline-block;
    width: 150px;
    border-left: 4px solid #e3e3e3;
    text-align: center;
    padding: 2px 0px;
    text-decoration: none;
    margin: 2px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    color: #ccc;
    transition: all .3s ease;
}

.rankings_menu a:hover {
    color: #3498db;
    border-color: #3498db;
}

.rankings_menu a.active {
    color: #3498db;
    border-color: #3498db;
}

.rankings_guild_logo tr td {
    border: 0px !important;
    padding: 0px !important;
    margin: 0px !important;
}

.rankings-gens-img {
    width: auto !important;
    height: 30px !important;
    border: 0 !important;
    -moz-box-shadow: 0 0 0px #000 !important;
    -webkit-box-shadow: 0 0 0px #000 !important;
    box-shadow: 0 0 0px #000 !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px !important;
}


@media (max-width: 480px) {
    .h2-main-section {
        width: 100%;
    }

    .class-top-selector {
        flex-wrap: wrap;
    }

    .class-character img {
        height: 100%;
    }

    .panel.class-section {
        display: block;
    }


    .buttons {
        align-items: center;
        gap: 10px;
        flex-direction: column;
    }

    .class-content {
        position: relative;
        bottom: initial;
    }

    .buttons a {
        flex-direction: column;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .panel.class-section {
        display: block;
    }

    .class-content {
        position: absolute;
        bottom: 0;
    }
}

@media (max-width: 991px) {

    footer, nav {
        position: initial!important;
    }

    body {
        overflow: auto !important;
        background: url(../img/bg1.jpg) no-repeat!important;
        background-size: cover;
        
    }
    video {
        display:none!important;
    }
}


@media (max-width: 1024px) {
    .login-section {
        max-width: 100%;
        overflow: auto;
        display: flex;
        flex-direction: column;
        background: linear-gradient(180deg, #2a0c23, #2a0c23, #2a0c23, transparent);

    }



    .login-section a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .login-section a img {
        width: 50%;
    }

    .to-site-login {
        width: 50%;
    }

    .panel.blue {
        background-size: initial;
    }
}


/* castle siege main styles */
.castles-main {
    color: white;
}

.castle-img {
    max-width: 150px;
    filter: drop-shadow(0 0 15px rgba(52, 152, 219, 0.5));
}

.btn-panel {
    transform: skewX(-10deg);
    border-radius: 4px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    width: 100%;
    color: white !important;
    background: rgb(42, 48, 129) !important;
    transition: all .3s ease !important;
    box-shadow: 0px 0px 20px rgb(42, 48, 129);
}

.btn-panel span {
    transform: skewX(10deg);
    display: block;
}

.btn-panel:hover {
    transform: skewX(-10deg) translateY(-5px);
    box-shadow: 0px 0px 40px rgb(42, 48, 129);
    filter: brightness(1.1);

}

.badge {
    transform: skewX(-10deg);
}

/* ================= USERCP ================= */
.tab-content-dashboard {
    background: rgba(13, 20, 36, 0.9);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);

    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============== RANKING FILTERING =========== */

.rankings-class-filter {
	display: inline-block;
	list-style-type: none;
	margin: 20px auto;
	padding: 10px 20px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}

	.rankings-class-filter li {
		display: inline-block;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
		margin-bottom: 10px;
	}
	
	.rankings-class-filter li:hover {
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}

.rankings-class-filter-selection {
	display: inline-block;
	width: 75px;
	text-align: center;
	color: #fff;
	font-size: 11px;
	cursor: pointer;
    text-decoration: none;
    transition: all .3s ease;
}

	.rankings-class-filter-selection:hover {
		color: #00c3ff !important;
	}

    .rankings-class-filter-grayscale:hover {
        filter: grayscale(0);
    }

	.rankings-class-filter-selection:hover img {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

.rankings-class-filter-selection img {
	width: 40px;
	height: auto;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-khtml-border-radius: 50%;
	margin-bottom: 5px;
	-moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
}

.rankings-class-filter-grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

/* GUILD PROFILES */
.profiles_guild_card {
	width: 100%;
	background: #000000 url('../img/profiles/guild.jpg') no-repeat;
	background-size: cover;
	overflow: auto;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -khtml-border-radius: 10px;
	border: 1px solid #333;
	-moz-box-shadow: 0 0 10px #555;
	-webkit-box-shadow: 0 0 10px #555;
	box-shadow: 0 0 10px #555;
	padding: 40px;
	color: #ffffff;
	text-shadow: 1px 1px 1px #000;
}
	.profiles_guild_card .guild_logo img {
		-moz-box-shadow: 0 0 10px #000;
		-webkit-box-shadow: 0 0 10px #000;
		box-shadow: 0 0 10px #000;
	}
	.profiles_guild_card .guild_name {
		font-family: 'Cinzel', serif;
		font-size: 24px;
		color: #ffffff;
		font-weight: bold;
	}
	.profiles_guild_card table {
		table-layout: fixed;
	}
	.profiles_guild_card hr {
		    border-top: 1px solid #333;
			margin-top: 30px;
			margin-bottom: 30px;
	}
	.profiles_guild_card .guild_members {
		font-family: 'Cinzel', serif;
		font-size: 24px;
		color: #ffffff;
		font-weight: bold;
	}
	.profiles_guild_card .guild_members_list {
		margin-top: 30px;
	}

/* PLAYER PROFILES */
.profiles_player_card {
	width: 100%;
	overflow: auto;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -khtml-border-radius: 10px;
	border: 1px solid #333;
	-moz-box-shadow: 0 0 10px #555;
	-webkit-box-shadow: 0 0 10px #555;
	box-shadow: 0 0 10px #555;
	padding: 20px;
}

	.DW.profiles_player_card, .SM.profiles_player_card, .GM.profiles_player_card, .SW.profiles_player_card, .DSW.profiles_player_card { background: url('../img/profiles/wiz.jpg') no-repeat; background-size: cover; }
	.DK.profiles_player_card, .BK.profiles_player_card, .BM.profiles_player_card, .DGK.profiles_player_card, .IGK.profiles_player_card { background: url('../img/profiles/knight.jpg') no-repeat; background-size: cover; }
	.ELF.profiles_player_card, .ME.profiles_player_card, .HE.profiles_player_card, .NE.profiles_player_card, .RYE.profiles_player_card { background: url('../img/profiles/elf.jpg') no-repeat; background-size: cover; }
	.MG.profiles_player_card, .DM.profiles_player_card, .MK.profiles_player_card, .DPK.profiles_player_card { background: url('../img/profiles/mg.jpg') no-repeat; background-size: cover; }
	.DL.profiles_player_card, .LE.profiles_player_card, .EL.profiles_player_card, .FCE.profiles_player_card { background: url('../img/profiles/dl.jpg') no-repeat; background-size: cover; }
	.SUM.profiles_player_card, .BS.profiles_player_card, .DSM.profiles_player_card, .DS.profiles_player_card, .ESUM.profiles_player_card { background: url('../img/profiles/sum.jpg') no-repeat; background-size: cover; }
	.RF.profiles_player_card, .FM.profiles_player_card, .FB.profiles_player_card, .BF.profiles_player_card { background: url('../img/profiles/rf.jpg') no-repeat; background-size: cover; }
	.GL.profiles_player_card, .ML.profiles_player_card, .SL.profiles_player_card, .AL.profiles_player_card { background: url('../img/profiles/gl.jpg') no-repeat; background-size: cover; }
	.RW.profiles_player_card, .RSM.profiles_player_card, .GRM.profiles_player_card, .MRW.profiles_player_card, .IRW.profiles_player_card { background: url('../img/profiles/rw.jpg') no-repeat; background-size: cover; }
	.SLR.profiles_player_card, .SLRR.profiles_player_card, .MSLR.profiles_player_card, .SLTR.profiles_player_card, .RS.profiles_player_card { background: url('../img/profiles/sl.jpg') no-repeat; background-size: cover; }
	.GC.profiles_player_card, .GB.profiles_player_card, .MGB.profiles_player_card, .HGC.profiles_player_card, .MGC.profiles_player_card { background: url('../img/profiles/gc.jpg') no-repeat; background-size: cover; }
	.LIW.profiles_player_card, .LIM.profiles_player_card, .SHW.profiles_player_card, .LUW.profiles_player_card, .GLW.profiles_player_card { background: url('../img/profiles/liw.jpg') no-repeat; background-size: cover; }
	.LEM.profiles_player_card, .WAM.profiles_player_card, .ARM.profiles_player_card, .MYM.profiles_player_card, .BAM.profiles_player_card { background: url('../img/profiles/lem.jpg') no-repeat; background-size: cover; }
	.IK.profiles_player_card, .MIK.profiles_player_card, .IM.profiles_player_card, .MYK.profiles_player_card, .PPK.profiles_player_card { background: url('../img/profiles/ik.jpg') no-repeat; background-size: cover; }
	.ALC.profiles_player_card, .ALMN.profiles_player_card, .ALMTR.profiles_player_card, .ALFC.profiles_player_card, .CRE.profiles_player_card { background: url('../img/profiles/alc.jpg') no-repeat; background-size: cover; }

.profiles_player_content {
	float: right;
	width: 50%;
	color: #fff;
}

.profiles_player_table {
	width: 100%;
}

.profiles_player_table .cname {
	font-family: 'Cinzel', serif;
	text-align: center;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
}

.profiles_player_table .cclass {
	text-align: center;
	font-size: 11px;
	color: #eee;
}

.profiles_player_table .isoffline {
	color: #ff0000;
}

.profiles_player_table .isonline {
	color: #00ff00;
}

.profiles_player_table_info {
	table-layout: fixed;
	margin-top: 10px;
}
.profiles_player_table_info tr td {
	padding: 3px 10px;
}
.profiles_player_table_info tr td:first-child {
	text-align: right;
}



.mu-timeline-vertical {
    position: relative;
    padding: 0 0;
}


.mu-timeline-vertical::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #ff2a2a;
    transform: translateX(-50%);
}

.mu-timeline-row {
    position: relative;
    width: 50%;
    padding: 30px;
}

.mu-timeline-row.left {
    left: 0;
    text-align: right;
}

.mu-timeline-row.right {
    left: 50%;
}

.mu-timeline-row::after {
    content: "";
    position: absolute;
    top: 40px;
    width: 14px;
    height: 14px;
    background: #ff2a2a;
    border-radius: 50%;
    z-index: 2;
}

.mu-timeline-row.left::after {
    right: -7px;
}

.mu-timeline-row.right::after {
    left: -7px;
}

.mu-timeline-content-box {
    background: rgba(13, 20, 36, 0.9);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.mu-year {
    color: #ff2a2a;
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 768px) {

    .mu-timeline-vertical::before {
        left: 10px;
    }

    .mu-timeline-row {
        width: 100%;
        padding-left: 40px;
        text-align: left !important;
    }

    .mu-timeline-row.right {
        left: 0;
    }

    .mu-timeline-row::after {
        left: 3px !important;
    }
}

/* ===============================
   DESACTIVAR SNAP EN LAPTOPS Y MOBILE
================================= */

@media (max-width: 1366px), (max-height: 820px) {

    body {
        overflow: auto !important;
        background-color: #030207!important;
    }
    footer {
        position: sticky!important;
    }
    
    footer {
        bottom: 0!important;
    }
    
    
    .container-snap {
        height: auto !important;
    }

    .panel {
        position: relative !important;
        min-height: 100vh !important;
        padding: 20px;
        clip-path: none !important;
    }
    .panel-content  {
        opacity: 1!important;
    }
    .panel.is-active {
        clip-path: none !important;
    }
}


.modules-section .panel {
    min-height: 100vh!important;
    height: 100%;
    position: inherit!important;
}


.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* cajas normales */

.stat-box {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    padding: 10px 18px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 120px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* circulo online */

.stat-online {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 2px solid #600c75;
    box-shadow:
        0 0 10px rgba(0, 255, 120, 0.5),
        inset 0 0 10px rgba(0, 255, 120, 0.3);
    animation: pulseOnline 2s infinite;

}


/* numeros */

.stat-number {
    font-size: 18px;
    font-weight: bold;
    color: white;
    line-height: 1;
}

/* label */

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #cfcfcf;
    letter-spacing: 1px;
}

@keyframes pulseOnline {
    0% {
        box-shadow: 0 0 8px rgba(0, 255, 120, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 255, 120, 0.9);
    }

    100% {
        box-shadow: 0 0 8px rgba(0, 255, 120, 0.5);
    }
}