/* ==========================================================================
   NEO LAGHAIM - OFFICIAL CLASSIC MMORPG THEME STYLESHEET
   Aesthetics: Dark Fantasy, Ornate Gold RPG, Medieval Gothic, Glowing Metallic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@500;600;700;800;900&family=Marcellus&family=Rajdhani:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --nl-bg-dark: #050811;
  --nl-bg-card: #080d19;
  --nl-bg-card-alt: #0a1122;
  --nl-bg-input: #070b14;

  --nl-gold-1: #ffffff;
  --nl-gold-2: #fff2c2;
  --nl-gold-3: #f5ce66;
  --nl-gold-4: #d4af37;
  --nl-gold-5: #a07a1c;
  --nl-gold-6: #664d0d;

  --nl-gold-gradient: linear-gradient(180deg, #ffffff 0%, #fff0b8 20%, #f3cb60 40%, #d4af37 60%, #99731a 85%, #594008 100%);
  --nl-gold-gradient-subtle: linear-gradient(180deg, #f5e4b2 0%, #d4af37 50%, #8c6a18 100%);
  --nl-gold-border-gradient: linear-gradient(180deg, #d4af37 0%, #664d0d 50%, #d4af37 100%);
  --nl-blue-btn-gradient: linear-gradient(180deg, #1b365d 0%, #11223b 50%, #0a1526 100%);
  --nl-blue-btn-hover: linear-gradient(180deg, #24497d 0%, #173054 50%, #0e1e36 100%);

  --nl-border-gold: #826622;
  --nl-border-gold-light: #c49f38;
  --nl-border-dark: #1a263d;

  --nl-text-primary: #e6edf8;
  --nl-text-secondary: #8c9eb5;
  --nl-text-gold: #e2be58;
  --nl-text-muted: #5e7087;

  --nl-font-title: 'Cinzel', serif;
  --nl-font-decor: 'Cinzel Decorative', serif;
  --nl-font-sub: 'Marcellus', serif;
  --nl-font-body: 'Inter', sans-serif;
  --nl-font-num: 'Rajdhani', sans-serif;
}

/* Reset & Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.neolaghaim-body {
  background-color: var(--nl-bg-dark);
  background-image: radial-gradient(circle at 50% 30%, rgba(20, 35, 60, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(25, 45, 75, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, #050811 0%, #03050a 100%);
  background-attachment: fixed;
  color: var(--nl-text-primary);
  font-family: var(--nl-font-body);
  font-size: 13.5px;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover {
  text-decoration: none;
  color: var(--nl-gold-3);
}

/* ==========================================================================
   1. TOP UTILITY BAR
   ========================================================================== */
.nl-topbar {
  height: 42px;
  background: rgba(5, 8, 17, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: none;
  position: relative;
  z-index: 100;
}

.nl-topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nl-topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nl-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--nl-font-title);
  font-size: 12px;
  font-weight: 500;
  color: #cfd9e8;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.nl-topbar-link img.top-icon {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
}

.nl-topbar-link:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(245, 206, 102, 0.7);
}

.nl-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nl-btn-top-auth {
  font-family: var(--nl-font-title);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e6edf8;
  background: rgba(12, 18, 32, 0.9);
  border: 1px solid #7d6328;
  padding: 5px 14px;
  border-radius: 2px;
  transition: all 0.2s ease;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.8);
}

.nl-btn-top-auth:hover {
  background: rgba(24, 38, 66, 0.9);
  border-color: #d4af37;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4), inset 0 0 6px rgba(212, 175, 55, 0.2);
}

.nl-btn-top-logout {
  color: #ff9e9e !important;
  border-color: rgba(239, 68, 68, 0.45) !important;
  background: rgba(45, 10, 15, 0.8) !important;
}

.nl-btn-top-logout:hover {
  background: rgba(80, 15, 25, 0.9) !important;
  border-color: #ef4444 !important;
  color: #ffffff !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5), inset 0 0 6px rgba(239, 68, 68, 0.25) !important;
}

.nl-lang-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.nl-lang-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--nl-font-title);
  font-size: 11px;
  font-weight: 700;
  color: #c0cde0;
  background: rgba(8, 14, 26, 0.75);
  border: 1px solid rgba(160, 185, 215, 0.22);
  border-radius: 3px;
  padding: 4px 10px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.nl-lang-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.nl-lang-dropdown i {
  color: #d4af37 !important;
  font-size: 10px;
  transition: transform 0.25s ease;
}

.nl-lang-dropdown:hover,
.nl-lang-dropdown-wrapper:hover .nl-lang-dropdown {
  color: #ffffff;
  background: rgba(16, 28, 50, 0.95);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nl-lang-dropdown-wrapper:hover .nl-lang-dropdown i {
  transform: rotate(180deg);
}

.nl-lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 175px;
  background: rgba(6, 11, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.95), 0 0 15px rgba(212, 175, 55, 0.15);
  z-index: 1000;
  padding: 6px 0;
  margin-top: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
  pointer-events: none;
}

.nl-lang-dropdown-wrapper:hover .nl-lang-menu,
.nl-lang-dropdown-wrapper.open .nl-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Footer Language Dropdown - Opens Upwards Smoothly */
.nl-footer-col .nl-lang-menu {
  top: auto !important;
  bottom: 100% !important;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
  min-width: 100% !important;
  transform: translateY(8px) scale(0.98);
}

.nl-footer-col .nl-lang-dropdown-wrapper:hover .nl-lang-menu,
.nl-footer-col .nl-lang-dropdown-wrapper.open .nl-lang-menu {
  transform: translateY(0) scale(1);
}

.nl-lang-active-name {
  font-family: var(--nl-font-title);
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #f7d57f;
  font-size: 11px;
}

.nl-lang-active-name-footer {
  font-family: var(--nl-font-body);
  font-weight: 600;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.nl-lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.nl-lang-item-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nl-lang-text {
  font-family: var(--nl-font-body);
  font-size: 12px;
  font-weight: 500;
  color: #c4d7ec;
  letter-spacing: 0.3px;
}

.nl-lang-item:hover {
  background: rgba(212, 175, 55, 0.15);
  padding-left: 15px;
}

.nl-lang-item:hover .nl-lang-text {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(245, 206, 102, 0.5);
}

.nl-lang-item.active {
  background: rgba(212, 175, 55, 0.22);
  border-left: 3px solid #d4af37;
}

.nl-lang-item.active .nl-lang-text {
  color: #f7d57f;
  font-weight: 700;
}

/* Smooth Language Switcher Transition Overlay */
#nl-lang-transition-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 7, 14, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

#nl-lang-transition-curtain.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nl-lang-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: #d4af37;
  border-radius: 50%;
  animation: nl-spin 0.8s linear infinite;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.nl-lang-switching-text {
  margin-top: 14px;
  font-family: var(--nl-font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f7e6b5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

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

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.nl-hero-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: url('../themes/neolaghaim/background_neolaghaim.png') center top / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
  padding-bottom: 20px;
}

.nl-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.nl-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nl-hero-logo-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

.nl-hero-logo {
  max-width: 480px;
  width: 95%;
  height: auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.3));
  margin-bottom: 22px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nl-hero-logo-link:hover .nl-hero-logo,
.nl-hero-logo:hover {
  transform: scale(1.025);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 35px rgba(212, 175, 55, 0.5));
}

