/*--------------------------------------------------------------
# MU ARMUS — Panel de Usuarios (Dark Glassmorphism Theme)
--------------------------------------------------------------*/

/* ===== CAPTCHA ARMUS ===== */
.armus-captcha-group { margin-top: 16px; text-align: left; }
.armus-captcha-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.armus-captcha-image {
  display: block;
  width: 210px;
  max-width: calc(100% - 54px);
  height: 58px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(244, 55, 61, 0.55);
  background: #121217;
}
.armus-captcha-refresh {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}
.armus-captcha-refresh:hover,
.armus-captcha-refresh:focus {
  border-color: #f4373d;
  background: rgba(244, 55, 61, 0.16);
  color: #fff;
  outline: none;
}
.armus-captcha-input {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.header-logo {
  display: none !important;
}

body {

  color: #f1f5f9;
  background-color: #0a0a0e;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(circle at 50% 15%, rgba(180, 20, 20, 0.35) 0%, rgba(10, 10, 15, 0.96) 75%), #0a0a0e;
  z-index: -1;
}

.row {
  margin: 0;
  padding: 0;
}

.nopadding {
  padding: 0 !important;
}

/* ===== Left Sidebar Layout ===== */
.user-dashboard-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 25px 15px 40px 15px;
}

.user-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.user-logo-link img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

.user-back-site-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.user-back-site-btn:hover {
  background: rgba(249, 47, 47, 0.25);
  border-color: rgba(249, 47, 47, 0.5);
  transform: translateY(-2px);
}

.user-sidebar-panel {
  background: rgba(18, 18, 26, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  margin-bottom: 25px;
}

.user-profile-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 18px;
}

.user-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f92f2f, #c0392b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(249, 47, 47, 0.4);
  flex-shrink: 0;
}

.user-profile-info {
  display: flex;
  flex-direction: column;
}

.user-profile-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
}

.user-profile-name {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
}

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

.user-sidebar-menu li {
  margin-bottom: 4px;
}

.user-sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.user-sidebar-menu li a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease;
}

.user-sidebar-menu li a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.user-sidebar-menu li a:hover i {
  color: #f92f2f;
}

.user-sidebar-menu li.active a {
  background: linear-gradient(135deg, rgba(249, 47, 47, 0.9), rgba(192, 57, 43, 0.9));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(249, 47, 47, 0.4);
}

.user-sidebar-menu li.active a i {
  color: #ffffff;
}

.user-sidebar-menu li.menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 12px 0;
}

.user-sidebar-menu li.menu-logout a {
  color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.08);
}

.user-sidebar-menu li.menu-logout a:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ffffff !important;
}

.user-sidebar-menu li.menu-logout a i {
  color: #ef4444;
}

/* ===== Main Glass Containers ===== */
.main-content, .login-form {
  background: rgba(18, 18, 26, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 35px 25px 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  color: #f1f5f9;
  margin-bottom: 40px;
}

/* ===== Header in Main Content ===== */
.header {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 18px;
  margin-bottom: 25px;
  margin-top: 0;
}

.mod-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  border-left: 4px solid #f92f2f;
  padding-left: 14px;
  float: none;
  max-width: none;
  text-transform: uppercase;
}

/* ===== Bootstrap 3 UI Dark Glassmorphism Overrides ===== */
.panel {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  overflow: hidden;
  margin-bottom: 25px;
}

