/* 
    Template 4: MU Online Dark Fantasy Realistic
    Style: Glassmorphism / Neon Fantasy
*/

:root {
    --primary-color: #f57c00;
    --primary-glow: #ffb300;
    --secondary-color: #ffd700;
    --bg-dark: rgba(15, 10, 5, 0.8); /* Dark warm brown/black */
    --bg-light: rgba(35, 20, 10, 0.6);
    --border-glow: rgba(255, 179, 0, 0.5);
    --text-main: #f0f0f5;
    --text-muted: #bbaea0; /* Warmer muted text */
    --glass-blur: blur(12px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #050508;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.lang-switcher {
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 8px;
    background: rgba(10, 8, 6, 0.7);
    backdrop-filter: blur(6px);
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.lang-switcher a {
    display: inline-block;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.lang-switcher a:hover {
    opacity: 1;
}
.lang-switcher img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    display: block;
}

body.home-page {
    background-color: #050508;
}

body { overflow-x: hidden; }

body.inner-page {
    background-color: #050508;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin: 0 0 15px 0;
}

a {
    color: var(--primary-glow);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-glow);
    text-decoration: none;
}

/* Video Background */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-bg-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
}

/* Site Wrapper */
.site-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Particles canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* -------------------------------------
   Header & Navigation
------------------------------------- */
.main-header {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0;
    height: 70px;
    position: relative;
    z-index: 100;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* Borde Geométrico con colores vivos */
.main-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
    background: linear-gradient(90deg, #5a3d00 0%, #ff8c00 15%, #ffd700 30%, #ff6b00 50%, #ffd700 70%, #ff8c00 85%, #5a3d00 100%);
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.8)) drop-shadow(0 0 15px rgba(255, 179, 0, 0.3));
    clip-path: polygon(20px 0, calc(50% - 110px) 0, calc(50% - 80px) 20px, calc(50% + 80px) 20px, calc(50% + 110px) 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, calc(50% + 110px) 100%, calc(50% + 80px) calc(100% - 20px), calc(50% - 80px) calc(100% - 20px), calc(50% - 110px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px, 20px 0, 21px 2px, 2px 21px, 2px calc(100% - 21px), 21px calc(100% - 2px), calc(50% - 111px) calc(100% - 2px), calc(50% - 80px) calc(100% - 22px), calc(50% + 80px) calc(100% - 22px), calc(50% + 111px) calc(100% - 2px), calc(100% - 21px) calc(100% - 2px), calc(100% - 2px) calc(100% - 21px), calc(100% - 2px) 21px, calc(100% - 21px) 2px, calc(50% + 111px) 2px, calc(50% + 80px) 22px, calc(50% - 80px) 22px, calc(50% - 111px) 2px, 21px 2px);
}

/* Capa interior oscura (Cristal) */
.main-header::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    z-index: -1;
    background: rgba(15, 10, 5, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    clip-path: polygon(19px 0, calc(50% - 109px) 0, calc(50% - 80px) 19px, calc(50% + 80px) 19px, calc(50% + 109px) 0, calc(100% - 19px) 0, 100% 19px, 100% calc(100% - 19px), calc(100% - 19px) 100%, calc(50% + 109px) 100%, calc(50% + 80px) calc(100% - 19px), calc(50% - 80px) calc(100% - 19px), calc(50% - 109px) 100%, 19px 100%, 0 calc(100% - 19px), 0 19px);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    position: relative;
}

.nav-left, .nav-right {
    flex: 1;
}

.nav-left ul, .nav-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-left ul {
    justify-content: flex-end;
    padding-right: 40px;
}

.nav-right ul {
    justify-content: flex-start;
    padding-left: 40px;
}

.nav-container ul li {
    margin: 0 15px;
}

.nav-container ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
}