.nl-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 14px;
  text-align: center;
}

.nl-hero-title-part1,
.nl-hero-title-part2 {
  display: block;
  font-family: var(--nl-font-title);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #fff2c4 18%, #f8d775 42%, #d4af37 62%, #a47c20 85%, #63460a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 16px rgba(212, 175, 55, 0.45));
}

.nl-hero-title-part2 {
  font-size: 38px;
  letter-spacing: 5px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .nl-hero-title-part1 {
    font-size: 24px;
    letter-spacing: 2px;
  }
  .nl-hero-title-part2 {
    font-size: 28px;
    letter-spacing: 3px;
  }
}

.nl-hero-subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  max-width: 750px;
  margin: 0 auto 24px;
  text-align: center;
}

.nl-hero-subtitle-part1,
.nl-hero-subtitle-part2 {
  display: block;
  font-family: var(--nl-font-title);
  font-size: 13.5px;
  font-weight: 400;
  color: #cfdcee;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 0 10px rgba(0, 0, 0, 0.85);
  line-height: 1.5;
}

/* Register Button in Hero */
.nl-btn-register-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 6px;
}

.nl-btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 85px;
  padding: 0 16px;
  box-sizing: border-box;
  background: url('../themes/neolaghaim/button_register.png') center center / 100% 100% no-repeat;
  font-family: var(--nl-font-title);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #fff4ca;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95);
  transition: all 0.25s ease;
  position: relative;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
}

.nl-btn-register:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 6px 15px rgba(212, 175, 55, 0.5));
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 240, 180, 0.8), 0 1px 3px rgba(0, 0, 0, 0.95);
}

/* ==========================================================================
   3. ORNATE NAVIGATION BAR
   ========================================================================== */
.nl-navbar-container {
  width: 100%;
  max-width: 1240px;
  margin: -45px auto 5px;
  padding: 0 16px;
  position: relative;
  z-index: 50;
  border: none !important;
}

.nl-navbar {
  width: 100%;
  height: 150px;
  background: url('../themes/neolaghaim/menu_background.png') center center / 100% 100% no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.9));
  position: relative;
  border: none !important;
}

/* Gold horizontal line extending from left edge to navbar (tebal di ujung layar luar -> tipis ke arah navigasi) */
.nl-navbar::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 48%;
  transform: translateY(-50%);
  width: calc((100vw - 1240px) / 2 + 30px);
  min-width: 180px;
  height: 1.5px;
  background: linear-gradient(90deg,
      rgba(245, 206, 102, 0.95) 0%,
      rgba(212, 175, 55, 0.65) 35%,
      rgba(160, 110, 20, 0.25) 70%,
      rgba(140, 95, 15, 0) 100%);
  pointer-events: none;
}

/* Gold horizontal line extending from right edge to navbar (tebal di ujung layar luar -> tipis ke arah navigasi) */
.nl-navbar::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 48%;
  transform: translateY(-50%);
  width: calc((100vw - 1240px) / 2 + 30px);
  min-width: 180px;
  height: 1.5px;
  background: linear-gradient(270deg,
      rgba(245, 206, 102, 0.95) 0%,
      rgba(212, 175, 55, 0.65) 35%,
      rgba(160, 110, 20, 0.25) 70%,
      rgba(140, 95, 15, 0) 100%);
  pointer-events: none;
}

.nl-nav-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.nl-nav-item {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nl-font-title);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #dbe5f2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95);
  padding: 8px 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: none !important;
  text-decoration: none;
  cursor: pointer;
}

.nl-nav-item:hover,
.nl-nav-item.active {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(245, 206, 102, 0.95), 0 1px 3px rgba(0, 0, 0, 0.95);
  transform: translateY(-1px);
}

/* Dropdown Menu Container */
.nl-nav-dropdown {
  position: absolute;
  top: calc(100% - 38px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 210px;
  background: radial-gradient(circle at 50% 0%, rgba(28, 18, 10, 0.96) 0%, rgba(5, 8, 16, 0.98) 85%), #050810;
  border: 1px solid rgba(205, 167, 88, 0.6);
  border-radius: 6px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.95), 0 0 15px rgba(205, 167, 88, 0.25);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  backdrop-filter: blur(12px);
  list-style: none;
  margin: 0;
  text-align: left;
}

.nl-nav-wrapper:hover > .nl-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown Item */
.nl-nav-dropdown-item {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left !important;
}

.nl-nav-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 9px 16px;
  font-family: var(--nl-font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #cfdcee;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
  white-space: nowrap;
  text-align: left !important;
}

.nl-nav-dropdown-link span {
  flex: 1;
  text-align: left !important;
}

.nl-nav-dropdown-link i.las:not(.la-angle-right) {
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.nl-nav-dropdown-link:hover,
.nl-nav-dropdown-item:hover > .nl-nav-dropdown-link {
  color: #ffd166;
  background: linear-gradient(90deg, rgba(205, 167, 88, 0.2) 0%, transparent 100%);
  border-left-color: #ffd166;
  text-shadow: 0 0 8px rgba(255, 209, 102, 0.5);
  padding-left: 20px;
}

/* Sub-Dropdown (Races under Character) */
.nl-nav-subdropdown {
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 185px;
  background: radial-gradient(circle at 50% 0%, rgba(28, 18, 10, 0.96) 0%, rgba(5, 8, 16, 0.98) 85%), #050810;
  border: 1px solid rgba(205, 167, 88, 0.6);
  border-radius: 6px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.95), 0 0 15px rgba(205, 167, 88, 0.25);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000;
  backdrop-filter: blur(12px);
  list-style: none;
  margin: 0;
  text-align: left !important;
}

.nl-nav-subdropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left !important;
}

.nl-nav-subdropdown .nl-nav-dropdown-link {
  text-align: left !important;
  justify-content: flex-start !important;
}

.nl-nav-dropdown-item:hover > .nl-nav-subdropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(4px);
}

/* ==========================================================================
   4. MAIN 3-COLUMN LAYOUT
   ========================================================================== */
.nl-main-container {
  max-width: 1240px;
  margin: 0 auto 50px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 16px;
  align-items: start;
}

.nl-main-container.nl-subpage-container {
  grid-template-columns: 240px 1fr !important;
}

.nl-subpage-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 1024px) {
  .nl-main-container,
  .nl-main-container.nl-subpage-container {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   5. ORNATE WOOD FRAME CARD SYSTEM (Left & Right Columns)
   ========================================================================== */
.nl-card {
  background: radial-gradient(circle at 50% 0%, rgba(28, 18, 10, 0.4) 0%, rgba(4, 7, 14, 0.98) 75%), #04070e;
  border: 16px solid transparent !important;
  border-image-source: url('../themes/neolaghaim/box_frame_vintage.png?v=5.0') !important;
  border-image-slice: 100 100 100 100 fill !important;
  border-image-width: 20px 20px 20px 20px !important;
  border-image-outset: 0 !important;
  border-image-repeat: stretch !important;
  position: relative;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.95);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.95));
}