.panel-default, .panel-primary, .panel-info, .panel-success, .panel-danger, .panel-warning {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.panel-heading {
  background: rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  padding: 14px 20px !important;
}

.panel-title {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  margin: 0;
}

.panel-body {
  padding: 22px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  background: transparent !important;
}

.panel-footer {
  background: rgba(0, 0, 0, 0.25) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 14px 20px !important;
  overflow: hidden;
}

.well {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  box-shadow: none !important;
  padding: 18px !important;
}

.thumbnail {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 12px !important;
}

.list-group-item {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.list-group-item:hover {
  background: rgba(249, 47, 47, 0.1) !important;
}

/* WCoinC Display */
.vipmoney-value {
  font-size: 44px !important;
  font-weight: 900 !important;
  color: #fbbf24 !important;
  text-align: center;
  margin: 0;
  line-height: 1;
}

/* VIP Data Table */
table.vip-data-table {
  width: 100%;
  margin-bottom: 25px;
}

table.vip-data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

table.vip-data-table td:last-child {
  text-align: right;
  width: 50px;
}

table.vip-data-table td img {
  height: 20px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.6));
}

/* Select Inputs */
select.form-control, select.imperial-textinpunt {
  background-color: #12121a !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

select.form-control option {
  background-color: #12121a !important;
  color: #ffffff !important;
}

/* Donaciones: evita que el texto de los desplegables quede recortado. */
.donation select.form-control,
.donation select.vipbuy {
  height: 46px !important;
  min-height: 46px !important;
  line-height: 24px !important;
  padding: 10px 42px 10px 14px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
}

.donation select.form-control option,
.donation select.vipbuy option {
  line-height: 24px !important;
  padding: 8px 12px;
}

/* ===== Dashboard User Stats Grid ===== */
.userstat {
  height: auto;
  position: relative;
  margin-bottom: 25px;
}

.homestats {
  padding: 0 6px;
}

.homestats .homestats-insidebox {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 0;
  height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.homestats .homestats-insidebox:hover {
  background: rgba(249, 47, 47, 0.08);
  border-color: rgba(249, 47, 47, 0.3);
  transform: translateY(-2px);
}

.homestats .homestats-insidebox p.value {
  height: auto;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.homestats .homestats-insidebox p.data {
  margin-top: 6px;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Subtitles & News ===== */
h3.subtitle {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.5px;
  padding-bottom: 12px;
  margin: 28px 0 18px 0;
  text-transform: uppercase;
}

.news-post {
  padding: 20px 24px;
  border-left: 4px solid #f92f2f;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 14px 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

.news-post.nomargin {
  margin-bottom: 0px;
}

.news-post p.title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.news-post span.content {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  display: block;
}

.news-post p.date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  margin-top: 12px;
  text-align: right;
  font-style: italic;
}

/* ===== Buttons & Inputs ===== */
.form-control, .imperial-textinpunt {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 10px 14px;
}

.form-control:focus, .imperial-textinpunt:focus {
  border-color: #f92f2f !important;
  box-shadow: 0 0 10px rgba(249, 47, 47, 0.3) !important;
}

.btn-primary.btn-imperial {
  background: linear-gradient(135deg, #f92f2f 0%, #c0392b 100%) !important;
  border: 1px solid rgba(249, 47, 47, 0.5) !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(249, 47, 47, 0.4) !important;
  transition: all 0.3s ease !important;
}

.btn-primary.btn-imperial:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(249, 47, 47, 0.6) !important;
  background: linear-gradient(135deg, #ff4545 0%, #d63031 100%) !important;
}

.btn-primary.btn-imperial-sm {
  background: linear-gradient(135deg, #f92f2f 0%, #c0392b 100%) !important;
  border: 1px solid rgba(249, 47, 47, 0.5) !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  padding: 4px 12px !important;
  font-size: 12px !important;
}

/* ===== Tables ===== */
.table {
  color: #f1f5f9 !important;
  background-color: transparent !important;
}

.table th {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  font-weight: 800;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
  border-top: none !important;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 14px 16px !important;
}

.table td {
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  vertical-align: middle !important;
  padding: 12px 16px !important;
  background-color: transparent !important;
}

.table-striped > tbody > tr:nth-of-type(odd),
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.02) !important;
}

.table-striped > tbody > tr:nth-of-type(even),
.table-striped tbody tr:nth-of-type(even) {
  background-color: transparent !important;
}

.table-hover > tbody > tr:hover,
.table-hover tbody tr:hover,
.armus-ticket-row:hover {
  background-color: rgba(249, 47, 47, 0.14) !important;
}

/* Titles */
h3.main-title, h3.title, .main-title {
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 18px !important;
  letter-spacing: 0.5px;
  margin: 25px 0 16px 0 !important;
  text-transform: uppercase;
}

/* Support Intro & Note Cards */
.armus-support-intro, .armus-support-note {
  margin-bottom: 22px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-left: 4px solid #f92f2f !important;
  border-radius: 0 12px 12px 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85) !important;
}

.armus-ticket-subject {
  font-weight: 700 !important;
  color: #ffffff !important;
}

.armus-ticket-date {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.6) !important;
}


/* ===== Alerts ===== */
.oaerror {
  margin: 15px 0;
  background: rgba(18, 18, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left-width: 5px;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  color: #ffffff;
}

.oaerror.danger {
  border-left-color: #f92f2f;
  background: rgba(249, 47, 47, 0.1);
}

.oaerror.danger strong {
  color: #f92f2f;
}

.oaerror.success {
  border-left-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.oaerror.success strong {
  color: #10b981;
}

.oaerror.info {
  border-left-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

.oaerror.info strong {
  color: #3b82f6;
}

.oaerror.warning {
  border-left-color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

.oaerror.warning strong {
  color: #f59e0b;
}

/* ===== Footer Data ===== */
.footer-data {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-data a {
  color: #f92f2f;
}

/* Badges & Links */
.badge.notification {
  background: #f92f2f;
  color: #ffffff;
  font-weight: 800;
}

span.vipduration {
  font-weight: 900;
  font-size: 20px;
  color: #f92f2f;
}

a {
  color: #f92f2f;
  transition: color 0.2s ease;
}

a:hover {
  color: #ff6b6b;
  text-decoration: none;
}

/* ===== AdminCP & Default Buttons Overrides ===== */
.btn-default {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
  padding: 8px 14px !important;
}

.btn-default:hover, .btn-default:focus, .btn-default:active {
  background: rgba(249, 47, 47, 0.25) !important;
  border-color: rgba(249, 47, 47, 0.5) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(249, 47, 47, 0.3) !important;
}

/* ===== Summernote Editor Dark Theme Overrides ===== */
.note-editor.note-frame {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: rgba(18, 18, 26, 0.95) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  margin-top: 15px !important;
  margin-bottom: 20px !important;
}

.note-toolbar {
  background: rgba(255, 255, 255, 0.04) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 8px 10px !important;
}

.note-toolbar .note-btn {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  padding: 6px 10px !important;
}

.note-toolbar .note-btn:hover {
  background: rgba(249, 47, 47, 0.25) !important;
  border-color: rgba(249, 47, 47, 0.5) !important;
  color: #ffffff !important;
}

.note-editing-area {
  background: #0f0f17 !important;
}

.note-editable {
  background-color: #0f0f17 !important;
  color: #f1f5f9 !important;
  padding: 18px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  min-height: 280px !important;
}

.note-statusbar {
  background: rgba(255, 255, 255, 0.03) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.note-statusbar .note-resizebar {
  border-top: none !important;
  padding-top: 4px !important;
}

.note-statusbar .note-icon-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.note-popover .popover-content, .note-popover .popover-body {
  background: #181824 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.note-modal .modal-content {
  background: #181824 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.note-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.note-modal .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}


/* ===== Mobile Responsiveness ===== */
@media (max-width: 991px) {
  .user-sidebar-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .user-sidebar-menu li {
    margin-bottom: 0;
    flex: 1 1 auto;
  }
  
  .user-sidebar-menu li.menu-divider {
    display: none;
  }

  .main-content, .login-form {
    padding: 20px 15px;
    border-radius: 14px;
  }
  
  .userstat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .homestats {
    width: 100% !important;
    padding: 0 !important;
  }
  
  .mod-title {
    font-size: 17px;
  }
}