.nav-container ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-glow);
    box-shadow: 0 0 8px var(--primary-glow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-container ul li a:hover::after {
    width: 100%;
}

/* Glassmorphism Dropdown Menu */
.nav-container .dropdown-menu {
    background: var(--bg-dark);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 179, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    padding: 10px 0;
    min-width: 150px;
    margin-top: 15px;
    /* Force override any inherited flex styles from .nav-right ul */
    display: none; 
}

/* Let Bootstrap handle the display block on open */
.open > .dropdown-menu {
    display: block;
}

.nav-container .dropdown-menu > li {
    margin: 0; /* Override the 15px margin from nav links */
    display: block;
}

.nav-container .dropdown-menu > li > a {
    color: #fff;
    padding: 8px 20px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    transition: all 0.2s;
    display: block; /* Ensure they stack vertically */
}

.nav-container .dropdown-menu > li > a:hover {
    background: rgba(255, 179, 0, 0.2);
    color: var(--secondary-color);
    text-shadow: none;
}

.nav-container .dropdown-menu > li > a::after {
    display: none; /* No underline in dropdown */
}

/* Glassmorphism Search Bar (in case the white strip is an input) */
.nav-search-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 13px;
    transition: all 0.3s;
    outline: none;
}

.nav-search-input:focus {
    border-color: var(--primary-glow);
    box-shadow: 0 0 10px rgba(255, 179, 0, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

/* -------------------------------------
   Contador Central en Navegación
------------------------------------- */
.nav-center-counter {
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: default;
    z-index: 1000;
}

.nav-orb-widget {
    display: flex;
    align-items: center;
    position: relative;
    cursor: default;
    z-index: 1000;
}

.orb-core {
    width: 85px;
    height: 85px;
    background: #3d1f00;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: 2px solid rgba(255, 179, 0, 0.6);
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.4), inset 0 0 25px rgba(255, 50, 0, 0.8);
    position: relative;
    z-index: 2;
}

.orb-label {
    display: none;
}

@keyframes orbPulse {
    0% { box-shadow: 0 0 15px rgba(255, 179, 0, 0.3), inset 0 0 10px rgba(255, 100, 0, 0.4); border-color: rgba(255, 179, 0, 0.4); }
    100% { box-shadow: 0 0 35px rgba(255, 179, 0, 0.8), inset 0 0 25px rgba(255, 100, 0, 0.8); border-color: rgba(255, 200, 50, 1); }
}

.orb-icon {
    font-size: 18px;
    color: var(--primary-glow);
}

.orb-count {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Cinzel', serif;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 179, 0, 0.8);
}

/* -------------------------------------
   Levitating Hero Logo
------------------------------------- */
.hero-logo-container {
    margin-bottom: 40px;
    margin-top: 10px;
    animation: levitateLogo 4s ease-in-out infinite;
}

.hero-logo {
    height: 250px;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.8));
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.hero-logo:hover {
    filter: drop-shadow(0 0 35px rgba(255, 179, 0, 0.8)) drop-shadow(0 0 15px rgba(255, 100, 0, 0.6));
    transform: scale(1.08);
}

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

/* -------------------------------------
   Main Layout Container
------------------------------------- */
.main-content-area {
    flex: 1;
    max-width: 1650px;
    margin: 0 auto;
    width: 100%;
}

/* 2D Flat Layout with Extra Spacing */
.main-content-area > .row {
    /* 3D Perspective eliminada para garantizar textos 100% nítidos */
}