/* Card Header */
.nl-card-header {
  padding: 2px 2px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-bottom: none;
  margin: -6px 0 6px;
}

.nl-card-title {
  font-family: var(--nl-font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #eed695;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  text-align: center;
}

.nl-card-viewall {
  font-family: var(--nl-font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7b8fa7;
  transition: all 0.2s;
}

.nl-card-viewall:hover {
  color: #d4af37;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

.nl-card-body {
  padding: 2px 4px;
}

/* ==========================================================================
   6. LEFT COLUMN COMPONENTS
   ========================================================================== */

/* Member Login Form */
.nl-login-form .form-group {
  margin-bottom: 7px;
}

.nl-input-dark {
  width: 100%;
  height: 32px;
  background: #040812;
  border: 1px solid #1e2c42;
  border-radius: 2px;
  padding: 0 10px;
  font-family: var(--nl-font-body);
  font-size: 11.5px;
  color: #cfdcee;
  outline: none;
  transition: all 0.2s ease;
}

.nl-input-dark:focus {
  border-color: #a07a1c;
  box-shadow: 0 0 8px rgba(160, 122, 28, 0.4), inset 0 0 5px rgba(0, 0, 0, 0.8);
}

.nl-input-dark::placeholder {
  color: #4b5d74;
}

.nl-btn-login {
  width: 100%;
  height: 34px;
  background: var(--nl-blue-btn-gradient);
  border: 1px solid #8c6e26;
  border-radius: 2px;
  font-family: var(--nl-font-title);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f7e6b5;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  margin-top: 4px;
}

.nl-btn-login:hover {
  background: var(--nl-blue-btn-hover);
  border-color: #d4af37;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.nl-login-forgot {
  display: block;
  text-align: center;
  font-family: var(--nl-font-body);
  font-size: 10.5px;
  color: #7b8fa7;
  margin-top: 6px;
}

.nl-login-forgot:hover {
  color: #d4af37;
}

/* Quick Action Links List */
.nl-quick-list {
  display: flex;
  flex-direction: column;
}

.nl-quick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 4px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(205, 167, 88, 0.14);
  border-radius: 0;
  transition: all 0.2s ease;
  box-shadow: none;
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}

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

.nl-quick-item:hover {
  background: transparent !important;
  transform: translateX(3px);
}

.nl-quick-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
  transition: transform 0.2s ease;
}

.nl-quick-item:hover .nl-quick-icon {
  transform: scale(1.06);
}

.nl-quick-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.nl-quick-title {
  font-family: var(--nl-font-title);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffd166;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  transition: color 0.2s ease;
}

.nl-quick-item:hover .nl-quick-title {
  color: #ffe082;
  text-shadow: 0 0 6px rgba(255, 209, 102, 0.5);
}

.nl-quick-sub {
  font-size: 10px;
  font-weight: 400;
  color: #8fa5c2;
  margin-top: 1px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  transition: color 0.2s ease;
}

.nl-quick-item:hover .nl-quick-sub {
  color: #cbd5e1;
}

/* Follow Us */
.nl-follow-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 0 2px;
}

.nl-social-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.nl-social-circle.fb {
  background: #1877f2;
}

.nl-social-circle.dc {
  background: #5865f2;
}

.nl-social-circle.yt {
  background: #ff0000;
}

.nl-social-circle.in {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.nl-social-circle.tt {
  background: #000000;
  border: 1px solid #333333;
}

.nl-social-circle.tw {
  background: #0f1419;
  border: 1px solid #333333;
}

.nl-social-circle.tg {
  background: #229ed9;
}

.nl-social-circle.wa {
  background: #25d366;
}

.nl-social-circle:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* ==========================================================================
   7. CENTER COLUMN COMPONENTS (Border-free Clean Style)
   ========================================================================== */

/* Center Column Cards & Containers - No Outer Border */
.nl-col-center {
  position: relative;
  padding: 0 10px;
}

/* Left vertical divider between Left Column & Center Column below banner */
.nl-col-center::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 250px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg,
      rgba(180, 200, 225, 0) 0%,
      rgba(180, 200, 225, 0.12) 12%,
      rgba(205, 220, 240, 0.35) 50%,
      rgba(180, 200, 225, 0.12) 88%,
      rgba(180, 200, 225, 0) 100%);
  pointer-events: none;
}

/* Right vertical divider between Center Column & Right Column below banner */
.nl-col-center::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 250px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg,
      rgba(180, 200, 225, 0) 0%,
      rgba(180, 200, 225, 0.12) 12%,
      rgba(205, 220, 240, 0.35) 50%,
      rgba(180, 200, 225, 0.12) 88%,
      rgba(180, 200, 225, 0) 100%);
  pointer-events: none;
}

@media (max-width: 1024px) {

  .nl-col-center::before,
  .nl-col-center::after {
    display: none;
  }
}

.nl-col-center .nl-card {
  border: none !important;
  border-image: none !important;
  box-shadow: none !important;
  background: transparent !important;
  margin-bottom: 24px;
  filter: none !important;
  position: relative;
}

/* Horizontal divider line between center sections (Latest News, Screenshot Gallery) */
.nl-news-card::after,
.nl-gallery-section::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(180, 200, 225, 0) 0%,
      rgba(205, 220, 240, 0.25) 50%,
      rgba(180, 200, 225, 0) 100%);
  pointer-events: none;
}

.nl-col-center .nl-card-header {
  border-bottom: none !important;
  background: transparent !important;
  padding: 4px 0 10px;
  margin: 0 0 8px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100%;
}

.nl-col-center .nl-card-title {
  justify-content: flex-start !important;
  text-align: left !important;
  font-family: var(--nl-font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ebe6df;
  margin: 0;
}

.nl-col-center .nl-card-viewall {
  margin-left: auto !important;
  font-family: var(--nl-font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8c9eb5;
  transition: all 0.2s ease;
}

.nl-col-center .nl-card-viewall:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.nl-col-center .nl-card-body {
  padding: 0;
}

/* 25th Anniversary Big Event Banner - Wood Frame (box_frame_wood.png) */
.nl-event-banner {
  background: radial-gradient(circle at 75% 30%, rgba(200, 70, 0, 0.45) 0%, transparent 65%),
    linear-gradient(135deg, #0d162a 0%, #151010 40%, #2b1104 70%, #0a0d16 100%);
  border: 10px solid transparent !important;
  border-image-source: url('../themes/neolaghaim/box_frame_wood.png') !important;
  border-image-slice: 50 50 50 50 fill !important;
  border-image-width: 12px 10px 12px 10px !important;
  border-image-outset: 0 !important;
  border-image-repeat: stretch !important;
  border-radius: 2px;
  padding: 16px 20px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.85);
}

.nl-event-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../themes/neolaghaim/background_neolaghaim.png') right center / cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.nl-event-banner-inner {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.nl-event-left {
  flex: 1.5;
  min-width: 260px;
  position: relative;
  padding-right: 20px;
}

/* Vertical divider between left and right content inside banner (tipis -> tebal -> tipis silver) */
.nl-event-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background: linear-gradient(180deg,
      rgba(180, 200, 225, 0) 0%,
      rgba(180, 200, 225, 0.12) 15%,
      rgba(205, 220, 240, 0.4) 50%,
      rgba(180, 200, 225, 0.12) 85%,
      rgba(180, 200, 225, 0) 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .nl-event-left::after {
    display: none;
  }
}

.nl-event-badge-gold {
  font-family: var(--nl-font-title);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f7d57f;
  margin-bottom: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.nl-event-big-title {
  font-family: var(--nl-font-title);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.15;
  background: var(--nl-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
  margin-bottom: 6px;
}

.nl-event-tagline {
  font-family: var(--nl-font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #eed594;
  margin-bottom: 12px;
}

.nl-event-btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  background: var(--nl-blue-btn-gradient);
  border: 1px solid #a8832a;
  border-radius: 2px;
  font-family: var(--nl-font-title);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.nl-event-btn-detail:hover {
  background: var(--nl-blue-btn-hover);
  border-color: #f5ce66;
  box-shadow: 0 0 10px rgba(245, 206, 102, 0.5);
}

.nl-event-right {
  text-align: right;
  min-width: 200px;
}

.nl-event-dates {
  font-family: var(--nl-font-title);
  font-size: 12px;
  font-weight: 800;
  color: #eed594;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.nl-event-servers {
  font-family: var(--nl-font-title);
  font-size: 10.5px;
  font-weight: 700;
  color: #f5ce66;
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Latest News Card & Header */
.nl-news-card .nl-card-header {
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid transparent !important;
  border-image: linear-gradient(90deg,
      rgba(180, 200, 225, 0) 0%,
      rgba(205, 220, 240, 0.35) 50%,
      rgba(180, 200, 225, 0) 100%) 1 !important;
}

.nl-news-card .nl-card-title {
  font-family: var(--nl-font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ebe6df;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.nl-news-card .nl-card-viewall {
  font-family: var(--nl-font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8c9eb5;
  margin-left: auto;
  transition: all 0.2s ease;
}

.nl-news-card .nl-card-viewall:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

/* Latest News List */
.nl-news-list {
  display: flex;
  flex-direction: column;
}

.nl-news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg,
      rgba(180, 200, 225, 0) 0%,
      rgba(205, 220, 240, 0.22) 50%,
      rgba(180, 200, 225, 0) 100%) 1;
  gap: 12px;
  transition: background 0.15s ease;
}

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

.nl-news-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.nl-news-left {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.nl-badge {
  display: inline-block;
  padding: 2px 8px;
  font-family: var(--nl-font-title);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 2px;
  flex-shrink: 0;
  color: #ffffff;
}

.nl-badge.notice {
  background: #62130e;
  border: 1px solid #851c14;
}

.nl-badge.event {
  background: #2b1f55;
  border: 1px solid #43327d;
}

.nl-badge.update {
  background: #171d46;
  border: 1px solid #28316e;
}

.nl-badge.winner {
  background: #54270b;
  border: 1px solid #753912;
}

.nl-news-title {
  font-size: 12.5px;
  color: #d8e2ee;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nl-news-item:hover .nl-news-title {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.nl-news-date {
  font-family: var(--nl-font-num);
  font-size: 12px;
  font-weight: 600;
  color: #e59828;
  flex-shrink: 0;
}

/* Screenshot Gallery */
.nl-gallery-section .nl-card-header {
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 1px solid transparent !important;
  border-image: linear-gradient(90deg,
      rgba(180, 200, 225, 0) 0%,
      rgba(205, 220, 240, 0.35) 50%,
      rgba(180, 200, 225, 0) 100%) 1 !important;
}

.nl-gallery-section .nl-card-title {
  font-family: var(--nl-font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ebe6df;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.nl-gallery-section .nl-card-viewall {
  font-family: var(--nl-font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8c9eb5;
  margin-left: auto;
  transition: all 0.2s ease;
}

.nl-gallery-section .nl-card-viewall:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.nl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 600px) {
  .nl-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.nl-gallery-card {
  display: flex;
  flex-direction: column;
  background: rgba(6, 12, 22, 0.95);
  border: 1px solid rgba(160, 185, 215, 0.22) !important;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.nl-gallery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 225, 255, 0.5) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8), 0 0 10px rgba(160, 185, 215, 0.25);
}

.nl-gallery-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #000000;
}

.nl-gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nl-gallery-card:hover .nl-gallery-img-wrap img {
  transform: scale(1.08);
}

.nl-gallery-caption {
  padding: 8px 6px 10px;
  text-align: center;
  background: transparent;
}

.nl-gallery-title {
  font-family: var(--nl-font-body);
  font-size: 12px;
  font-weight: 500;
  color: #ebe6df;
  line-height: 1.3;
}

.nl-gallery-sub {
  font-family: var(--nl-font-body);
  font-size: 11px;
  color: #e59828;
  font-weight: 700;
  margin-top: 3px;
}

/* Game Features Grid */
.nl-features-section .nl-card-header {
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent !important;
  border-image: linear-gradient(90deg,
      rgba(180, 200, 225, 0) 0%,
      rgba(205, 220, 240, 0.35) 50%,
      rgba(180, 200, 225, 0) 100%) 1 !important;
}

.nl-features-section .nl-card-title {
  font-family: var(--nl-font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ebe6df;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.nl-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
}

@media (max-width: 600px) {
  .nl-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .nl-feature-col:not(:first-child)::before {
    display: none;
  }
}

.nl-feature-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 12px;
  border: none !important;
  background: transparent;
  transition: all 0.2s ease;
}

/* Vertical Divider between feature columns (fading tipis at top/bottom, tebal in middle) */
.nl-feature-col:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg,
      rgba(180, 200, 225, 0) 0%,
      rgba(180, 200, 225, 0.12) 15%,
      rgba(205, 220, 240, 0.35) 50%,
      rgba(180, 200, 225, 0.12) 85%,
      rgba(180, 200, 225, 0) 100%);
  pointer-events: none;
}

.nl-feature-col:hover {
  background: rgba(255, 255, 255, 0.02);
}

.nl-feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
  transition: transform 0.2s ease;
}

.nl-feature-col:hover .nl-feature-icon {
  transform: scale(1.06);
}

.nl-feature-title {
  font-family: var(--nl-font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e6c878;
  margin-bottom: 4px;
}

.nl-feature-desc {
  font-size: 11px;
  line-height: 1.35;
  color: #8c9eb5;
  max-width: 155px;
  margin: 0 auto;
}

/* ==========================================================================
   8. RIGHT COLUMN COMPONENTS
   ========================================================================== */

/* Event Promotion Card */
.nl-promo-card {
  text-align: center;
}

.nl-promo-container {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -4px;
}

.nl-promo-bg-wrap {
  position: relative;
  width: 100%;
  height: 125px;
  overflow: hidden;
  border-radius: 2px;
}

.nl-promo-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.85);
  transition: transform 0.3s ease;
}

.nl-promo-card:hover .nl-promo-bg {
  transform: scale(1.05);
}

.nl-promo-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(6, 11, 20, 0.05) 0%, rgba(6, 11, 20, 0.65) 55%, rgba(4, 7, 14, 0.98) 100%);
  pointer-events: none;
}

.nl-promo-content {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding: 0 4px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.nl-promo-title {
  font-family: var(--nl-font-title);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #eed695;
  line-height: 1.3;
  margin-bottom: 3px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 0 10px rgba(0, 0, 0, 0.85);
}

.nl-promo-sub {
  font-size: 9.5px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.nl-btn-promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 22px;
  background: var(--nl-blue-btn-gradient);
  border: 1px solid #8c6e26;
  border-radius: 2px;
  font-family: var(--nl-font-title);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f7e6b5;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  margin: 0 auto;
}

.nl-btn-promo:hover {
  background: var(--nl-blue-btn-hover);
  border-color: #d4af37;
  color: #ffffff;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Ranking Card */
.nl-ranking-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.nl-ranking-tab {
  flex: 1;
  text-align: center;
  padding: 5px 2px;
  font-family: var(--nl-font-title);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #7b8fa7;
  background: #060b14;
  border: 1px solid #1c283c;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}

.nl-ranking-tab.active {
  color: #ffffff;
  background: #11223e;
  border-color: #3b5982;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.nl-rank-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.nl-rank-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 4px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nl-rank-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nl-rank-badge {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nl-font-num);
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.nl-rank-badge.rank-1 {
  background: #b52a1c;
  box-shadow: 0 0 4px rgba(181, 42, 28, 0.6);
}

.nl-rank-badge.rank-2 {
  background: #b86016;
  box-shadow: 0 0 4px rgba(184, 96, 22, 0.6);
}

.nl-rank-badge.rank-3 {
  background: #7a501a;
  box-shadow: 0 0 4px rgba(122, 80, 26, 0.6);
}

.nl-rank-badge.rank-normal {
  background: transparent;
  color: #677b94;
  font-size: 11px;
}

.nl-rank-name {
  font-size: 11px;
  font-weight: 500;
  color: #cfdcee;
}

.nl-rank-score {
  font-family: var(--nl-font-num);
  font-size: 11px;
  font-weight: 700;
  color: #e2be58;
}

.nl-btn-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 26px;
  background: rgba(8, 14, 25, 0.9);
  border: 1px solid #362910;
  border-radius: 2px;
  font-family: var(--nl-font-title);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8496ab;
  transition: all 0.2s ease;
  margin-top: 6px;
}

.nl-btn-card-action:hover {
  border-color: #a8832a;
  color: #f7e6b5;
  background: rgba(16, 28, 48, 0.9);
}

/* Game Tips */
.nl-tips-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.nl-tip-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  gap: 8px;
}

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

.nl-tip-title {
  font-size: 11px;
  color: #cfdcee;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nl-tip-item:hover .nl-tip-title {
  color: #f7d57f;
}

.nl-tip-date {
  font-family: var(--nl-font-num);
  font-size: 10px;
  color: #677b94;
  flex-shrink: 0;
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.nl-footer {
  border-top: 1px solid rgba(160, 185, 215, 0.15);
  padding: 40px 0 20px;
  color: #8c9eb5;
  position: relative;
}

.nl-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.nl-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.5fr 0.95fr 1.15fr;
  gap: 0;
  margin-bottom: 32px;
}

.nl-footer-col {
  position: relative;
  padding: 0 28px;
}

.nl-footer-col:first-child {
  padding-left: 0;
  padding-right: 28px;
}

.nl-footer-col:last-child {
  padding-right: 0;
  padding-left: 28px;
}

/* Vertical Gradient Dividers between footer columns (fading at top and bottom, visible in middle with SILVER metallic tone) */
.nl-footer-col:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background: linear-gradient(180deg,
      rgba(180, 200, 225, 0) 0%,
      rgba(180, 200, 225, 0.12) 15%,
      rgba(205, 220, 240, 0.35) 50%,
      rgba(180, 200, 225, 0.12) 85%,
      rgba(180, 200, 225, 0) 100%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .nl-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .nl-footer-col {
    padding: 0 !important;
  }

  .nl-footer-col:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .nl-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.nl-footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 14px;
}

.nl-footer-desc {
  font-size: 12px;
  line-height: 1.6;
  color: #798ba3;
  max-width: 320px;
}

.nl-footer-heading {
  font-family: var(--nl-font-title);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: #e59828;
  margin-bottom: 14px;
}

.nl-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.nl-footer-links li a {
  font-size: 11.5px;
  color: #798ba3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.nl-footer-links li a::before {
  content: '>';
  color: #e59828;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.nl-footer-links li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.nl-footer-lang-box {
  background: rgba(6, 12, 22, 0.95);
  border: 1px solid rgba(160, 185, 215, 0.22);
  border-radius: 4px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cfdcee;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nl-footer-lang-box i {
  color: #d4af37 !important;
  font-size: 10px;
  transition: transform 0.25s ease;
}

.nl-footer-lang-box:hover,
.nl-footer-col .nl-lang-dropdown-wrapper:hover .nl-footer-lang-box,
.nl-footer-col .nl-lang-dropdown-wrapper.open .nl-footer-lang-box {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(16, 28, 50, 0.95);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.nl-footer-col .nl-lang-dropdown-wrapper:hover .nl-footer-lang-box i,
.nl-footer-col .nl-lang-dropdown-wrapper.open .nl-footer-lang-box i {
  transform: rotate(180deg);
}

.nl-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11.5px;
  color: #55667a;
}

.nl-footer-powered {
  font-family: var(--nl-font-title);
  font-weight: 700;
  letter-spacing: 1px;
  color: #7b8fa7;
}

.nl-footer-powered span {
  color: #cfdcee;
}

/* ==========================================================================
   12. UNIFIED SIDEBAR & PRIVACY POLICY (Matching Mockup)
   ========================================================================== */
.nl-sidebar-unified-card {
  padding: 16px 14px 20px 14px !important;
  margin-bottom: 20px;
}

.nl-sidebar-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
}

.nl-sidebar-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.nl-sidebar-divider-diamond {
  width: 5px;
  height: 5px;
  background: #d4af37;
  transform: rotate(45deg);
  box-shadow: 0 0 6px rgba(245, 206, 102, 0.8);
}

/* Privacy Policy Unified Card with Vintage Box Frame (Outward Shadow) */
.nl-privacy-main-card {
  background: radial-gradient(circle at 50% 0%, rgba(28, 18, 10, 0.4) 0%, rgba(4, 7, 14, 0.98) 75%), #04070e;
  border: 16px solid transparent !important;
  border-image-source: url('../themes/neolaghaim/box_frame_vintage.png?v=5.0') !important;
  border-image-slice: 100 100 100 100 fill !important;
  border-image-width: 20px 20px 20px 20px !important;
  border-image-outset: 0 !important;
  border-image-repeat: stretch !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.95);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.95));
  padding: 0 !important;
  margin-bottom: 24px;
  overflow: hidden;
}