.home-page .main-content-area > .row {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.left-column {
    position: relative;
    right: 40px;
    z-index: 5;
    width: 20%;
    display: flex;
    flex-direction: column;
}

.left-column .glass-widget {
    flex: 1;
}

.right-column {
    display: flex;
    flex-direction: column;
}

.right-column .glass-widget {
    flex: 1;
}
.center-column {
    width: 60%;
}
.right-column {
    position: relative;
    left: 40px;
    z-index: 5;
    width: 20%;
}

/* Symmetry: login matches downloads, resets matches guilds */
.login-widget,
.download-widget {
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.login-widget .widget-body,
.download-widget .widget-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-column .ranking-widget,
.right-column .ranking-widget {
    display: flex;
    flex-direction: column;
}

.left-column .ranking-widget .widget-body,
.right-column .ranking-widget .widget-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glass-widget {
    background: var(--bg-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 179, 0, 0.25);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 80, 0, 0.5), 0 0 60px rgba(255, 50, 0, 0.2);
    animation: glow-pulse 2.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 25px rgba(255, 80, 0, 0.5), 0 0 60px rgba(255, 50, 0, 0.2); }
    50% { box-shadow: 0 0 10px rgba(255, 80, 0, 0.1), 0 0 20px rgba(255, 50, 0, 0.05); }
}

.carousel-section {
    will-change: box-shadow;
}

.widget-title {
    font-size: 14px; /* Reducido para asegurar que quepa en 1 línea con el ícono */
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    position: relative;
    background: linear-gradient(90deg, #ffca28 0%, #ff8f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 0.5px; /* Reducido para evitar desbordamiento */
    text-shadow: 0 0 15px rgba(255, 179, 0, 0.4);
    white-space: nowrap; /* Fuerza a una línea */
}

/* Separador de energía láser centrado */
.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 15%; 
    right: 15%; /* Concentrado en el centro */
    height: 1px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.9) 0%, transparent 100%);
    box-shadow: 0 0 8px rgba(255, 179, 0, 0.6);
}

.ver-todos {
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    color: var(--primary-glow);
    border: 1px solid var(--primary-glow);
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.ver-todos:hover {
    background: var(--primary-glow);
    color: #fff;
}

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }
.p-0 { padding: 0 !important; }

/* -------------------------------------
   Forms & Buttons
------------------------------------- */
.glass-input {
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255, 179, 0, 0.3);
    color: #fff;
    border-radius: 6px;
    padding: 10px 15px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.8);
    transition: all 0.3s;
}

.glass-input:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--primary-glow);
    box-shadow: 0 0 10px rgba(255, 179, 0, 0.5), inset 0 2px 5px rgba(0,0,0,0.9);
    outline: none;
}