/* Top Banner Header inside Privacy Policy Card (Seamless Full Width, No Extra Frame, No Padding) */
.nl-privacy-banner-box {
  position: relative;
  width: 100%;
  min-height: 220px;
  background: radial-gradient(circle at 50% 50%, rgba(10, 16, 28, 0.35) 0%, rgba(4, 7, 14, 0.85) 100%),
              url('../themes/neolaghaim/privacy_banner_bg.jpg') center center / cover no-repeat;
  border: none !important;
  border-image: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9);
}

.nl-privacy-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(5, 10, 18, 0.35) 0%, rgba(3, 6, 12, 0.75) 100%);
  pointer-events: none;
}

.nl-privacy-banner-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 24px 16px;
}

.nl-privacy-banner-title {
  font-family: var(--nl-font-title);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #eed594;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 25px rgba(238, 213, 148, 0.45);
  margin-bottom: 6px;
}

.nl-privacy-banner-subtitle {
  font-family: var(--nl-font-title);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #dfba6c;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  margin-bottom: 12px;
}

.nl-privacy-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
}

.nl-flourish-line {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.nl-flourish-diamond {
  width: 6px;
  height: 6px;
  background: #d4af37;
  transform: rotate(45deg);
  box-shadow: 0 0 8px #f5ce66;
}

/* Privacy Policy Content Area */
.nl-privacy-content-area {
  padding: 24px 28px 36px 28px;
}

.nl-privacy-date {
  font-size: 13.5px;
  font-weight: 600;
  color: #d1d9e6;
  margin-bottom: 16px;
}

.nl-privacy-intro {
  color: #a9bacf;
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.nl-privacy-section {
  margin-bottom: 28px;
}

.nl-privacy-section:last-child {
  margin-bottom: 8px;
}

.nl-privacy-sec-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nl-font-title);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #f0cf7e;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  margin-bottom: 10px;
}

.nl-gold-num {
  color: #f0cf7e;
  font-size: 16px;
  line-height: 1;
  text-shadow: 0 0 8px rgba(240, 207, 126, 0.6);
}

.nl-privacy-sec-lead {
  font-size: 13px;
  color: #b8c8dc;
  margin-bottom: 8px;
}

.nl-privacy-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}

.nl-privacy-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 12.5px;
  color: #9cb0c7;
  line-height: 1.65;
}

.nl-bullet-arrow {
  color: #d4af37;
  font-weight: 700;
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}

.nl-privacy-bullets li strong {
  color: #dbe5f2;
}

/* ==========================================================================
   14. TERMS OF SERVICE & STRICT FAIR PLAY RULES PAGE
   ========================================================================== */
.nl-terms-main-card {
  background: radial-gradient(circle at 50% 0%, rgba(35, 20, 10, 0.45) 0%, rgba(4, 7, 14, 0.98) 75%), #04070e;
  border: 16px solid transparent !important;
  border-image-source: url('../themes/neolaghaim/box_frame_vintage.png?v=5.0') !important;
  border-image-slice: 100 100 100 100 fill !important;
  border-image-width: 20px 20px 20px 20px !important;
  border-image-outset: 0 !important;
  border-image-repeat: stretch !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.95);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.95));
  padding: 0 !important;
  margin-bottom: 24px;
  overflow: hidden;
}

.nl-terms-banner-box {
  position: relative;
  width: 100%;
  min-height: 240px;
  background: radial-gradient(circle at 50% 50%, rgba(10, 16, 28, 0.3) 0%, rgba(4, 7, 14, 0.85) 100%),
              url('../themes/neolaghaim/terms_banner_bg.jpg') center center / cover no-repeat;
  border: none !important;
  border-image: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9);
}

.nl-terms-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(5, 10, 18, 0.3) 0%, rgba(3, 6, 12, 0.75) 100%);
  pointer-events: none;
}

.nl-terms-banner-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 28px 16px;
}

.nl-terms-banner-title {
  font-family: var(--nl-font-title);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #eed594;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 25px rgba(238, 213, 148, 0.45);
  margin-bottom: 6px;
}

.nl-terms-banner-subtitle {
  font-family: var(--nl-font-title);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #dfba6c;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
  margin-bottom: 12px;
}

.nl-terms-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
}

.nl-terms-content-area {
  padding: 24px 28px 36px 28px;
}

.nl-terms-date {
  font-size: 13.5px;
  font-weight: 600;
  color: #d1d9e6;
  margin-bottom: 16px;
}

.nl-terms-intro {
  color: #a9bacf;
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.nl-terms-alert-box {
  background: linear-gradient(135deg, rgba(180, 40, 20, 0.15) 0%, rgba(40, 10, 10, 0.4) 100%);
  border: 1px solid rgba(220, 53, 69, 0.4);
  border-left: 4px solid #dc3545;
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 26px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nl-terms-alert-box i {
  color: #ff4d4d;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.nl-terms-alert-text {
  font-size: 13px;
  color: #f1b3b3;
  line-height: 1.6;
}

.nl-terms-alert-text strong {
  color: #ffffff;
}

.nl-terms-section {
  margin-bottom: 28px;
}

.nl-terms-section:last-child {
  margin-bottom: 8px;
}

.nl-terms-sec-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nl-font-title);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #f0cf7e;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  margin-bottom: 10px;
}

.nl-terms-sec-lead {
  font-size: 13px;
  color: #b8c8dc;
  margin-bottom: 8px;
}

.nl-terms-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}

.nl-terms-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 12.5px;
  color: #9cb0c7;
  line-height: 1.65;
}

.nl-terms-bullets li strong {
  color: #dbe5f2;
}

.nl-terms-penalty-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-right: 6px;
}

.nl-terms-penalty-badge.warning {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.4);
}

.nl-terms-penalty-badge.suspension {
  background: rgba(253, 126, 20, 0.2);
  color: #fd7e14;
  border: 1px solid rgba(253, 126, 20, 0.4);
}