.btn-primary-glow {
    background: linear-gradient(135deg, #ffb300, #d96f33);
    border: 1px solid #ff8f00;
    color: #fff;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: inset 0 2px 5px rgba(255,255,255,0.3), 0 5px 15px rgba(245, 124, 0, 0.5);
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-primary-glow:hover {
    background: linear-gradient(135deg, #f57c00, #e65100);
    box-shadow: inset 0 2px 5px rgba(255,255,255,0.4), 0 5px 25px rgba(245, 124, 0, 0.8);
    color: #fff;
}

.btn-secondary-glow {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary-glow:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.form-links a {
    font-size: 12px;
    color: var(--text-muted);
}
.form-links a:hover { color: #fff; }

/* -------------------------------------
   Rankings Tables
------------------------------------- */
.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table th {
    font-size: 11px;
    color: var(--text-muted);
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 179, 0, 0.2);
}

.ranking-table td {
    padding: 12px 15px;
    border-bottom: none;
    font-size: 13px;
    height: 45px;
}

.ranking-table td.text-left {
    white-space: nowrap;
}

.ranking-table td.text-left img {
    display: inline;
    vertical-align: middle;
}

.ranking-table tr:hover td {
    background: linear-gradient(to right, transparent, rgba(255,179,0,0.1), transparent);
}

.ranking-table td.highlight {
    color: #ffcc00;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.4);
}

.rank-class-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 5px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* -------------------------------------
   News Cards
------------------------------------- */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-card {
    display: flex;
    background: rgba(25, 15, 5, 0.5); /* Warm dark */
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 2px solid rgba(255, 179, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%); /* Esquina inferior derecha cortada */
}

.news-card:hover {
    transform: translateX(10px) scale(1.02); /* Sale hacia adelante y la derecha */
    box-shadow: -15px 15px 30px rgba(0,0,0,0.8), 0 0 15px rgba(255, 179, 0, 0.2);
    border-color: rgba(255,179,0,0.4);
    border-left-color: #ffb300;
    background: rgba(30, 15, 5, 0.8); /* Warmer dark */
}

.news-img {
    width: 220px; /* Un poco más ancha */
    background-size: cover;
    background-position: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0 100%); /* Corte diagonal agresivo en la derecha */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Efecto Zoom en la imagen al hacer hover sobre la tarjeta completa */
.news-card:hover .news-img {
    transform: scale(1.15) translateX(5px);
}

/* Fallback backgrounds for demo news */
.news-img { background-color: #1a1a2e; }

.news-info {
    flex: 1;
    padding: 15px;
}

.news-tag {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    background: var(--primary-glow);
    display: inline-block;
    margin-bottom: 8px;
}
.news-tag.evento { background: #ff4757; }
.news-tag.actualización { background: #2ed573; }

.news-title {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.news-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 10px;
}

.btn-read-more {
    margin-left: auto;
    color: var(--primary-glow);
    border: 1px solid var(--primary-glow);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-read-more:hover {
    background: var(--primary-glow);
    color: #fff;
}

/* -------------------------------------
   Download Widget
------------------------------------- */
.download-widget {
    background: linear-gradient(135deg, rgba(40, 20, 5, 0.8), rgba(15, 10, 5, 0.9));
    border-color: rgba(255, 179, 0, 0.3);
}

.client-name {
    font-size: 20px;
    color: #fff;
    font-family: 'Cinzel', serif;
    margin: 10px 0 0 0;
}

.client-version {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(217, 111, 51, 0.6), inset 0 2px 5px rgba(255,255,255,0.3); }
    50% { box-shadow: 0 0 30px rgba(217, 111, 51, 0.9), inset 0 2px 5px rgba(255,255,255,0.5); }
    100% { box-shadow: 0 0 15px rgba(217, 111, 51, 0.6), inset 0 2px 5px rgba(255,255,255,0.3); }
}

.btn-download-glow {
    background: linear-gradient(to bottom, #d96f33, #8a360f);
    border: 1px solid #ff9557;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 700;
    display: block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.8), inset 0 2px 5px rgba(255,255,255,0.3);
    font-size: 18px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    animation: pulseGlow 2s infinite ease-in-out;
}

.btn-download-glow:hover {
    background: linear-gradient(to bottom, #ff9557, #d96f33);
    color: #fff;
}

/* -------------------------------------
   Carousel Top Killers
------------------------------------- */
.carousel-col {
    padding-left: 40px;
    padding-right: 40px;
}

.carousel-section {
    position: relative;
    background: var(--bg-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 15px;
    padding: 25px;
    margin-left: -30px;
    margin-right: -30px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 80, 0, 0.5), 0 0 60px rgba(255, 50, 0, 0.2);
    animation: glow-pulse 2.5s ease-in-out infinite;
    z-index: 1;
}
.carousel-section * {
    position: relative;
    z-index: 2;
}

.carousel-title {
    font-size: 26px;
    padding-bottom: 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    position: relative;
    background: linear-gradient(90deg, #ffca28 0%, #ff8f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 0 25px rgba(255, 179, 0, 0.6), 0 0 50px rgba(255, 100, 0, 0.3);
    white-space: nowrap;
    text-transform: uppercase;
}

.carousel-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.9) 0%, transparent 100%);
    box-shadow: 0 0 8px rgba(255, 179, 0, 0.6);
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.carousel-track {
    display: inline-flex;
    animation: carouselScroll 40s linear infinite;
}

@keyframes carouselScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.carousel-item {
    width: 160px;
    height: 200px;
    border: 1px solid rgba(255, 179, 0, 0.25);
    border-radius: 10px;
    flex-shrink: 0;
    margin: 0 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-class-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 10, 5, 1) 0%, rgba(15, 10, 5, 0.9) 10%, rgba(15, 10, 5, 0.6) 35%, rgba(15, 10, 5, 0.05) 65%, transparent 100%);
    z-index: 1;
}

.carousel-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-glow);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8), 0 0 15px rgba(255, 179, 0, 0.4);
    z-index: 10;
}

.carousel-item-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 12px 8px;
    width: 100%;
}

.carousel-rank {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    line-height: 1;
}

.carousel-name {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    margin-top: 4px;
}

.carousel-kills {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}



/* -------------------------------------
   Footer
------------------------------------- */
.main-footer {
    background: rgba(0,0,0,0.8);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0 20px 0;
}

.follow-text {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-social {
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
}

.btn-social.discord:hover { background: #7289da; border-color: #7289da; }
.btn-social.facebook:hover { background: #3b5998; border-color: #3b5998; }
.btn-social.youtube:hover { background: #ff0000; border-color: #ff0000; }
.btn-social.instagram:hover { background: #e1306c; border-color: #e1306c; }
.btn-social.tiktok:hover { background: #000000; border-color: #69c9d0; }

.copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* AdminCP floating button */
.admincp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #ffb300, #d96f33);
    border: 1px solid #ff8f00;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
    transition: all 0.3s;
    text-decoration: none;
}

.admincp-button:hover {
    background: linear-gradient(135deg, #f57c00, #e65100);
    color: #fff;
    box-shadow: 0 8px 30px rgba(245, 124, 0, 0.6);
    transform: translateY(-2px);
}

/* Hamburger menu button */
.hamburger-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger-btn .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    border-radius: 1px;
    transition: all 0.3s;
}

.hamburger-btn:hover .icon-bar {
    background: var(--primary-glow);
}

/* -------------------------------------
   Inner Pages (Modules)
------------------------------------- */
.inner-page-widget {
    min-height: 500px;
    max-width: 990px;
    margin: 0 auto;
}

.inner-page-widget .widget-body > :first-child {
    margin-top: 0;
}

.inner-page-widget .widget-body > :last-child {
    margin-bottom: 0;
}

/* Page Titles */
.page-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    text-align: center;
    background: linear-gradient(90deg, #ffca28 0%, #ff8f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid rgba(255, 179, 0, 0.2);
    letter-spacing: 1px;
}

/* Inner page module page title (downloads, info, etc) */
.inner-page-widget .page-title {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 179, 0, 0.3);
    padding-bottom: 15px;
    background: none;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: initial;
    letter-spacing: normal;
}

.inner-page-widget .page-title span {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 179, 0, 0.4);
    letter-spacing: 2px;
}

/* Generic Panels (news, downloads, general) */
.panel,
.panel-news,
.panel-downloads,
.panel-general {
    background: var(--bg-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 179, 0, 0.25);
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.panel-downloads:hover {
    border-color: rgba(255, 179, 0, 0.5);
}

.panel-heading {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 179, 0, 0.1);
}

.panel-heading .panel-title {
    font-size: 16px;
    margin: 0;
    color: var(--primary-glow);
    font-family: 'Cinzel', serif;
}

.panel-heading .panel-title a {
    color: var(--primary-glow);
}

.panel-heading .panel-title a:hover {
    color: #fff;
}

.panel-body {
    padding: 20px;
}

.panel-footer {
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 12px;
}

/* Panel download title override */
.inner-page-widget .panel-downloads .panel-body {
    padding: 0;
}

.inner-page-widget .panel-downloads .panel-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 25px;
    background: linear-gradient(90deg, rgba(255, 179, 0, 0.1), transparent);
    border-bottom: 1px solid rgba(255, 179, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.inner-page-widget .panel-downloads .panel-title::before {
    content: '\f019';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ffca28;
    font-size: 20px;
}

.download-description {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 3px;
    font-weight: 400;
}

/* Download table inside panel */
.inner-page-widget .panel-downloads .table {
    margin-bottom: 0 !important;
    border: none !important;
    background: transparent !important;
}

.inner-page-widget .panel-downloads .table td {
    border-color: rgba(255, 255, 255, 0.04) !important;
    padding: 16px 25px !important;
    vertical-align: middle;
}

.inner-page-widget .panel-downloads .table tr:hover td {
    background: rgba(255, 179, 0, 0.03);
}

/* Download button inside panel */
.inner-page-widget .panel-downloads .btn-xs {
    background: linear-gradient(180deg, #ff8f00 0%, #d96f33 50%, #8a360f 100%);
    border: 1px solid #ff9557;
    color: #fff;
    border-radius: 6px;
    padding: 8px 22px;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    box-shadow: 0 4px 12px rgba(217, 111, 51, 0.3);
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.inner-page-widget .panel-downloads .btn-xs:hover {
    background: linear-gradient(180deg, #ffaa33 0%, #ff8f00 50%, #a84410 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 111, 51, 0.6);
    text-decoration: none;
    color: #fff;
}

.inner-page-widget .panel-downloads .text-center {
    text-align: center;
}

/* Tables (Bootstrap .table + rankings-table) */
.table,
.rankings-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    background: transparent;
    color: var(--text-main);
}

.table tr,
.rankings-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.table tr:last-child,
.rankings-table tr:last-child {
    border-bottom: none;
}

.table th,
.rankings-table th,
.table td,
.rankings-table td {
    padding: 14px 12px;
    vertical-align: middle;
    border-top: none;
    font-size: 13px;
}

/* Download table specific overrides */
.panel-downloads .table td:first-child {
    font-weight: 600;
    color: #e0d5c0;
    font-size: 14px;
}

.panel-downloads .table td:nth-child(2) {
    color: var(--text-muted);
    font-size: 12px;
}

/* Download button inside panel */
.panel-downloads .btn-primary {
    background: linear-gradient(to bottom, #d96f33, #8a360f);
    border: 1px solid #ff9557;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    box-shadow: 0 5px 12px rgba(0,0,0,0.6), inset 0 1px 3px rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.panel-downloads .btn-primary:hover {
    background: linear-gradient(to bottom, #ff9557, #d96f33);
    box-shadow: 0 0 20px rgba(217, 111, 51, 0.5), 0 5px 12px rgba(0,0,0,0.6);
}

/* Panel-downloads table row hover effect */
.panel-downloads .table tr:hover {
    background: rgba(255, 179, 0, 0.04);
}

.table th,
.rankings-table th {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 179, 0, 0.15);
}

.table td,
.rankings-table td {
    border-bottom: none;
    background: transparent;
}

.table tr:hover td,
.rankings-table tr:hover td {
    background: linear-gradient(to right, transparent, rgba(255, 179, 0, 0.05), transparent);
}

/* Bootstrap table variant overrides */
.table-striped > tbody > tr:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.table-bordered,
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 8px 10px;
}

.rankings-table td img {
    vertical-align: middle;
    margin-right: 5px;
}

.rankings-table-place {
    font-weight: 700;
    color: var(--primary-glow);
}

.rankings-class-image {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    vertical-align: middle;
}

.online-status-indicator {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    vertical-align: middle;
}

.rankings-update-time {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 15px;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Rankings Menu (sub-navigation tabs) */
.rankings_menu {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 179, 0, 0.1);
}

.rankings_menu a {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 10, 5, 0.3);
    transition: all 0.3s ease;
}

.rankings_menu a:hover {
    color: #fff;
    border-color: var(--primary-glow);
    background: rgba(255, 179, 0, 0.1);
}

.rankings_menu a.active {
    color: #fff;
    border-color: var(--primary-glow);
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.2), rgba(217, 111, 51, 0.2));
    box-shadow: 0 0 10px rgba(255, 179, 0, 0.3);
}

/* Rankings Class Filter */
.rankings-class-filter {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.rankings-class-filter li {
    display: inline-block;
}

.rankings-class-filter-selection {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(15, 10, 5, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
}

.rankings-class-filter-selection:hover {
    border-color: var(--primary-glow);
    color: #fff;
    background: rgba(255, 179, 0, 0.1);
}

.rankings-class-filter-grayscale {
    filter: grayscale(0.6);
    opacity: 0.7;
}

.rankings-class-filter-grayscale:hover {
    filter: grayscale(0);
    opacity: 1;
}

.rankings-class-filter-image {
    width: 28px;
    height: 28px;
    display: block;
    margin: 0 auto 4px auto;
}

/* Forms */
.register-container {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 18px;
}

.form-label,
label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

.form-label-check {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-label-check input[type="checkbox"] {
    accent-color: var(--primary-glow);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-control {
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 179, 0, 0.3);
    color: #fff;
    border-radius: 6px;
    padding: 10px 15px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.8);
    transition: all 0.3s;
    width: 100%;
    font-size: 14px;
    outline: none;
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--primary-glow);
    box-shadow: 0 0 10px rgba(255, 179, 0, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.9);
    outline: none;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.input-group {
    display: flex;
    align-items: stretch;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: rgba(25, 15, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: var(--text-muted);
    font-size: 14px;
}

.input-group .form-control {
    border-radius: 0 6px 6px 0;
    flex: 1;
}

.form-text {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Buttons (Bootstrap overrides) */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb300, #d96f33);
    border: 1px solid #ff8f00;
    color: #fff;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.3), 0 5px 15px rgba(245, 124, 0, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f57c00, #e65100);
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.4), 0 5px 25px rgba(245, 124, 0, 0.8);
    color: #fff;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-xs {
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 4px;
}

/* Alerts (message function output) */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    border: 1px solid transparent;
    position: relative;
}

.alert-danger {
    background: rgba(220, 50, 50, 0.15);
    border-color: rgba(220, 50, 50, 0.3);
    color: #ff6b6b;
    box-shadow: 0 0 15px rgba(220, 50, 50, 0.2);
}

.alert-success {
    background: rgba(50, 220, 100, 0.15);
    border-color: rgba(50, 220, 100, 0.3);
    color: #51cf66;
    box-shadow: 0 0 15px rgba(50, 220, 100, 0.2);
}

.alert-warning {
    background: rgba(255, 179, 0, 0.15);
    border-color: rgba(255, 179, 0, 0.3);
    color: var(--primary-glow);
    box-shadow: 0 0 15px rgba(255, 179, 0, 0.2);
}

.alert-info {
    background: rgba(50, 150, 255, 0.15);
    border-color: rgba(50, 150, 255, 0.3);
    color: #5c9eff;
    box-shadow: 0 0 15px rgba(50, 150, 255, 0.2);
}

/* Horizontal Rule */
hr {
    border: none;
    height: 1px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.3) 0%, transparent 100%);
    margin: 20px 0;
}

/* Info Section (Server Info page) */
.info-section {
    margin-bottom: 25px;
}

.info-section h2 {
    font-size: 16px;
    color: var(--primary-glow);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 179, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.info-card {
    background: rgba(15, 10, 5, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(255, 179, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.info-card-icon {
    font-size: 24px;
    color: var(--primary-glow);
    margin-bottom: 8px;
}

.info-card-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-card-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Cinzel', serif;
}

/* Donation Page */
.donation-container {
    max-width: 500px;
    margin: 0 auto;
}

.donation-card {
    background: rgba(15, 10, 5, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.donation-card-icon {
    font-size: 40px;
    color: var(--primary-glow);
    margin-bottom: 15px;
}

.donation-card-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.donation-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.donation-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.donation-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(25, 15, 8, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--text-main);
    text-decoration: none;
}

.donation-method:hover {
    border-color: var(--primary-glow);
    background: rgba(255, 179, 0, 0.08);
    color: #fff;
    transform: translateX(5px);
}

.donation-method-icon {
    font-size: 28px;
    color: var(--primary-glow);
    min-width: 40px;
    text-align: center;
}

.donation-method-info {
    flex: 1;
    text-align: left;
}

.donation-method-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.donation-method-desc {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.donation-method-arrow {
    font-size: 16px;
    color: var(--text-muted);
}

/* Forgot Password Page - same form style as register */
.text-center {
    text-align: center;
}

/* Utility overrides for module compatibility */
.nopadding {
    padding: 0 !important;
}

.mb-3 {
    margin-bottom: 15px;
}

.news-readmore {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-glow);
    border: 1px solid var(--primary-glow);
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-readmore:hover {
    background: var(--primary-glow);
    color: #fff;
    text-decoration: none;
}

/* Alineación de columnas laterales en Desktop */
@media(min-width: 992px) {
    .left-column, .right-column {
        margin-top: 300px; /* Compensa la altura del logo (250px) + márgenes (10px + 40px) */
    }
}

/* Responsive adjustments */
@media(max-width: 991px) {
    .nav-container { flex-direction: column; position: relative; }
    .nav-left ul, .nav-right ul { padding: 10px 0; justify-content: center; }
    .hamburger-btn { display: block; }
    .nav-left, .nav-right { display: none; width: 100%; }
    .nav-left.open, .nav-right.open { display: block; }
    .nav-left ul, .nav-right ul { flex-direction: column; align-items: center; }
    .nav-container ul li { margin: 8px 0; }
    .main-header { height: auto; min-height: 70px; }
    .top-info-bar { flex-direction: column; align-items: center; }
    .col-md-3, .col-md-6 { margin-bottom: 20px; }
    .killers-container { flex-wrap: wrap; gap: 20px; }
}

@media(max-width: 768px) {
    .news-card { flex-direction: column; }
    .news-img { width: 100%; height: 180px; clip-path: none; }
    .hero-logo { height: 140px; }
    .orb-core { width: 65px; height: 65px; }
    .orb-count { font-size: 20px; }
    .home-page .main-content-area > .row { flex-direction: column; }
    .left-column, .right-column { width: 100%; right: auto; left: auto; margin-top: 0; }
    .center-column { width: 100%; }
    .carousel-item { width: 130px; height: 170px; }
    .inner-page-widget .page-title span { font-size: 24px; }
    .social-buttons { gap: 8px; }
    .btn-social { font-size: 10px; padding: 6px 10px; }
}

@media(max-width: 480px) {
    .hero-logo { height: 100px; }
    .carousel-item { width: 110px; height: 150px; }
    .inner-page-widget .page-title span { font-size: 18px; }
    .carousel-title { font-size: 18px; }
}

/* ---- Buy Zen ---- */
.form-buyzen .row-label { margin-bottom: 6px; }
.form-buyzen .row-label .col-xs-4 { color: #ffd700; font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.form-buyzen .select-wrap { padding: 0 5px; }
.form-buyzen select.form-control { height: 38px; padding: 4px 10px; font-size: 13px; }
.form-buyzen select.form-control:focus { border-color: #ffd700; box-shadow: 0 0 12px rgba(255,215,0,0.15); outline: none; }
.form-buyzen .btn-primary { background: linear-gradient(135deg, #ffb300, #d96f33); border: none; padding: 6px 16px; border-radius: 8px; font-weight: 700; text-transform: uppercase; font-size: 12px; color: #000; transition: all 0.3s; letter-spacing: 1px; height: 38px; width: 100%; }
.form-buyzen .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4); }