.nl-terms-penalty-badge.perma-ban {
  background: rgba(220, 53, 69, 0.25);
  color: #ff4d4d;
  border: 1px solid rgba(220, 53, 69, 0.5);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE SYSTEM (NEO LAGHAIM THEME)
   Breakpoints: 1024px (Tablet Landscape), 900px (Tablet Portrait), 600px (Mobile)
   ========================================================================== */

/* --- Tablet / Medium Screen (< 1024px) --- */
@media (max-width: 1024px) {
  .nl-main-container,
  .nl-subpage-container {
    padding: 12px 14px;
    gap: 16px;
  }

  .nl-col-left {
    width: 250px;
  }

  .nl-col-main,
  .nl-subpage-content {
    width: calc(100% - 266px);
  }
}

/* --- Mobile & Tablet Portrait (< 900px) --- */
@media (max-width: 900px) {
  .nl-main-container,
  .nl-subpage-container {
    flex-direction: column !important;
    display: flex !important;
    padding: 10px 12px;
  }

  .nl-col-left,
  .nl-col-main,
  .nl-subpage-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  .nl-topbar-inner {
    padding: 0 10px;
    gap: 8px;
  }

  .nl-topbar-left {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none;
    gap: 14px;
  }

  .nl-topbar-left::-webkit-scrollbar {
    display: none;
  }

  .nl-topbar-link {
    font-size: 11px;
    gap: 5px;
  }

  .nl-topbar-right {
    gap: 6px;
  }

  .nl-btn-top-auth {
    font-size: 10px;
    padding: 4px 8px;
    letter-spacing: 0.5px;
  }

  .nl-lang-dropdown {
    padding: 3px 8px;
  }

  .nl-lang-active-name {
    font-size: 10px;
  }
}

/* --- Mobile Small Devices (< 600px) --- */
@media (max-width: 600px) {
  body.neolaghaim-body {
    font-size: 12.5px;
  }

  /* Cards & Layout */
  .nl-card {
    padding: 14px 12px !important;
    margin-bottom: 14px !important;
    border-radius: 4px !important;
  }

  .nl-card-title {
    font-size: 14px !important;
  }

  /* Tables with Smooth Momentum Touch Scrolling */
  div[style*="overflow-x: auto"],
  .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin-bottom: 10px;
  }

  table {
    font-size: 11.5px !important;
  }

  th, td {
    padding: 8px 6px !important;
  }

  /* Ranking & Subpage Headers */
  h1, .nl-terms-banner-title {
    font-size: 20px !important;
    letter-spacing: 1.5px !important;
  }

  p {
    font-size: 12px !important;
  }

  /* Form Elements - Touch Friendly */
  .nl-input-dark,
  input[type="text"],
  input[type="password"],
  input[type="email"],
  select {
    font-size: 14px !important;
    min-height: 40px !important;
    padding: 8px 12px !important;
  }

  button,
  .nl-btn-login,
  .nl-btn-tab {
    min-height: 38px !important;
    font-size: 11px !important;
    padding: 7px 12px !important;
  }

  /* Grid adaptations */
  .nl-shop-grid,
  .nl-donate-grid,
  .nl-character-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Terms, Privacy, Rules Banner */
  .nl-terms-banner,
  .nl-privacy-banner,
  .nl-rules-banner {
    min-height: 120px !important;
    padding: 16px 10px !important;
  }

  .nl-terms-content-area {
    padding: 14px 12px !important;
  }
}

/* Neo Laghaim Universal Action Buttons */
.nl-btn-primary {
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%) !important;
  color: #050b14 !important;
  border: 1px solid #7dd3fc !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none !important;
}

.nl-btn-primary:hover {
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 100%) !important;
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.65);
  transform: translateY(-1px);
  color: #000000 !important;
}

.nl-btn-gold {
  background: linear-gradient(180deg, #ffd166 0%, #d4a338 100%) !important;
  color: #1a0f00 !important;
  border: 1px solid #ffe08a !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(255, 209, 102, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none !important;
}

.nl-btn-gold:hover {
  background: linear-gradient(180deg, #ffe08a 0%, #ffd166 100%) !important;
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.55);
  transform: translateY(-1px);
  color: #000000 !important;
}

/* ==========================================================================
   MOBILE NAVIGATION & RESPONSIVE PERFECTION
   CRITICAL: Desktop version (>= 992px) is 100% untouched and undisturbed.
   All mobile overrides are strictly scoped to max-width: 991px.
   ========================================================================== */

/* Desktop Default: Hide mobile elements completely on desktop */
.nl-mobile-nav-bar,
.nl-mobile-drawer,
.nl-mobile-backdrop {
  display: none !important;
}

@media (max-width: 991px) {
  /* 1. Hide Topbar Support, Shop, Download & FAQ on Mobile */
  .nl-topbar-left {
    display: none !important;
  }
  .nl-topbar-right .nl-btn-top-auth {
    display: none !important;
  }
  .nl-topbar {
    height: 38px !important;
  }
  .nl-topbar-inner {
    justify-content: flex-end !important;
    padding: 0 12px !important;
  }

  /* 2. Hide Register / Daftar Button above Main Navigation on Mobile */
  .nl-btn-register-wrapper {
    display: none !important;
  }

  /* 3. Hero Section adaptations on Mobile */
  .nl-hero-section {
    min-height: auto !important;
    padding: 20px 14px 28px !important;
    background-size: cover !important;
    background-position: center top !important;
  }
  .nl-hero-logo {
    max-width: 190px !important;
    height: auto !important;
  }
  .nl-hero-title-part1,
  .nl-hero-title-part2 {
    font-size: 18px !important;
    letter-spacing: 1px !important;
    line-height: 1.3 !important;
  }
  .nl-hero-subtitle {
    margin: 6px auto 10px !important;
    max-width: 100% !important;
  }
  .nl-hero-subtitle-part1,
  .nl-hero-subtitle-part2 {
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
    line-height: 1.4 !important;
  }

  /* 4. Hide Desktop Navbar and Gold Extension Lines on Mobile */
  .nl-navbar {
    display: none !important;
  }
  .nl-navbar::before,
  .nl-navbar::after {
    display: none !important;
  }
  .nl-navbar-container {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  /* 5. Mobile Navigation Bar (Sleek, Ornate, Touch-Friendly) */
  .nl-mobile-nav-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 52px;
    background: linear-gradient(180deg, #121a2d 0%, #080d19 100%);
    border-top: 1px solid rgba(205, 167, 88, 0.45);
    border-bottom: 1px solid rgba(205, 167, 88, 0.45);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
    padding: 0 12px;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .nl-mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(180deg, #ffd166 0%, #cda758 100%);
    color: #0a0e1a;
    border: 1px solid #ffe08a;
    border-radius: 4px;
    padding: 6px 12px;
    font-family: var(--nl-font-title);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(205, 167, 88, 0.35);
    text-transform: uppercase;
  }

  .nl-mobile-menu-btn i {
    font-size: 15px;
  }

  .nl-mobile-nav-brand img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.9));
  }

  .nl-btn-mobile-auth {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(205, 167, 88, 0.4);
    color: #ffd166;
    border-radius: 4px;
    padding: 5px 10px;
    font-family: var(--nl-font-title);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
  }

  /* 6. Mobile Drawer */
  .nl-mobile-drawer {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 310px;
    max-width: 86vw;
    height: 100vh;
    height: 100dvh;
    background: radial-gradient(circle at 50% 0%, #151e33 0%, #060913 100%);
    border-right: 2px solid #cda758;
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
  }

  .nl-mobile-drawer.active {
    transform: translateX(0);
  }

  .nl-mobile-backdrop {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .nl-mobile-backdrop.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nl-mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(205, 167, 88, 0.3);
    background: rgba(5, 8, 17, 0.85);
  }

  .nl-mobile-drawer-title {
    font-family: var(--nl-font-title);
    font-size: 14px;
    font-weight: 800;
    color: #ffd166;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nl-mobile-drawer-close {
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
  }

  .nl-mobile-drawer-auth {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nl-mobile-guest-links {
    display: flex;
    gap: 8px;
  }
  .nl-mobile-guest-links a {
    flex: 1;
    text-align: center;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 800;
    font-family: var(--nl-font-title);
  }

  .nl-mobile-user-info {
    margin-bottom: 8px;
  }
  .nl-mobile-user-name {
    font-size: 12.5px;
    font-weight: 800;
    color: #ffd166;
    margin-bottom: 3px;
  }
  .nl-mobile-user-balances {
    display: flex;
    gap: 8px;
    font-size: 11px;
  }
  .nl-mobile-user-balances .badge-gp {
    color: #38bdf8;
    font-weight: 700;
  }
  .nl-mobile-user-balances .badge-lp {
    color: #ffd166;
    font-weight: 700;
  }
  .nl-mobile-user-links {
    display: flex;
    gap: 6px;
  }
  .nl-mobile-user-links a {
    flex: 1;
    text-align: center;
    padding: 5px 8px;
    font-size: 10.5px;
    border-radius: 4px;
  }

  /* Drawer Menu Items */
  .nl-mobile-menu-list {
    list-style: none;
    padding: 6px 0;
    margin: 0;
  }

  .nl-mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nl-mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-family: var(--nl-font-title);
    font-size: 12px;
    font-weight: 700;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nl-mobile-menu-link span {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nl-mobile-menu-link i.las:not(.arrow-icon) {
    font-size: 15px;
    color: #cda758;
    width: 18px;
    text-align: center;
  }

  .nl-mobile-menu-link:hover,
  .nl-mobile-menu-link.active {
    background: rgba(205, 167, 88, 0.12);
    color: #ffd166;
  }

  .nl-mobile-menu-link.highlight-gold {
    color: #ffd166;
    background: rgba(205, 167, 88, 0.08);
  }

  .nl-mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    border-left: 2px solid #cda758;
    margin-left: 16px;
  }

  .nl-mobile-submenu.open {
    display: block;
  }

  .nl-mobile-submenu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 11.5px;
    color: #94a3b8;
    text-decoration: none !important;
    font-family: var(--nl-font-body);
  }

  .nl-mobile-submenu li a:hover {
    color: #ffd166;
    background: rgba(255, 255, 255, 0.03);
  }

  /* Drawer Languages */
  .nl-mobile-drawer-lang {
    padding: 14px 16px;
    border-top: 1px solid rgba(205, 167, 88, 0.25);
    margin-top: 10px;
  }
  .nl-mobile-drawer-lang-title {
    font-family: var(--nl-font-title);
    font-size: 10px;
    font-weight: 700;
    color: #cda758;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
  .nl-mobile-lang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .nl-mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 5px 7px;
    font-size: 10.5px;
    color: #cbd5e1;
    text-decoration: none !important;
  }
  .nl-mobile-lang-btn.active {
    border-color: #cda758;
    background: rgba(205, 167, 88, 0.15);
    color: #ffd166;
    font-weight: 700;
  }
  .nl-mobile-lang-btn img {
    width: 15px;
    height: 10px;
    object-fit: cover;
    border-radius: 2px;
  }

  /* 7. Full Mobile Viewport Perfection & Overflow Prevention */
  html, body.neolaghaim-body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  .nl-main-container,
  .nl-subpage-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 10px !important;
    margin: 0 auto 24px !important;
    gap: 16px !important;
  }

  .nl-col-left,
  .nl-col-main,
  .nl-col-right,
  .nl-subpage-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* News List items wrapping on mobile */
  .nl-news-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    padding: 8px 10px !important;
  }
  .nl-news-title {
    flex: 1 1 170px !important;
    white-space: normal !important;
    word-break: break-word !important;
    font-size: 12px !important;
  }
  .nl-news-date {
    font-size: 10px !important;
    color: #8fa0b5 !important;
    margin-left: auto !important;
  }

  /* Features and Gallery Grids */
  .nl-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .nl-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  /* =========================================================================
     PROMOSI EVENT, PERINGKAT, TIPS GAME MOBILE PERFECTION
     ========================================================================= */

  /* 1. Promosi Event (Event Promotion Card) */
  .nl-promo-card {
    width: 100% !important;
  }
  .nl-promo-container {
    width: 100% !important;
  }
  .nl-promo-bg-wrap {
    width: 100% !important;
    height: 150px !important;
  }
  .nl-promo-bg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .nl-promo-content {
    width: 100% !important;
    margin-top: -46px !important;
    padding: 0 12px 10px !important;
  }
  .nl-promo-title {
    font-size: 13.5px !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 4px !important;
  }
  .nl-promo-sub {
    font-size: 11px !important;
    margin-bottom: 10px !important;
  }
  .nl-btn-promo {
    width: 100% !important;
    max-width: 280px !important;
    height: 38px !important;
    min-height: 38px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    padding: 8px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* 2. Peringkat (Rankings Widget) */
  .nl-ranking-card {
    width: 100% !important;
  }
  .nl-ranking-tabs {
    display: flex !important;
    gap: 8px !important;
    width: 100% !important;
    margin-bottom: 10px !important;
  }
  .nl-ranking-tab {
    flex: 1 1 50% !important;
    padding: 9px 8px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .nl-rank-list {
    width: 100% !important;
    gap: 4px !important;
    margin-bottom: 10px !important;
  }
  .nl-rank-item {
    padding: 8px 8px !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }
  .nl-rank-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 !important;
    overflow: hidden !important;
  }
  .nl-rank-badge {
    width: 22px !important;
    height: 22px !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
  }
  .nl-rank-name {
    font-size: 12.5px !important;
    color: #cfdcee !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .nl-rank-score {
    font-size: 12.5px !important;
    color: #e2be58 !important;
    font-weight: 700 !important;
    margin-left: 8px !important;
    flex-shrink: 0 !important;
  }
  .nl-ranking-card .nl-btn-card-action {
    width: 100% !important;
    height: 38px !important;
    min-height: 38px !important;
    font-size: 11.5px !important;
    letter-spacing: 1px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 8px !important;
  }

  /* 3. Tips Game (Game Tip Widget) */
  .nl-tip-card {
    width: 100% !important;
  }
  .nl-tips-list {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    margin-bottom: 10px !important;
  }
  .nl-tip-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 8px !important;
    min-height: 44px !important;
    gap: 10px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-decoration: none !important;
    transition: background 0.2s ease !important;
  }
  .nl-tip-item:active {
    background: rgba(205, 167, 88, 0.1) !important;
  }
  .nl-tip-title {
    font-size: 12.5px !important;
    color: #cfdcee !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    flex: 1 !important;
  }
  .nl-tip-date {
    font-size: 11px !important;
    color: #8fa0b5 !important;
    flex-shrink: 0 !important;
  }
  .nl-tip-card .nl-btn-card-action {
    width: 100% !important;
    height: 38px !important;
    min-height: 38px !important;
    font-size: 11.5px !important;
    letter-spacing: 1px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 8px !important;
  }

  /* Tables & Responsive horizontal swipe containers */
  .table-responsive,
  div[style*="overflow-x: auto"] {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Footer adaptations */
  .nl-footer {
    padding: 30px 14px 20px !important;
  }
  .nl-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .nl-footer-links-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px 12px !important;
  }
  .nl-footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .nl-features-grid {
    grid-template-columns: 1fr !important;
  }
  .nl-footer-links-grid {
    grid-template-columns: 1fr !important;
  }
}