/*
  FONTS & BASIC SETUP
  FONTS & BASIC SETUP
  FONTS & BASIC SETUP
  */
@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');
/* @import url(''); */
/* @import url(''); */
/* @import url(''); */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--dark-bg-2);
  font-family: 'Sarabun', sans-serif;
}

/*
  ROOT VARIABLES & THEME SETTINGS
  ROOT VARIABLES & THEME SETTINGS
  ROOT VARIABLES & THEME SETTINGS
  */
:root {
  /* Primary Colors */
  --primary: #1873fd;
  --primary-dark: #0d63e9;
  --primary-light: #3989ff;
  --secondary: #ff5f40;
  --accent: #00eaff;
  /* Background Colors */
  --dark-bg: #0a0e17;
  --dark-bg-2: #111827;
  --dark-bg-3: #151d2e;
  --dark-panel: #111a29;
  --dark-border: #1c2c45;
  /* Text Colors */
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.6);
  /* UI Effects */
  --glass-bg: rgba(26, 36, 58, 0.9);
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.2);
  --glow-blue: 0 0 15px rgba(24, 115, 253, 0.5);
  /* Set Color */
  --set-color-red-50: #fde0dc;
  --set-color-red-100: #f9bdbb;
  --set-color-red-200: #f69988;
  --set-color-red-300: #f36c60;
  --set-color-red-400: #e84e40;
  --set-color-red-500: #e51c23;
  --set-color-red-600: #dd191d;
  --set-color-green-50: #d0f8ce;
  --set-color-green-100: #a3e9a4;
  --set-color-green-200: #72d572;
  --set-color-green-300: #42bd41;
  --set-color-green-400: #2baf2b;
  --set-color-green-500: #259b24;
  --set-color-green-600: #0a8f08;
  --set-color-green-700: #0a7e07;
  --set-color-green-800: #056f00;
  --set-color-green-900: #0d5302;
  --set-color-yellow-700: #fbc02d;
  --set-color-grey-50: #fafafa;
  --set-color-grey-100: #f5f5f5;
  --set-color-grey-200: #eeeeee;
  --set-color-grey-300: #e0e0e0;
  --set-color-grey-400: #bdbdbd;
  --set-color-grey-500: #9e9e9e;
  --set-color-grey-600: #757575;
  --set-color-grey-700: #616161;
  --set-color-grey-800: #424242;
  --set-color-grey-900: #212121;
  --set-color-grey-1000: #000000;
}
body {
  background-color: var(--dark-bg);
  color: var(--text-white);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  margin: 0;
  padding: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(28, 44, 69, 0.3) 0%, transparent 100%);
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231873fd' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
  opacity: 0.2;
}
body.menu-open, body.sidebar-open {
  overflow: hidden;
}

/*
  TYPOGRAPHY & TEXT STYLES
  TYPOGRAPHY & TEXT STYLES
  TYPOGRAPHY & TEXT STYLES
  */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.75rem;
  /* letter-spacing: 2px; */
}
h2 {
  font-size: 2.25rem;
  /* letter-spacing: 1.5px; */
}
h3 {
  font-size: 1.5rem;
  /* letter-spacing: 1px; */
}
p {
  line-height: 1.6;
  /* margin-bottom: 1rem; */
}

/*
  Font Color
  Font Color
  Font Color
  */
.font-red-200 {
  color: var(--set-color-red-200);
}
.font-red-300 {
  color: var(--set-color-red-300);
}
.font-red-400 {
  color: var(--set-color-red-400);
}
.font-red-500 {
  color: var(--set-color-red-500);
}
.font-green-300 {
  color: var(--set-color-green-300);
}
.font-yellow-700 {
  color: var(--set-color-yellow-700);
}
.font-grey-500 {
  color: var(--set-color-grey-500);
}
.font-grey-600 {
  color: var(--set-color-grey-600);
}

/*
  Font Size
  Font Size
  Font Size
  */
.font-size-1 {
  font-size: 0.6rem;
}
.font-size-2 {
  font-size: 0.8rem;
}
.font-size-3 {
  font-size: 1rem;
}
.font-size-4 {
  font-size: 1.2rem;
}

/*
  Font Weight
  Font Weight
  Font Weight
  */
.font-bold {
  font-weight: bold;
}

/*
  Margin
  Margin
  Margin
  */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-5 { margin-left: 3rem !important; }

/*
  Grid
  Grid
  Grid
  */
.grid-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.grid-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y, 0) * -1);
  margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
  margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
}
[class^="grid-col-"] {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  margin-top: var(--bs-gutter-y, 0);
}
.grid-g-0 { --bs-gutter-x: 0; --bs-gutter-y: 0; }
.grid-g-1 { --bs-gutter-x: 0.25rem; --bs-gutter-y: 0.25rem; }
.grid-g-2 { --bs-gutter-x: 0.5rem; --bs-gutter-y: 0.5rem; }
.grid-g-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
.grid-g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.grid-g-5 { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; }
.grid-col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.grid-col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.grid-col-3 { flex: 0 0 25%; max-width: 25%; }
.grid-col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.grid-col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.grid-col-6 { flex: 0 0 50%; max-width: 50%; }
.grid-col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.grid-col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.grid-col-9 { flex: 0 0 75%; max-width: 75%; }
.grid-col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.grid-col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.grid-col-12 { flex: 0 0 100%; max-width: 100%; }
@media (min-width: 576px) {
  .grid-col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .grid-col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .grid-col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .grid-col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .grid-col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .grid-col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .grid-col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .grid-col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .grid-col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .grid-col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .grid-col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .grid-col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 768px) {
  .grid-col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .grid-col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .grid-col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .grid-col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .grid-col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .grid-col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .grid-col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .grid-col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .grid-col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .grid-col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .grid-col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .grid-col-md-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 992px) {
  .grid-col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .grid-col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .grid-col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .grid-col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .grid-col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .grid-col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .grid-col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .grid-col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .grid-col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .grid-col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .grid-col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .grid-col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 1200px) {
  .grid-col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .grid-col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .grid-col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .grid-col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .grid-col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .grid-col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .grid-col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .grid-col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .grid-col-xl-9 { flex: 0 0 75%; max-width: 75%; }
  .grid-col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .grid-col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .grid-col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 1400px) {
  .grid-col-xxl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .grid-col-xxl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .grid-col-xxl-3 { flex: 0 0 25%; max-width: 25%; }
  .grid-col-xxl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .grid-col-xxl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .grid-col-xxl-6 { flex: 0 0 50%; max-width: 50%; }
  .grid-col-xxl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .grid-col-xxl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .grid-col-xxl-9 { flex: 0 0 75%; max-width: 75%; }
  .grid-col-xxl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .grid-col-xxl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .grid-col-xxl-12 { flex: 0 0 100%; max-width: 100%; }
}

/*
  Text Alignment
  Text Alignment
  Text Alignment
  */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
@media (max-width: 768px) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-right {
    text-align: right;
  }
}
@media (min-width: 769px) {
  .text-md-left {
    text-align: left;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-right {
    text-align: right;
  }
}

/*
  a:Link
  a:Link
  a:Link
  */
.link {
  color: var(--primary);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.link:hover {
  color: var(--primary-light);
  text-decoration: underline;
}
.link-line {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 6px;
  transition: all 0.3s ease;
}
.link-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}
.link-line:hover {
  color: var(--primary-light);
}
.link-line:hover::after {
  width: 100%;
}

/*
  Badge
  Badge
  Badge
  */
.badge {
  display: inline-block;
  margin-top: 6px;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.badge.green {
  background: var(--set-color-green-500);
  color: var(--set-color-grey-200);
}
.badge.red {
  background: var(--set-color-red-500);
  color: var(--set-color-grey-200);
}

/*
  Button
  Button
  Button
  */
.button {
  display: inline-block;
  padding: 10px;
  background: var(--primary);
  color: var(--text-white);
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.button-grey {
  background-color: var(--set-color-grey-700);
}
.button-grey:hover {
  background-color: var(--set-color-grey-800);
}
.button:active {
  transform: translateY(0);
}
.button-sm {
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
}
.button-outline {
  display: inline-block;
  padding: 8px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button-outline:hover {
  background: rgba(24, 115, 253, 0.1);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}
.button-outline-grey {
  color: var(--set-color-grey-500);
  border: 2px solid var(--set-color-grey-700);
}
.button-outline-grey:hover {
  color: var(--set-color-grey-300);
  background: var(--set-color-grey-800);
  border-color: var(--set-color-grey-700);
}
.button-outline:active {
  transform: translateY(0);
}
.button-outline.button-sm {
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 4px;
  border-width: 1px;
}
.button-w100 {
  width: 100%;
}

/*
  Button Style 2
  Button Style 2
  Button Style 2
  */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-panel);
  color: var(--text-light);
  border: 1px solid var(--dark-border);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}
.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  border: 1px solid var(--primary-dark);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--text-white);
}
.btn-sm {
  padding: 6px 12px;
  font-size: 13px;
}

/*
  Hr
  Hr
  Hr
  */
.hr-basic {
  border: none;
  height: 1px;
  background: var(--dark-border);
  margin: 1.5rem 0;
}

/*
  Table
  Table
  Table
  */
.table-responsive {
  overflow-x: auto;
  margin-bottom: 10px;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th {
  padding: 15px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--dark-bg-3);
  border-bottom: 1px solid var(--dark-border);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
  color: var(--text-light);
}
.table thead th,
.table thead td {
  white-space: nowrap;
}
.table tbody tr {
  transition: all 0.3s ease;
}
.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.table tbody tr:last-child td {
  border-bottom: none;
}
.table-result-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.table-result-count {
  color: var(--text-muted);
  font-size: 14px;
}
.table-highlight {
  color: var(--text-white);
  font-weight: 600;
}
.table-pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table-pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}
.table-pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.table-pagination-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
}
.table-pagination-btn.active {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary-dark);
}
.table-pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.table-pagination-ellipsis {
  color: var(--text-muted);
  padding: 0 5px;
}
.table-per-page-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}
.table-per-page-selector select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  padding: 5px 25px 5px 10px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 255, 255, 0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 7px center;
}
.table-per-page-selector select option {
  background-color: var(--bg-dark, #333);
}
.table-per-page-selector select option:hover {
  background-color: var(--primary);
  color: var(--text-white);
}
.table-per-page-selector select option:focus {
  background-color: var(--primary);
  color: var(--text-white);
}
.table-per-page-selector select option:active {
  background-color: var(--primary);
  color: var(--text-white);
}
.table-actions {
  display: flex;
  gap: 5px;
}
.table-action-btn {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-decoration: none;
}
.table-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}
.table-action-btn.cblue:hover {
  background: #0277bd;
  color: var(--text-white);
}
.table-action-btn.cred:hover {
  background: #e51c23;
  color: var(--text-white);
}
@media (max-width: 768px) {
  .table-result-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .table-pagination-container {
    flex-direction: column;
    gap: 15px;
  }
  .table-pagination {
    justify-content: center;
    width: 100%;
  }
  .table-per-page-selector {
    width: 100%;
    justify-content: center;
  }
}

/*
  Form, Input
  Form, Input
  Form, Input
  */
.form-container {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 30px;
}
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.form-style-1 {
  display: flex;
  flex-direction: column;
}
.form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-actions {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group.half {
  flex: 1;
  margin-bottom: 0px;
}
.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-light);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="password"],
.form-group input[type="file"],
.form-group textarea {
  width: 100%;
  padding: 12px 15px 12px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  color: var(--text-white);
  font-size: 14px;
  transition: all 0.3s ease;
  line-height: 1.5;
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-group textarea:not(.input-with-icon textarea) {
  padding-left: 15px;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="url"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="file"]:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(24, 115, 253, 0.1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(24, 115, 253, 0.25);
}
.form-group input.is-invalid,
.form-group input.is-invalid:focus,
.form-group textarea.is-invalid,
.form-group textarea.is-invalid:focus {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}
.form-checkbox {
  display: flex;
  align-items: center;
}
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 3px;
  margin-right: 8px;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.form-checkbox input[type="checkbox"]:checked::before {
  content: '✓';
  position: absolute;
  color: var(--text-white);
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-checkbox label {
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.form-checkbox.is-invalid input[type="checkbox"] {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}
.form-checkbox.is-invalid input[type="checkbox"]:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}
.custom-select-container {
  position: relative;
}
.custom-select-trigger {
  width: 100%;
  padding: 12px 15px 12px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  color: var(--set-color-grey-600);
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-select-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-light);
  transition: all 0.3s ease;
  margin-left: 10px;
}
.custom-select-trigger:hover {
  background-color: rgba(40, 44, 52, 0.3);
  border-color: var(--primary);
}
.custom-select-container.open .custom-select-trigger {
  border-color: var(--primary);
  background-color: rgba(24, 115, 253, 0.1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(24, 115, 253, 0.25);
  color: var(--text-white);
}
.custom-select-container.open .custom-select-trigger::after {
  transform: rotate(180deg);
  border-top-color: var(--primary);
}
.custom-select-container.open .custom-options {
  display: block;
}
.custom-select-container.is-invalid .custom-select-trigger {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}
.custom-select-container.is-invalid .select-icon {
  filter: brightness(0.8) saturate(0.5) hue-rotate(330deg);
}
.custom-select-container.is-invalid.open .custom-select-trigger {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}
.custom-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background-color: var(--dark-bg-3);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.custom-option {
  padding: 12px 15px;
  cursor: pointer;
  color: var(--text-white);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
.custom-option:hover {
  background-color: rgba(24, 115, 253, 0.1);
}
.custom-option.selected {
  background-color: rgba(24, 115, 253, 0.2);
  color: var(--primary);
}
.custom-option.selected .option-icon {
  color: var(--primary);
}
.custom-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--dark-bg-3);
  color: var(--set-color-grey-500);
}
.custom-options::-webkit-scrollbar {
  width: 6px;
}
.custom-options::-webkit-scrollbar-track {
  background: var(--dark-bg-3);
}
.custom-options::-webkit-scrollbar-thumb {
  background-color: var(--dark-border);
  border-radius: 4px;
}
.custom-t1-input {
  position: relative;
}
.custom-t1-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}
.custom-t1-input input[value]:not([value=""]) ~ .custom-t1-clear-btn {
  display: block;
}
.custom-t1-picker {
  padding-right: 60px;
  cursor: pointer;
}
.custom-t1-clear-btn {
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #e0e0e0;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  display: none;
  color: #666;
  padding: 0;
}
.label-required {
  color: var(--secondary);
}
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 15px;
}
.select-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 1;
}
.selected-option {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
  }
  .form-row {
    flex-direction: column;
  }
}

/*
  Image
  Image
  Image
  */
.img-responsive,
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-circle {
  border-radius: 50%;
}
.img-thumbnail {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.img-left {
  float: left;
  margin-right: 15px;
  margin-bottom: 10px;
}
.img-right {
  float: right;
  margin-left: 15px;
  margin-bottom: 10px;
}
.img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.img-border {
  border: 2px solid #dee2e6;
}
.img-border-primary {
  border: 2px solid #007bff;
}
.img-border-success {
  border: 2px solid #28a745;
}
.img-border-danger {
  border: 2px solid #dc3545;
}
.img-border-warning {
  border: 2px solid #ffc107;
}
.img-border-info {
  border: 2px solid #17a2b8;
}
.img-shadow {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.img-shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.img-shadow-lg {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.img-hover {
  transition: all 0.3s ease;
}
.img-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.img-hover-fade {
  transition: opacity 0.3s ease;
}
.img-hover-fade:hover {
  opacity: 0.8;
}
.img-hover-zoom {
  transition: transform 0.3s ease;
  overflow: hidden;
}
.img-hover-zoom:hover {
  transform: scale(1.1);
}
.img-grayscale {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.img-grayscale:hover {
  filter: grayscale(0%);
}
.img-opacity-25 {
  opacity: 0.25;
}
.img-opacity-50 {
  opacity: 0.5;
}
.img-opacity-75 {
  opacity: 0.75;
}

/*
  Modal Styles
  Modal Styles
  Modal Styles
  */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.modal.active {
  display: block;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--dark-bg-3);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: modalFadeIn 0.3s ease;
}
.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-title {
  margin: 0;
  font-size: 18px;
  color: var(--text-white);
}
.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal-close:hover {
  color: var(--danger);
}
.modal-body {
  padding: 20px;
  max-height: 70vh;
  overflow-y: auto;
}
.modal-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/*
  LAYOUT & STRUCTURE
  LAYOUT & STRUCTURE
  LAYOUT & STRUCTURE
  */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.content-wrapper {
  display: flex;
  flex: 1;
  position: relative;
}
.main-content {
  flex: 1;
  width: calc(100% - 300px);
  max-width: calc(100% - 300px);
  min-height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
}
.main-container {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 30px;
}
body.menu-open .main-content {
  overflow: hidden;
  transform: translateX(280px);
}
.section-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dark-border);
}
.section-title-s2 {
  font-size: 1rem;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .main-content {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .main-container {
    padding: 20px;
  }
}

/*
  HEADER & NAVIGATION
  HEADER & NAVIGATION
  HEADER & NAVIGATION
  */
.header {
  height: 80px;
  width: 100%;
  background-color: var(--dark-bg);
  border-bottom: 1px solid var(--dark-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-icon {
  position: relative;
  width: 48px;
  height: 48px;
}
.logo h1 {
  font-size: 38px;
  margin: 0;
  font-family: "Chewy", system-ui;
  font-weight: 400;
  letter-spacing: -0.02em;
  background: linear-gradient(45deg,#ff006e,#8338ec,#3a86ff,#06ffa5,#ffbe0b,#ff006e);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15))drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transform: translateY(-1px);
  animation: holographic 2s ease-in-out infinite alternate;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes holographic {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.header-center {
  flex: 1;
  max-width: 500px;
  margin: 0 40px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
}
.nav-icon:hover {
  background: var(--primary);
}
.settings-icon {
  display: none;
}
.nav-icon.settings-icon.active {
  background: var(--primary);
  color: var(--text-white);
}
.main-nav {
  background-color: var(--dark-bg-2);
  border-bottom: 1px solid var(--dark-border);
  padding: 0 20px;
  width: 100%;
}
.nav-container {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-menu li a {
  color: var(--text-light);
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-menu li a:hover, .nav-menu li a.active {
  color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.05);
}
.nav-menu li.dropdown-menu {
  position: relative;
}
.nav-menu li.dropdown-menu > a {
  display: flex;
  align-items: center;
}
.nav-menu li.dropdown-menu > a::after {
  content: "▼";
  font-size: 8px;
  margin-left: 6px;
}
.dropdown-menu-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--dark-bg-3);
  min-width: 150px;
  border: 1px solid var(--dark-border);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
}
.dropdown-menu-content a {
  display: block;
  padding: 12px 20px;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--dark-border);
}
.dropdown-menu-content a:last-child {
  border-bottom: none;
}
.dropdown-menu-content a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}
.nav-menu li.dropdown-menu:hover .dropdown-menu-content {
  display: block;
}
@media (max-width: 1200px) {
  .header-center {
    max-width: 300px;
  }
}
@media (max-width: 992px) {
  .settings-icon {
    display: flex;
  }
}
@media (max-width: 768px) {
  .header-center {
    display: none;
  }
  .header-left {
    gap: 15px;
  }
  .logo h1 {
    display: none;
  }
  .nav-menu {
    display: none;
    justify-content: center;
  }
}

/*
  MOBILE MENU
  MOBILE MENU
  MOBILE MENU
  */
.menu-toggle {
  width: 24px;
  height: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1002;
}
.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  top: 80px;
  left: -280px;
  width: 280px;
  height: calc(100vh - 80px);
  background-color: var(--dark-bg-3);
  border-right: 1px solid var(--dark-border);
  box-shadow: var(--shadow-md);
  z-index: 1001;
  transition: all 0.3s ease;
  overflow-y: auto;
}
body.menu-open .mobile-menu {
  overflow-y: auto;
  left: 0;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  backdrop-filter: blur(3px);
}
body.menu-open .menu-overlay {
  display: block;
}
.mobile-menu-item {
  padding: 15px 25px;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.mobile-menu-item:hover,
.mobile-menu-item.active {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-left-color: var(--primary);
}
.mobile-menu-icon {
  width: 20px;
  text-align: center;
  opacity: 0.8;
}
.mobile-menu-dropdown {
  position: relative;
}
.mobile-menu-dropdown .mobile-menu-item {
  border-bottom: none;
  cursor: pointer;
  position: relative;
}
.mobile-dropdown-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  transition: transform 0.3s ease;
}
.mobile-menu-dropdown.active .mobile-dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
}
.mobile-submenu {
  background-color: var(--dark-bg-2);
  display: none;
  overflow: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-dropdown.active .mobile-submenu {
  display: block;
}
.mobile-submenu-item {
  display: block;
  padding: 12px 12px 12px 50px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-submenu-item:last-child {
  border-bottom: none;
}
.mobile-submenu-item:hover {
  color: var(--text-white);
}
.mobile-submenu-item.active {
  color: var(--text-white);
}

/*
  SIDEBAR & MOBILE SIDEBAR
  SIDEBAR & MOBILE SIDEBAR
  SIDEBAR & MOBILE SIDEBAR
  */
.sidebar {
  width: 300px;
  background: var(--dark-bg-3);
  border-left: 1px solid var(--dark-border);
  position: fixed;
  right: 0;
  top: 80px;
  bottom: 0;
  overflow-y: auto;
  padding: 20px;
  z-index: 100;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sidebar::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
  display: none;
}
.sidebar.is-scrolling {
  scrollbar-width: thin;
  -ms-overflow-style: auto;
}
.sidebar.is-scrolling::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  display: block;
}
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--dark-bg-3);
  border-left: 1px solid var(--dark-border);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  transition: all 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}
body.sidebar-open .mobile-sidebar {
  right: 0;
}
.sidebar-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.sidebar-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
  backdrop-filter: blur(3px);
}
body.sidebar-open .sidebar-overlay {
  display: block;
}
.sidebar-header {
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--dark-border);
}
.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.sidebar-section {
  margin-bottom: 10px;
}
.profile-widget {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.avatar:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.user-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
  text-align: center;
}
.user-block {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 5px;
}
.user-block-name {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
}
.user-block-image {
  flex-shrink: 0;
}
.user-level {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
  text-align: center;
}
.status-badge {
  background: var(--primary);
  color: var(--text-white);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
  width: 100%;
}
.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.sidebar-menu {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
}
.sidebar-menu-item {
  border-bottom: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}
.sidebar-menu-item:last-child {
  border-bottom: none;
}
.sidebar-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 14px;
  transition: all 0.3s ease;
}
.sidebar-menu-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}
.sidebar-menu-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-ad-container {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.sidebar-ad-container:hover {
  box-shadow: 0 0 15px rgba(24, 115, 253, 0.2);
  transform: translateY(-2px);
}
.sidebar-ad-label {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--text-muted);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 10;
}
.sidebar-ad-link {
  display: block;
  text-decoration: none;
}
.sidebar-ad-content {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.sidebar-ad-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.sidebar-ad-link:hover .sidebar-ad-image {
  transform: scale(1.05);
}
.sidebar-ad-sponsor {
  padding: 8px 10px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(0, 0, 0, 0.2);
}
.sidebar-recent-blogs {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
}
.sidebar-marketplace-blogs {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
}
.sidebar-blog-item, .sidebar-marketplace-item {
  display: flex;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebar-blog-item:last-child, .sidebar-marketplace-item:last-child {
  border-bottom: none;
}
.sidebar-blog-item:hover, .sidebar-marketplace-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sidebar-blog-image, .sidebar-marketplace-image {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 12px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--dark-border);
}
.sidebar-blog-image img, .sidebar-marketplace-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.sidebar-blog-item:hover .sidebar-blog-image img,
.sidebar-marketplace-item:hover .sidebar-marketplace-image img {
  transform: scale(1.05);
}
.sidebar-blog-content, .sidebar-marketplace-content {
  flex: 1;
  min-width: 0;
}
.sidebar-blog-title, .sidebar-marketplace-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
.sidebar-blog-meta, .sidebar-marketplace-meta {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  color: var(--text-muted);
}
.sidebar-blog-author, .sidebar-marketplace-seller {
  margin-bottom: 2px;
}
.sidebar-blog-time, .sidebar-marketplace-time {
  font-style: italic;
}
.sidebar-marketplace-image {
  position: relative;
}
.sidebar-marketplace-tag {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 0 4px 0 4px;
  font-weight: 600;
}
.sidebar-marketplace-tag.selling {
  background-color: var(--primary);
  color: var(--text-white);
}
.sidebar-marketplace-tag.buying {
  background-color: var(--secondary);
  color: var(--text-white);
}
.sidebar-marketplace-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .sidebar {
    display: none;
  }
}

/*
  SEARCH FUNCTIONALITY
  SEARCH FUNCTIONALITY
  SEARCH FUNCTIONALITY
  */
.search-container {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 8px 16px;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.search-container input {
  background: transparent;
  border: none;
  color: var(--text-white);
  padding: 4px 12px;
  width: 100%;
  outline: none;
  font-family: 'Sarabun', sans-serif;
  font-size: 14px;
}
.search-container input::placeholder {
  color: var(--text-muted);
}
.search-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-search-icon {
  display: none;
}
.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background-color: var(--dark-bg-3);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 1010;
  padding: 15px;
  display: none;
  max-height: 80vh;
  overflow-y: auto;
}
.search-results.active {
  display: block;
  animation: fadeInDown 0.3s ease forwards;
}
.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dark-border);
}
.search-results-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
}
.search-results-count {
  font-size: 13px;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
}
.search-results-group {
  margin-bottom: 16px;
}
.search-results-group:last-child {
  margin-bottom: 0;
}
.search-item {
  display: flex;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 5px;
  text-decoration: none;
}
.search-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.search-item-image {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 12px;
  flex-shrink: 0;
  border: 1px solid var(--dark-border);
}
.search-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-item-content {
  flex: 1;
}
.search-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}
.search-item-description {
  font-size: 12px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
.search-highlight {
  color: var(--primary);
  font-weight: 600;
}
.search-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}
.search-item-tag {
  background-color: rgba(24, 115, 253, 0.1);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}
.search-item-price {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}
.search-results-more {
  text-align: center;
  padding-top: 12px;
  margin-top: 10px;
  border-top: 1px solid var(--dark-border);
}
.search-more-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.search-more-link:hover {
  text-decoration: underline;
}
.no-results {
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
}
.no-results-icon {
  font-size: 36px;
  margin-bottom: 10px;
  opacity: 0.5;
}
.no-results-text {
  font-size: 16px;
  margin-bottom: 5px;
}
.no-results-suggestion {
  font-size: 14px;
}
@media (max-width: 768px) {
  .mobile-search-icon {
    display: flex;
  }
  .search-results {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background-color: transparent;
    margin-top: 20px;
    animation: none;
    padding: 0;
  }
  .search-results.active {
    display: block;
  }
  .search-results-header {
    padding-bottom: 15px;
  }
  .search-item-image {
    width: 60px;
    height: 60px;
  }
}

/*
  MOBILE SEARCH OVERLAY
  MOBILE SEARCH OVERLAY
  MOBILE SEARCH OVERLAY
  */
.mobile-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-bg-3);
  z-index: 2000;
  padding: 20px;
  display: none;
  flex-direction: column;
  animation: fadeIn 0.3s ease forwards;
}
.mobile-search-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.mobile-search-back {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-search-form {
  flex: 1;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 15px;
}
.mobile-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-white);
  padding: 5px;
  font-size: 16px;
  outline: none;
  font-family: 'Sarabun', sans-serif;
}
.mobile-search-clear {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.mobile-search-content {
  flex: 1;
  overflow-y: auto;
}
.mobile-search-overlay.active {
  display: flex;
}

/*
  NOTIFICATION DROPDOWN STYLES
  NOTIFICATION DROPDOWN STYLES
  NOTIFICATION DROPDOWN STYLES
  */
.notification-icon {
  position: relative;
}
.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--secondary);
  color: var(--text-white);
  font-size: 10px;
  font-weight: bold;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--dark-bg);
  animation: pulse 2s infinite;
}
.notification-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: -10px;
  width: 320px;
  background-color: var(--dark-bg-3);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  overflow: hidden;
  display: none;
  transform-origin: top right;
  animation: notificationDropdown 0.3s ease forwards;
}
.notification-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 15px;
  width: 16px;
  height: 16px;
  background-color: var(--dark-bg-3);
  border-top: 1px solid var(--dark-border);
  border-left: 1px solid var(--dark-border);
  transform: rotate(45deg);
  z-index: 0;
}
.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid var(--dark-border);
  background-color: var(--dark-panel);
}
.notification-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--text-white);
}
.notification-count {
  font-size: 12px;
  color: var(--text-white);
  background-color: var(--secondary);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
}
.notification-list {
  max-height: 400px;
  overflow-y: auto;
}
.dropdown-notification-item {
  display: flex;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
}
.dropdown-notification-item:last-child {
  border-bottom: none;
}
.dropdown-notification-item:hover {
  background-color: rgba(255, 255, 255, 0.03);
}
.dropdown-notification-item.unread {
  background-color: rgba(24, 115, 253, 0.08);
}
.dropdown-notification-item.unread::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary);
}
.dropdown-notification-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-right: 12px;
}
.dropdown-notification-content {
  flex: 1;
  min-width: 0;
}
.dropdown-notification-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown-notification-text {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}
.dropdown-notification-time {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}
.notification-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-top: 1px solid var(--dark-border);
  background-color: var(--dark-panel);
}
.view-all-notifications {
  color: var(--primary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.view-all-notifications:hover {
  color: var(--primary-light);
  text-decoration: underline;
}
.notification-dropdown.active {
  display: block;
}
.notification-close {
  display: none;
  position: absolute;
  top: 14px;
  right: 12px;
  width: 24px;
  height: 24px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.notification-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
}
.notification-icon.active {
  background-color: var(--primary);
}
@media (max-width: 768px) {
  .notification-dropdown {
    position: fixed;
    top: 90px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 90%;
    max-width: 340px;
    max-height: 80vh;
    border-radius: 10px;
    animation: mobileNotificationDropdown 0.3s ease forwards;
  }
  .notification-dropdown::before {
    display: none;
  }
  .notification-dropdown.active::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    animation: fadeIn 0.3s ease forwards;
  }
  .notification-close {
    display: flex;
  }
  .notification-header {
    padding-right: 40px;
  }
}

/*
  SCROLLBAR STYLES
  SCROLLBAR STYLES
  SCROLLBAR STYLES
  */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg-2);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 6px;
  border: 2px solid var(--dark-bg-2);
  transition: all 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
  box-shadow: var(--glow-blue);
}
::-webkit-scrollbar-corner {
  background: var(--dark-bg-2);
}
.nav-menu::-webkit-scrollbar {
  height: 5px;
}
.nav-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
.nav-menu::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
  border: 1px solid var(--dark-bg-2);
}
.nav-menu::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
  box-shadow: var(--glow-blue);
}
.mobile-sidebar::-webkit-scrollbar,
.mobile-menu::-webkit-scrollbar,
.search-results::-webkit-scrollbar,
.mobile-search-content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.sidebar::-webkit-scrollbar-track,
.mobile-sidebar::-webkit-scrollbar-track,
.mobile-menu::-webkit-scrollbar-track,
.search-results::-webkit-scrollbar-track,
.mobile-search-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}
.sidebar::-webkit-scrollbar-thumb,
.mobile-sidebar::-webkit-scrollbar-thumb,
.mobile-menu::-webkit-scrollbar-thumb,
.search-results::-webkit-scrollbar-thumb,
.mobile-search-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.sidebar::-webkit-scrollbar-thumb:hover,
.mobile-sidebar::-webkit-scrollbar-thumb:hover,
.mobile-menu::-webkit-scrollbar-thumb:hover,
.search-results::-webkit-scrollbar-thumb:hover,
.mobile-search-content::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}
.sidebar:hover::-webkit-scrollbar-thumb,
.mobile-sidebar:hover::-webkit-scrollbar-thumb,
.mobile-menu:hover::-webkit-scrollbar-thumb,
.search-results:hover::-webkit-scrollbar-thumb,
.mobile-search-content:hover::-webkit-scrollbar-thumb {
  background: var(--primary);
}
.sidebar::-webkit-scrollbar-thumb:active,
.mobile-sidebar::-webkit-scrollbar-thumb:active,
.mobile-menu::-webkit-scrollbar-thumb:active,
.search-results::-webkit-scrollbar-thumb:active,
.mobile-search-content::-webkit-scrollbar-thumb:active,
.nav-menu::-webkit-scrollbar-thumb:active,
::-webkit-scrollbar-thumb:active {
  background: var(--accent);
  animation: pulse-glow 1.5s infinite;
}

/*
  ALERT STYLES
  ALERT STYLES
  ALERT STYLES
  */
.alert {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  animation: pulse 2s infinite;
}
.alert-info {
  background: var(--secondary);
  color: var(--text-white);
}

/*
  BANNER STYLES
  BANNER STYLES
  BANNER STYLES
  */
.banner-container {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border: 2px solid #111a29;
  border-radius: 12px;
}
.banner-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  display: block;
}
.banner-s2 {
  position: relative;
  padding: 40px 40px;
  background: linear-gradient(45deg, var(--dark-bg-3) 0%, rgba(17, 28, 59, 0.9) 100%);
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--dark-border);
  text-align: center;
}
.banner-s2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231873fd' fill-opacity='0.09'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}
.banner-s2-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.banner-s2-title {
  font-size: 50px;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.banner-s2-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin: 0 auto;
  max-width: 700px;
}
@media (max-width: 992px) {
  .banner-s2 {
    padding: 30px 30px;
  }
  .banner-s2-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .banner-container {
    height: 180px;
  }
  .banner-s2-title {
    font-size: 30px;
  }
  .banner-s2-subtitle {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .banner-s2 {
    padding: 20px 20px;
  }
  .banner-s2-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .banner-container {
    height: 150px;
  }
}
@media (min-width: 1200px) {
  .banner-container {
    height: 280px;
  }
}

/*
  HEADER STYLES
  HEADER STYLES
  HEADER STYLES
  */
.header-s1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-bg-3);
  border-radius: 8px;
  padding: 30px 40px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}
.header-s1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 115, 253, 0.15) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 0;
}
.header-s1-banner {
  position: relative;
  z-index: 1;
}
.header-s1-title {
  font-size: 32px;
  margin-bottom: 5px;
  background: linear-gradient(90deg, var(--text-white) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(0, 234, 255, 0.3);
}
.header-s1-description {
  color: var(--text-light);
  max-width: 500px;
  margin: 0;
  font-size: 16px;
}
.header-s1-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.header-s1-stat-box {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 15px 25px;
  text-align: center;
  min-width: 150px;
}
.header-s1-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.header-s1-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.header-s1-balance-actions {
  display: flex;
  flex-direction: column;
  min-width: 120px;
  gap: 6px;
}
@media (max-width: 992px) {
  .header-s1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
  }
  .header-s1-stats {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .header-s1 {
    padding: 20px;
  }
  .header-s1-title {
    font-size: 26px;
  }
  .header-s1-stat-box {
    padding: 10px 15px;
    min-width: 120px;
  }
  .header-s1-stat-value {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .header-s1-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .header-s1-stat-box {
    width: 100%;
  }
  .header-s1-balance-actions {
    width: 100%;
  }
}
.header-s2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.header-s2-content {
  flex: 1;
}
.header-s2-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--text-white);
}
.header-s2-description {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
}
.header-s2-actions {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header-s2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .header-s2-actions {
    display: none;
  }
}
.header-s3 {
  margin-bottom: 25px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--dark-border);
}
.header-s3-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.header-s3-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
}
.header-s3-slide.active {
  opacity: 1;
  z-index: 1;
}
.header-s3-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.header-s3-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-s3-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 2;
}
.header-s3-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  margin-top: auto;
  width: 60%;
  color: var(--text-white);
}
.header-s3-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  background-color: var(--primary);
}
.header-s3-tag.new {
  background-color: var(--primary);
}
.header-s3-tag.update {
  background-color: #9147ff;
}
.header-s3-tag.event {
  background-color: #ff5f40;
}
.header-s3-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.header-s3-description {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.header-s3-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.header-s3-controls {
  position: absolute;
  bottom: 20px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-s3-controls-prev, .header-s3-controls-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-s3-controls-prev:hover, .header-s3-controls-next:hover {
  background: var(--primary);
}
.header-s3-indicators {
  display: flex;
  gap: 8px;
}
.header-s3-indicator {
  width: 30px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-s3-indicator.active {
  background-color: var(--primary);
  width: 50px;
}
@media (max-width: 992px) {
  .header-s3-content {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .header-s3-slider {
    height: 450px;
  }
  .header-s3-content {
    width: 100%;
    padding: 30px;
  }
  .header-s3-title {
    font-size: 24px;
  }
  .header-s3-description {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .header-s3-slider {
    height: 400px;
  }
  .header-s3-controls {
    right: 20px;
  }
  .header-s3-controls-prev, .header-s3-controls-next {
    width: 30px;
    height: 30px;
  }
}

/*
  BREADCRUMB STYLES
  BREADCRUMB STYLES
  BREADCRUMB STYLES
  */
.breadcrumb-container {
  margin-bottom: 20px;
  margin-left: 4px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  align-items: center;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}
.breadcrumb li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb li a:hover {
  color: var(--primary);
}
.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: var(--text-muted);
}
.breadcrumb li.active {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 150px;
  color: var(--text-light);
}
@media (max-width: 768px) {
  .breadcrumb li.active {
    max-width: 100px;
  }
}

/*
  TABS STYLES
  TABS STYLES
  TABS STYLES
  */
.tabs {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
  padding: 0 10px;
}
.tab {
  padding: 12px 20px;
  background: none;
  border: none;
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-decoration: none;
}
.tab:hover {
  color: var(--text-white);
}
.tab.active {
  color: var(--primary);
}
.tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
}

/*
  TOAST STYLES
  TOAST STYLES
  TOAST STYLES
  */
#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  width: calc(100% - 40px);
}
.toast {
  display: flex;
  background-color: var(--dark-bg-3);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: toastSlideIn 0.3s ease forwards;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.toast.hide {
  animation: toastSlideOut 0.3s ease forwards;
}
.toast-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
}
.toast-content {
  flex: 1;
  min-width: 0;
}
.toast-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-white);
}
.toast-message {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
}
.toast-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
  padding: 0;
}
.toast-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
}
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  animation: toastProgress 5s linear forwards;
}
.toast.success .toast-icon {
  background-color: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}
.toast.success {
  border-left: 4px solid #2ecc71;
}
.toast.success .toast-progress {
  background-color: #2ecc71;
}
.toast.error .toast-icon {
  background-color: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}
.toast.error {
  border-left: 4px solid #e74c3c;
}
.toast.error .toast-progress {
  background-color: #e74c3c;
}
.toast.warning .toast-icon {
  background-color: rgba(243, 156, 18, 0.2);
  color: #f39c12;
}
.toast.warning {
  border-left: 4px solid #f39c12;
}
.toast.warning .toast-progress {
  background-color: #f39c12;
}
.toast.info .toast-icon {
  background-color: rgba(52, 152, 219, 0.2);
  color: #3498db;
}
.toast.info {
  border-left: 4px solid #3498db;
}
.toast.info .toast-progress {
  background-color: #3498db;
}
@media (max-width: 768px) {
  #toast-container {
    bottom: 15px;
    right: 15px;
    max-width: 320px;
    width: calc(100% - 30px);
  }
}
@media (max-width: 576px) {
  .toast {
    padding: 12px;
  }
  .toast-title {
    font-size: 14px;
  }
  .toast-message {
    font-size: 12px;
  }
}

/*
  Card STYLES
  Card STYLES
  Card STYLES
  */
.card-s1 {
  background-color: var(--dark-bg-3);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}
.card-s1:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.card-s1.large {
  grid-column: span 3;
  display: flex;
  height: 300px;
}
.card-s1.large .card-s1-image {
  width: 50%;
  height: 100%;
}
.card-s1.large .card-s1-content {
  width: 50%;
  padding: 25px;
}
.card-s1-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-s1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card-s1:hover .card-s1-image img {
  transform: scale(1.05);
}
.card-s1-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  z-index: 2;
}
.card-s1-category.games {
  background-color: #4CAF50;
}
.card-s1-category.updates {
  background-color: #9147ff;
}
.card-s1-category.events {
  background-color: #ff5f40;
}
.card-s1-category.esports {
  background-color: #F44336;
}
.card-s1-category.promotions {
  background-color: #FF9800;
}
.card-s1-content {
  padding: 15px;
}
.card-s1-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-white);
  transition: color 0.3s ease;
}
.card-s1.large .card-s1-title {
  font-size: 24px;
  margin-bottom: 15px;
}
.card-s1:hover .card-s1-title {
  color: var(--primary);
}
.card-s1-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-s1-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.card-s2 {
  background-color: var(--dark-bg-3);
  border-radius: 8px;
  border: 1px solid var(--dark-border);
}
.card-s2-image {
  height: 200px;
  overflow: hidden;
}
.card-s2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card-s2:hover .card-s2-image img {
  transform: scale(1.05);
}
.card-s2-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-s2-title {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0;
  color: var(--text-white);
}
.card-s2-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}
.card-s2-link {
  align-self: flex-start;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.card-s2-link:hover {
  color: var(--primary-light);
}
.card-s2-link i {
  transition: transform 0.3s ease;
}
.card-s2-link:hover i {
  transform: translateX(5px);
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  color: var(--text-muted);
}
.card-date, .card-views, .card-comments {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .card-s1.large {
    grid-column: span 2;
    flex-direction: column;
    height: auto;
  }
  .card-s1.large .card-s1-image,
  .card-s1.large .card-s1-content {
    width: 100%;
  }
  .card-s1.large .card-s1-title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .card-s1.large {
    grid-column: span 1;
  }
}

/*
  Ticker STYLES
  Ticker STYLES
  Ticker STYLES
  */
.ticker {
  background-color: var(--dark-bg-3);
  padding: 12px 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}
.ticker-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-white);
  padding-right: 15px;
  font-size: 14px;
  white-space: nowrap;
  text-transform: uppercase;
}
.ticker-icon {
  animation: ticker-icon-pulse 2s infinite;
}
.ticker-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-container:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(to right, rgba(21, 29, 46, 0), rgba(21, 29, 46, 1));
}
.ticker-items {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  gap: 30px;
  padding-right: 20px;
}
.ticker-item a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.ticker-item a:hover {
  color: var(--primary);
}
@media (max-width: 576px) {
  .ticker-title {
    display: none;
  }
}
@keyframes ticker-icon-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*
  Trending STYLES
  Trending STYLES
  Trending STYLES
  */
.trending-s1-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trending-s1-topic {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 6px;
  background-color: var(--dark-bg-3);
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--dark-border);
}
.trending-s1-topic:hover {
  background-color: rgba(24, 115, 253, 0.1);
  transform: translateX(5px);
  color: var(--text-white);
  border-color: var(--primary);
}
.trending-s1-topic-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.7;
  min-width: 36px;
}
.trending-s1-topic-text {
  font-size: 15px;
  font-weight: 500;
}

/*
  Filter STYLES
  Filter STYLES
  Filter STYLES
  */
.filter-s1-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: var(--dark-bg-3);
  border-radius: 8px;
  border: 1px solid var(--dark-border);
}
.filter-s1-section {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-s1-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-s1-group label {
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}
.filter-s1-select {
  background: rgba(255, 255, 255, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 255, 255, 0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  color: var(--text-white);
  cursor: pointer;
  padding: 8px 12px;
  outline: none;
  min-width: 150px;
  flex: 1;
  line-height: 1.8;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.filter-s1-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}
.filter-s1-select::-ms-expand {
  display: none;
}
.filter-s1-select option {
  background-color: var(--dark-bg-3);
  color: var(--text-white);
  padding: 10px;
}
.filter-s1-search {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-s1-search-input {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border: 1px solid var(--dark-border);
  color: var(--text-white);
  padding: 8px 15px;
  outline: none;
  flex: 1;
  min-width: 0;
  line-height: 1.8;
}
.filter-s1-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}
.filter-s1-search-btn {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-s1-search-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 992px) {
  .filter-s1-container {
    flex-direction: column;
  }
  .filter-s1-section {
    width: 100%;
    justify-content: space-between;
  }
  .filter-s1-group {
    flex: 1;
    min-width: 0;
  }
  .filter-s1-search {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .filter-s1-section {
    flex-direction: column;
    gap: 15px;
  }
  .filter-s1-group {
    width: 100%;
    justify-content: space-between;
  }
  .filter-s1-select {
    flex: 1;
    min-width: 0;
  }
  .filter-s1-search {
    flex-wrap: wrap;
  }
  .filter-s1-search-input {
    flex: 1;
    min-width: calc(100% - 50px);
  }
}
@media (max-width: 480px) {
  .filter-s1-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-s1-group label {
    margin-bottom: 5px;
  }
  .filter-s1-select {
    width: 100%;
  }
  .filter-s1-search {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-s1-search-input,
  .filter-s1-search-btn {
    width: 100%;
  }
}

/*
  MODAL SHARE STYLES
  MODAL SHARE STYLES
  MODAL SHARE STYLES
  */
.modal-share-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}
.modal-share-option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.modal-share-option-btn:hover {
  opacity: 0.8;
}
.modal-share-option-btn.facebook {
  background-color: #1877F2;
}
.modal-share-option-btn.discord {
  background-color: #5865F2;
}
.modal-share-copy-link-section {
  display: flex;
  margin-top: 14px;
}
.modal-share-copy-link-section input {
  flex-grow: 1;
  padding: 8px 12px;
  border: 1px solid var(--dark-border);
  background-color: var(--dark-bg-2);
  color: var(--text-muted);
  border-radius: 6px 0 0 6px;
  outline: none;
}
.modal-share-copy-link-section button {
  padding: 8px 15px;
  border: 1px solid var(--set-color-grey-700);
  background-color: var(--set-color-grey-700);
  color: white;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  flex-shrink: 0;
}

/*
  SHARE STYLES
  SHARE STYLES
  SHARE STYLES
  */
.share-s1 {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}
.share-s1-title {
  font-size: 14px;
  color: var(--text-muted);
  margin-right: 5px;
}
.share-s1-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.share-s1-btn {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-light);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.share-s1-btn:hover {
  transform: translateY(-2px);
}
.share-s1-btn.facebook {
  background: rgba(59, 89, 152, 0.2);
  color: #c4d2eb;
}
.share-s1-btn.facebook:hover {
  background: rgba(59, 89, 152, 0.3);
}
.share-s1-btn.discord {
  background: rgba(114, 137, 218, 0.2);
  color: #d6dcff;
}
.share-s1-btn.discord:hover {
  background: rgba(114, 137, 218, 0.3);
}
.share-s1-btn.copy-link {
  background: rgba(255, 255, 255, 0.08);
}
.share-s1-btn.copy-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

/*
  PAGINATION STYLES
  PAGINATION STYLES
  PAGINATION STYLES
  */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}
.pagination-page-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination-page-btn:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}
.pagination-page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination-page-numbers {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 15px;
}
.pagination-page-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination-page-number:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}
.pagination-page-number.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.pagination-page-ellipsis {
  color: var(--text-muted);
  margin: 0 5px;
}
@media (max-width: 768px) {
  .pagination-page-numbers {
    gap: 3px;
  }
  .pagination-page-number {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  .pagination-page-numbers .pagination-page-number:not(.active):not(:first-child):not(:last-child) {
    display: none;
  }
  .pagination-page-numbers .pagination-page-ellipsis {
    display: inline;
  }
}

/*
  Floating Action STYLES
  Floating Action STYLES
  Floating Action STYLES
  */
.navi-fab-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  display: none;
  z-index: 9997;
}
.navi-fab-overlay.navi-is-active {
  display: block;
}
.navi-fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9998;
  display: none;
}
.navi-fab-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navi-fab-button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.navi-fab-button .navi-fab-icon-plus {
  display: block;
}
.navi-fab-button .navi-fab-icon-close {
  display: none;
}
.navi-fab-button.navi-is-active .navi-fab-icon-plus {
  display: none;
}
.navi-fab-button.navi-is-active .navi-fab-icon-close {
  display: block;
}
.navi-fab-popup {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 180px;
  background-color: var(--set-color-grey-50);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.navi-fab-popup.navi-is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.navi-fab-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navi-fab-menu-item {
  padding: 0;
}
.navi-fab-menu-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--set-color-grey-800);
  text-decoration: none;
  transition: background-color 0.2s;
}
.navi-fab-menu-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.navi-fab-menu-text {
  font-size: 14px;
}
@media (min-width: 769px) {
  .navi-fab-overlay {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .navi-fab-container {
    display: block;
  }
}

/*
  Key Frames
  Key Frames
  Key Frames
  */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 95, 64, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 95, 64, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 95, 64, 0);
  }
}
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 5px rgba(24, 115, 253, 0.5);
  }
  50% {
    box-shadow: 0 0 12px rgba(24, 115, 253, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(24, 115, 253, 0.5);
  }
}
@keyframes notificationDropdown {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes mobileNotificationDropdown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes toastSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes toastSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes toastProgress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/*
  Loading Overlay
  Loading Overlay
  Loading Overlay
  */
#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 20, 23, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}
.loading-spinner {
  border: 6px solid rgba(255, 255, 255, 0.1);
  border-top: 6px solid var(--primary);
  border-right: 6px solid var(--primary);
  border-bottom: 6px solid var(--primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(24, 115, 253, 0.3);
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*
  Only Page Account Menu
  Only Page Account Menu
  Only Page Account Menu
  */
.only-page-account-menu-category-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--dark-border);
}
.only-page-account-menu-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.only-page-account-menu-category-title {
  font-size: 1.4rem;
  font-weight: 600;
}
.only-page-account-menu-card {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.only-page-account-menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), var(--glow-blue);
}
.only-page-account-menu-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.only-page-account-menu-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.only-page-account-menu-card-description {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/*
  Only Page Post
  Only Page Post
  Only Page Post
  */
.only-page-post-header {
  margin-bottom: 30px;
}
.only-page-post-subtitle {
  display: block;
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 5px;
}

/*
  Only Page Index
  Only Page Index
  Only Page Index
  */
.only-page-index-banner-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border: 3px solid #111a29;
}
.only-page-index-banner-bg {
  width: 100%;
  height: 100%;
  background-image: url('https://www.gamehubth.com/assets/images/banner/slide1-desktop.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 17px;
}
.only-page-index-services-highlight-section {
  margin-top: 30px;
}
.only-page-index-services-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.only-page-index-service-highlight-card {
  background-color: var(--dark-bg-3);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.only-page-index-service-highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.only-page-index-service-highlight-icon {
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(24, 115, 253, 0.1) 0%, rgba(0, 234, 255, 0.1) 100%);
  box-shadow: 0 0 15px rgba(24, 115, 253, 0.2);
}
.only-page-index-service-highlight-title {
  font-size: 1rem;
  margin-bottom: 15px;
}
.only-page-index-service-highlight-description {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex-grow: 1;
}
.only-page-index-stats-section {
  padding: 30px 0;
  margin-bottom: 50px;
  background: linear-gradient(90deg, var(--dark-bg-2) 0%, rgba(17, 24, 39, 0.9) 100%);
  border-radius: 12px;
  border: 1px solid var(--dark-border);
  box-shadow: var(--shadow-md);
}
.only-page-index-stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}
.only-page-index-stat-item {
  text-align: center;
  padding: 0 20px;
}
.only-page-index-stat-icon {
  margin-bottom: 15px;
}
.only-page-index-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 5px;
}
.only-page-index-stat-label {
  color: var(--text-muted);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 1200px) {
  .only-page-index-services-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .only-page-index-banner-container {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .only-page-index-stats-container {
    flex-wrap: wrap;
  }
  .only-page-index-stat-item {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .only-page-index-banner-container {
    height: 200px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  .only-page-index-banner-bg {
    border-radius: 12px;
  }
  .only-page-index-services-highlight-grid {
    grid-template-columns: 1fr;
  }
  .only-page-index-stat-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .only-page-index-banner-container {
    height: 150px;
    border-radius: 12px;
  }
  .only-page-index-banner-bg {
    border-radius: 9px;
  }
}
@media (min-width: 1400px) {
  .only-page-index-banner-container {
    height: 450px;
    border-radius: 25px;
  }
  .only-page-index-banner-bg {
    border-radius: 22px;
  }
}

/*
  Only Page Signin And Register
  Only Page Signin And Register
  Only Page Signin And Register
  */
.only-page-signin-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.only-page-signin-wrapper {
  display: flex;
  max-width: 1000px;
  width: 100%;
  background: var(--dark-bg-3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-border);
  position: relative;
}
.only-page-signin-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  z-index: 1;
}
.only-page-signin-box {
  flex: 1;
  padding: 40px;
  position: relative;
}
.only-page-signin-header {
  text-align: center;
  margin-bottom: 30px;
}
.only-page-signin-title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--text-white) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  line-height: 1.6;
}
.only-page-signin-form {
  margin-bottom: 20px;
}
.only-page-signin-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.only-page-signin-footer {
  text-align: center;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 14px;
}
.only-page-signin-promotion {
  width: 40%;
  background: linear-gradient(135deg, rgba(24, 115, 253, 0.1) 0%, rgba(0, 234, 255, 0.1) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.only-page-signin-promotion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231873fd' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.only-page-signin-promotion-content {
  padding: 40px;
  position: relative;
  z-index: 1;
}
.only-page-signin-promotion-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-white);
  letter-spacing: 1px;
}
.only-page-signin-promotion-text {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.only-page-signin-promotion-features {
  margin-bottom: 30px;
}
.only-page-signin-feature-item {
  display: flex;
  margin-bottom: 20px;
}
.only-page-signin-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(24, 115, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 0 15px rgba(24, 115, 253, 0.2);
  flex-shrink: 0;
}
.only-page-signin-feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--text-white);
}
.only-page-signin-feature-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
.only-page-signin-promotion-discount {
  background: rgba(24, 115, 253, 0.1);
  border: 1px solid rgba(24, 115, 253, 0.2);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  margin-top: 20px;
  overflow: hidden;
}
.only-page-signin-promotion-discount::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 234, 255, 0.2) 0%, transparent 70%);
  z-index: 0;
}
.only-page-signin-discount-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--text-white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.only-page-signin-discount-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-white);
}
.only-page-signin-discount-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .only-page-signin-wrapper {
    flex-direction: column;
    max-width: 600px;
  }
  .only-page-signin-promotion {
    width: 100%;
    order: -1;
    padding: 30px 0;
  }
  .only-page-signin-promotion-content {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .only-page-signin-box {
    padding: 30px 20px;
  }
  .only-page-signin-promotion-content {
    padding: 20px 15px;
  }
}

/*
  Only Page Account
  Only Page Account
  Only Page Account
  */
.only-page-account-profile-header {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.only-page-account-profile-info-bar {
  display: flex;
  position: relative;
  z-index: 10;
}
.only-page-account-profile-avatar-container {
  margin-right: 30px;
}
.only-page-account-profile-avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
}
.only-page-account-profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
}
.only-page-account-edit-avatar-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}
.only-page-account-edit-avatar-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}
.only-page-account-profile-basic-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.only-page-account-user-info-group {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.only-page-account-profile-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.only-page-account-user-status {
  background: var(--primary);
  color: var(--text-white);
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
}
.only-page-account-profile-stats {
  display: flex;
  gap: 10px;
}
.only-page-account-profile-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 8px;
  min-width: 80px;
}
.only-page-account-profile-section {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.only-page-account-toggle-password {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.only-page-account-transaction-item {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid var(--dark-border);
}
.only-page-account-transaction-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.only-page-account-transaction-details {
  flex: 1;
}
.only-page-account-transaction-title {
  font-weight: 600;
  margin-bottom: 5px;
}
.only-page-account-transaction-date {
  font-size: 12px;
  color: var(--text-muted);
}
.only-page-account-transaction-amount {
  font-weight: 600;
  margin-right: 15px;
}
.only-page-account-transaction-status {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.only-page-account-transaction-status.success {
  background: rgba(46, 213, 115, 0.1);
  color: #2ed573;
}
.only-page-account-transaction-status.pending {
  background: rgba(255, 171, 0, 0.1);
  color: #ffab00;
}
.only-page-account-transaction-status.failed {
  background: rgba(255, 95, 64, 0.1);
  color: var(--secondary);
}
@media (max-width: 992px) {
  .only-page-account-profile-info-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .only-page-account-profile-avatar-container {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .only-page-account-user-info-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  .only-page-account-user-status {
    margin-left: 0;
    margin-top: 10px;
  }
  .only-page-account-profile-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .only-page-account-transaction-item {
    flex-wrap: wrap;
  }
  .only-page-account-transaction-amount, .only-page-account-transaction-status {
    margin-top: 10px;
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .only-page-account-profile-header {
    padding: 5px 5px;
  }
  .only-page-account-profile-stat-item {
    min-width: 70px;
    padding: 8px 10px;
  }
  .only-page-account-profile-section {
    padding: 15px;
  }
}

/*
  Only Page Promote
  Only Page Promote
  Only Page Promote
  */
.only-page-promotion-content {
  padding-top: 10px;
}
.only-page-promotion-post-item {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  background: var(--dark-bg-3);
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.only-page-promotion-post-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.1);
}
.only-page-promotion-promoted {
  border-left: 3px solid var(--secondary);
  background: linear-gradient(to right, rgba(255, 95, 64, 0.05), transparent);
}
.only-page-promotion-promoted-badge {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: white;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}
.only-page-promotion-post-content {
  flex: 1;
  min-width: 0;
}
.only-page-promotion-post-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.only-page-promotion-post-title a {
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.only-page-promotion-post-title a:hover {
  color: var(--primary);
}
.only-page-promotion-post-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.only-page-promotion-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  font-size: 12px;
}
.only-page-promotion-post-category {
  background: rgba(24, 115, 253, 0.1);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 500;
}
.only-page-promotion-post-author, .only-page-promotion-post-date {
  color: var(--text-muted);
}
.only-page-promotion-post-stats {
  display: flex;
  gap: 12px;
}
.only-page-promotion-views, .only-page-promotion-comments {
  color: var(--text-muted);
}
.only-page-promotion-post-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 15px;
}
.only-page-promotion-action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-muted);
}
.only-page-promotion-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}
.only-page-promotion-action-btn.favorite.filled {
  background: rgba(221, 25, 29, 0.1);
}
@media (max-width: 768px) {
  .only-page-promotion-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .only-page-promotion-post-actions {
    display: none;
  }
}

/*
  Only Page Promote Detail
  Only Page Promote Detail
  Only Page Promote Detail
  */
.only-page-promotion-detail-container {
  display: flex;
  gap: 20px;
}
.only-page-promotion-detail-header {
  margin-bottom: 25px;
  position: relative;
}
.only-page-promotion-detail-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
  line-height: 1.8;
}
.only-page-promotion-detail-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
}
.only-page-promotion-detail-status {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.only-page-promotion-detail-status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}
.only-page-promotion-detail-status-badge.online {
  color: #4caf50;
}
.only-page-promotion-detail-content {
  background: var(--dark-bg-3);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
  border: 1px solid var(--dark-border);
}
.only-page-promotion-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.only-page-promotion-detail-content img.align-left {
  float: left;
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.only-page-promotion-detail-content img.align-right {
  float: right;
  margin-left: 1em;
  margin-bottom: 0.5em;
}
.only-page-promotion-detail-content img.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.only-page-promotion-detail-content hr {
  border: none;
  border-top: 1px solid #1c2c45;
  height: 1px;
  margin: 0.6em 0;
}
.only-page-promotion-detail-content img.rte-emoji {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0 2px;
}
.only-page-promotion-detail-content ul,
.only-page-promotion-detail-content ol {
  padding-left: 2em;
  margin-top: 0.4em;
  margin-bottom: 0.6em;
}
.only-page-promotion-detail-content li {
  margin-bottom: 0.6em;
  padding-left: 0.4em;
}
.only-page-promotion-detail-content li::marker {
  color: #94A3B8;
  font-weight: bold;
}
.only-page-promotion-detail-content ul ul,
.only-page-promotion-detail-content ol ol,
.only-page-promotion-detail-content ul ol,
.only-page-promotion-detail-content ol ul {
  margin-top: 0.5em;
  margin-bottom: 0;
}
.only-page-promotion-detail-content a {
  color: #3B82F6;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.only-page-promotion-detail-content a:hover {
  color: #60A5FA;
  text-decoration: none;
}
.only-page-promotion-detail-content div.rte-video-wrapper {
  margin: 1em auto;
}
.only-page-promotion-detail-content div.rte-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.only-page-promotion-detail-content div.rte-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.only-page-promotion-detail-category {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.only-page-promotion-detail-category-title {
  font-size: 14px;
  color: var(--text-muted);
  margin-right: 5px;
}
.only-page-promotion-detail-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.only-page-promotion-detail-category-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.only-page-promotion-detail-category-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}
.only-page-promotion-detail-author {
  display: flex;
  gap: 20px;
  background: var(--dark-bg-3);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid var(--dark-border);
  align-items: center;
}
.only-page-promotion-detail-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.only-page-promotion-detail-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.only-page-promotion-detail-author-info {
  flex: 1;
}
.only-page-promotion-detail-author-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}
.only-page-promotion-detail-author-status {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.only-page-promotion-detail-author-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}
.only-page-promotion-detail-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.only-page-promotion-detail-stat-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.only-page-promotion-detail-stat-label {
  font-size: 12px;
  color: var(--text-muted);
}
.only-page-promotion-detail-author-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.only-page-promotion-detail-action-button {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-light);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 120px;
  text-align: center;
}
.only-page-promotion-detail-action-button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.only-page-promotion-detail-action-button.blue-btn {
  background: var(--primary);
  color: var(--text-white);
}
.only-page-promotion-detail-action-button.blue-btn:hover {
  background: var(--primary-dark);
}
.only-page-promotion-detail-comments-section {
  background: var(--dark-bg-3);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid var(--dark-border);
}
.only-page-promotion-detail-comment-form-container {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.only-page-promotion-detail-comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-shrink: 0;
}
.only-page-promotion-detail-comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.only-page-promotion-detail-comment-form {
  flex: 1;
}
.only-page-promotion-detail-comment-form textarea {
  width: 100%;
  min-height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 15px;
  color: var(--text-white);
  font-size: 14px;
  resize: vertical;
  margin-bottom: 10px;
}
.only-page-promotion-detail-comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.only-page-promotion-detail-comment-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.only-page-promotion-detail-comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.only-page-promotion-detail-comment-item {
  display: flex;
  gap: 15px;
}
.only-page-promotion-detail-comment-item.reply {
  margin-bottom: 0;
}
.only-page-promotion-detail-comment-body {
  flex: 1;
  min-width: 0;
}
.only-page-promotion-detail-comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.only-page-promotion-detail-comment-author {
  font-size: 14px;
  color: var(--text-white);
}
.only-page-promotion-detail-comment-author.admin {
  color: var(--primary);
  position: relative;
  padding-left: 20px;
}
.only-page-promotion-detail-comment-author.admin::before {
  content: '⭐';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
.only-page-promotion-detail-comment-meta {
  font-size: 12px;
  color: var(--text-muted);
}
.only-page-promotion-detail-comment-content {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.only-page-promotion-detail-comment-content p {
  margin: 0;
}
.only-page-promotion-detail-comment-like-btn, .only-page-promotion-detail-comment-delete-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}
.only-page-promotion-detail-comment-like-btn:hover, .only-page-promotion-detail-comment-delete-btn:hover {
  color: var(--primary);
}
.only-page-promotion-detail-comment-replies {
  margin-top: 15px;
  margin-left: 10px;
  padding-left: 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}
.only-page-promotion-detail-view-more-comments {
  text-align: center;
  margin-top: 20px;
}
.only-page-promotion-detail-action-box {
  background: var(--dark-bg-3);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  border: 1px solid var(--dark-border);
}
.only-page-promotion-detail-action-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 6px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.only-page-promotion-detail-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.only-page-promotion-detail-action-btn.favorite:hover {
  background: rgba(255, 0, 0, 0.1);
}
.only-page-promotion-detail-action-btn.favorite.active {
  background: rgba(255, 0, 0, 0.1);
}
.only-page-promotion-detail-action-btn.report:hover {
  background: rgba(255, 215, 0, 0.1);
}
.only-page-promotion-detail-action-btn-icon {
  margin-bottom: 0px;
}
.only-page-promotion-detail-action-btn-text {
  font-size: 12px;
  color: var(--text-muted);
}
.only-page-promotion-detail-related-posts-box {
  background: var(--dark-bg-3);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}
.only-page-promotion-detail-related-header {
  padding: 15px;
  border-bottom: 1px solid var(--dark-border);
}
.only-page-promotion-detail-related-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
}
.only-page-promotion-detail-related-list {
  padding: 10px 0;
}
.only-page-promotion-detail-related-item {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.only-page-promotion-detail-related-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.only-page-promotion-detail-related-title {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 5px;
}
.only-page-promotion-detail-related-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.only-page-promotion-detail-related-footer {
  padding: 12px 15px;
  border-top: 1px solid var(--dark-border);
  text-align: center;
}
.only-page-promotion-detail-author-posts-box {
  background: var(--dark-bg-3);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}
.only-page-promotion-detail-author-posts-header {
  padding: 15px;
  border-bottom: 1px solid var(--dark-border);
}
.only-page-promotion-detail-author-posts-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
}
.only-page-promotion-detail-author-posts-list {
  padding: 10px 0;
}
.only-page-promotion-detail-author-post-item {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.only-page-promotion-detail-author-post-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.only-page-promotion-detail-author-post-title {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 5px;
}
.only-page-promotion-detail-author-post-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.only-page-promotion-detail-author-post-category {
  background: rgba(24, 115, 253, 0.1);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}
.only-page-promotion-detail-author-posts-footer {
  padding: 12px 15px;
  border-top: 1px solid var(--dark-border);
  text-align: center;
}
.only-page-promotion-detail-recommendations-section {
  margin-top: 4px;
}
.only-page-promotion-detail-recommendations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.only-page-promotion-detail-recommendation-card {
  background: var(--dark-bg-3);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.only-page-promotion-detail-recommendation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.1);
}
.only-page-promotion-detail-recommendation-category {
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 10px;
  background: rgba(24, 115, 253, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
}
.only-page-promotion-detail-recommendation-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 15px;
  flex: 1;
}
.only-page-promotion-detail-recommendation-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
@media (max-width: 1200px) {
  .only-page-promotion-detail-recommendations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .only-page-promotion-detail-recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .only-page-promotion-detail-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .only-page-promotion-detail-author-stats {
    justify-content: center;
  }
  .only-page-promotion-detail-author-actions {
    flex-direction: row;
    margin-top: 15px;
  }
}
@media (max-width: 576px) {
  .only-page-promotion-detail-title {
    font-size: 24px;
  }
  .only-page-promotion-detail-meta {
    flex-direction: column;
    gap: 8px;
  }
  .only-page-promotion-detail-content {
    padding: 20px 15px;
  }
  .only-page-promotion-detail-share-buttons {
    flex-wrap: wrap;
  }
  .only-page-promotion-detail-comment-avatar {
    width: 40px;
    height: 40px;
  }
  .only-page-promotion-detail-comment-item {
    flex-direction: column;
  }
  .only-page-promotion-detail-comment-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .only-page-promotion-detail-action-box {
    padding: 10px;
  }
  .action-btn {
    padding: 8px;
  }
  .only-page-promotion-detail-recommendations-grid {
    grid-template-columns: 1fr;
  }
}

/*
  Only Page Marketplace
  Only Page Marketplace
  Only Page Marketplace
  */
.only-page-marketplace-content {
  padding-top: 10px;
}
.only-page-marketplace-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.only-page-marketplace-product-card {
  background: var(--dark-panel);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid var(--dark-border);
  position: relative;
}
.only-page-marketplace-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.only-page-marketplace-product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 4;
}
.only-page-marketplace-product-badge.new {
  background-color: var(--primary);
  color: var(--text-white);
}
.only-page-marketplace-product-badge.bestseller {
  background-color: #ff9900;
  color: var(--text-white);
}
.only-page-marketplace-product-badge.discount {
  background-color: #ff5f40;
  color: var(--text-white);
}
.only-page-marketplace-product-badge.premium {
  background-color: #9c27b0;
  color: var(--text-white);
}
.only-page-marketplace-product-badge.limited {
  background-color: #e91e63;
  color: var(--text-white);
}
.only-page-marketplace-product-image {
  width: 100%;
  height: 120px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1c2c45 0%, #151d2e 100%);
}
.only-page-marketplace-product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(17,24,39, 0.6), transparent);
  animation: skeleton-loading 1.5s infinite;
  z-index: 2;
}
.only-page-marketplace-product-image::after {
  content: 'กำลังโหลด...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: var(--text-white);
  opacity: 0.4;
  z-index: 1;
}
.only-page-marketplace-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 3;
  position: relative;
}
.only-page-marketplace-product-image img.loaded {
  opacity: 1;
}
.only-page-marketplace-product-image.loaded::before,
.only-page-marketplace-product-image.loaded::after {
  display: none;
}
.only-page-marketplace-product-card:hover .only-page-marketplace-product-image img {
  transform: scale(1.05);
}
.only-page-marketplace-product-image.error {
  background: linear-gradient(135deg, #1c2c45 0%, #151d2e 100%);
}
.only-page-marketplace-product-image.error::before {
  display: none;
}
.only-page-marketplace-product-image.error::after {
  content: 'ไม่พบรูปภาพ';
  font-size: 16px;
}
.only-page-marketplace-product-info {
  padding: 12px;
}
.only-page-marketplace-product-game {
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
}
.only-page-marketplace-product-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 10px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  height: 36px;
}
.only-page-marketplace-product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.only-page-marketplace-product-price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  margin-right: 8px;
}
.only-page-marketplace-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.only-page-marketplace-product-seller {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  max-width: 65%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.only-page-marketplace-product-seller-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
}
.only-page-marketplace-product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-light);
}
.only-page-marketplace-product-rating-star {
  color: #FFD700;
}
@media (max-width: 1700px) {
  .only-page-marketplace-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1400px) {
  .only-page-marketplace-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .only-page-marketplace-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .only-page-marketplace-products-grid {
    grid-template-columns: 1fr;
  }
}
@keyframes skeleton-loading {
  0% { left: -100%; }
  100% { left: 100%; }
}

/*
  Only Page Marketplace Detail
  Only Page Marketplace Detail
  Only Page Marketplace Detail
  */
.only-page-marketplace-detail-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.only-page-marketplace-detail-product-gallery {
  width: 100%;
}
.only-page-marketplace-detail-product-gallery-main {
  position: relative;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  background: var(--dark-panel);
}
.only-page-marketplace-detail-product-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}
.only-page-marketplace-detail-product-gallery-zoom-icon {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.only-page-marketplace-detail-product-gallery-zoom-icon:hover {
  background: var(--primary);
}
.only-page-marketplace-detail-product-gallery-thumbnails {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 5px;
  -ms-overflow-style: none;
  scrollbar-width: thin;
}
.only-page-marketplace-detail-product-gallery-thumbnails::-webkit-scrollbar {
  height: 5px;
}
.only-page-marketplace-detail-product-gallery-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.only-page-marketplace-detail-product-gallery-thumbnails::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}
.only-page-marketplace-detail-product-gallery-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.only-page-marketplace-detail-product-gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.only-page-marketplace-detail-product-gallery-thumbnail:hover {
  border-color: var(--primary-light);
}
.only-page-marketplace-detail-product-gallery-thumbnail.active {
  border-color: var(--primary);
}
.only-page-marketplace-detail-product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.only-page-marketplace-detail-product-header {
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 14px;
}
.only-page-marketplace-detail-product-category {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.only-page-marketplace-detail-product-category-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.only-page-marketplace-detail-product-category-tag.blue {
  background-color: rgba(24, 115, 253, 0.2);
  color: var(--primary);
}
.only-page-marketplace-detail-product-title {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.8;
}
.only-page-marketplace-detail-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.only-page-marketplace-detail-product-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--dark-panel);
  border-radius: 8px;
  border: 1px solid var(--dark-border);
}
.only-page-marketplace-detail-product-price-section {
  display: flex;
  flex-direction: column;
}
.only-page-marketplace-detail-product-current-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}
.only-page-marketplace-detail-product-price-details {
  display: flex;
  align-items: center;
  gap: 10px;
}
.only-page-marketplace-detail-product-original-price {
  font-size: 14px;
  color: var(--text-muted);
}
.only-page-marketplace-detail-product-strikethrough {
  text-decoration: line-through;
}
.only-page-marketplace-detail-product-discount-badge {
  background-color: var(--secondary);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}
.only-page-marketplace-detail-product-stock-info {
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.only-page-marketplace-detail-product-stock-info.in-stock {
  background-color: rgba(39, 174, 96, 0.2);
  color: #27AE60;
}
.only-page-marketplace-detail-product-stock-info.low-stock {
  background-color: rgba(243, 156, 18, 0.2);
  color: #F39C12;
}
.only-page-marketplace-detail-product-stock-info.out-of-stock {
  background-color: rgba(231, 76, 60, 0.2);
  color: #E74C3C;
}
.only-page-marketplace-detail-seller-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: var(--dark-panel);
  border-radius: 8px;
  border: 1px solid var(--dark-border);
}
.only-page-marketplace-detail-seller-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.only-page-marketplace-detail-seller-avatar {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.only-page-marketplace-detail-seller-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.only-page-marketplace-detail-seller-details {
  display: flex;
  flex-direction: column;
}
.only-page-marketplace-detail-seller-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.only-page-marketplace-detail-seller-badge {
  background-color: var(--primary);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}
.only-page-marketplace-detail-seller-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.only-page-marketplace-detail-rating-stars {
  display: flex;
  gap: 2px;
}
.only-page-marketplace-detail-star {
  color: #7F8C8D;
  font-size: 14px;
}
.only-page-marketplace-detail-star.filled {
  color: #F1C40F;
}
.only-page-marketplace-detail-star.half {
  position: relative;
  color: #7F8C8D;
}
.only-page-marketplace-detail-star.half::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #F1C40F;
}
.only-page-marketplace-detail-rating-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}
.only-page-marketplace-detail-rating-count {
  font-size: 14px;
  color: var(--text-muted);
}
.only-page-marketplace-detail-trust-badges {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: var(--dark-panel);
  border-radius: 8px;
  border: 1px solid var(--dark-border);
}
.only-page-marketplace-detail-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.only-page-marketplace-detail-badge-text {
  font-size: 12px;
  margin-top: 6px;
  color: var(--text-light);
}
.only-page-marketplace-detail-contact-seller {
  display: flex;
  gap: 10px;
}
.only-page-marketplace-detail-contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.only-page-marketplace-detail-contact-button.chat {
  background-color: rgba(39, 174, 96, 0.1);
  color: #27AE60;
  border: 1px solid rgba(39, 174, 96, 0.3);
}
.only-page-marketplace-detail-contact-button.chat:hover {
  background-color: rgba(39, 174, 96, 0.2);
}
.only-page-marketplace-detail-contact-button.call {
  background-color: rgba(52, 152, 219, 0.1);
  color: #3498DB;
  border: 1px solid rgba(52, 152, 219, 0.3);
}
.only-page-marketplace-detail-contact-button.call:hover {
  background-color: rgba(52, 152, 219, 0.2);
}
.only-page-marketplace-detail-product-tabs {
  margin-bottom: 0px;
}
.only-page-marketplace-detail-tabs-header {
  display: flex;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 20px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.only-page-marketplace-detail-tabs-header::-webkit-scrollbar {
  display: none;
}
.only-page-marketplace-detail-tab-button {
  padding: 10px 20px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.only-page-marketplace-detail-tab-button:hover {
  color: var(--text-white);
}
.only-page-marketplace-detail-tab-button.active {
  color: var(--primary);
}
.only-page-marketplace-detail-tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.only-page-marketplace-detail-tabs-content {
  padding: 0 10px;
}
.only-page-marketplace-detail-tab-pane {
  display: none;
}
.only-page-marketplace-detail-tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}
.only-page-marketplace-detail-description-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.only-page-marketplace-detail-description-content img.align-left {
  float: left;
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.only-page-marketplace-detail-description-content img.align-right {
  float: right;
  margin-left: 1em;
  margin-bottom: 0.5em;
}
.only-page-marketplace-detail-description-content img.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.only-page-marketplace-detail-description-content hr {
  border: none;
  border-top: 1px solid #1c2c45;
  height: 1px;
  margin: 0.6em 0;
}
.only-page-marketplace-detail-description-content img.rte-emoji {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0 2px;
}
.only-page-marketplace-detail-description-content ul,
.only-page-marketplace-detail-description-content ol {
  padding-left: 2em;
  margin-top: 0.4em;
  margin-bottom: 0.6em;
}
.only-page-marketplace-detail-description-content li {
  margin-bottom: 0.6em;
  padding-left: 0.4em;
}
.only-page-marketplace-detail-description-content li::marker {
  color: #94A3B8;
  font-weight: bold;
}
.only-page-marketplace-detail-description-content ul ul,
.only-page-marketplace-detail-description-content ol ol,
.only-page-marketplace-detail-description-content ul ol,
.only-page-marketplace-detail-description-content ol ul {
  margin-top: 0.5em;
  margin-bottom: 0;
}
.only-page-marketplace-detail-description-content a {
  color: #3B82F6;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.only-page-marketplace-detail-description-content a:hover {
  color: #60A5FA;
  text-decoration: none;
}
.only-page-marketplace-detail-description-content div.rte-video-wrapper {
  margin: 1em auto;
}
.only-page-marketplace-detail-description-content div.rte-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.only-page-marketplace-detail-description-content div.rte-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 576px) {
  .only-page-marketplace-detail-trust-badges {
    flex-direction: column;
  }
  .only-page-marketplace-detail-trust-badge {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }
  .only-page-marketplace-detail-badge-text {
    margin-top: 0px;
  }
  .only-page-marketplace-detail-contact-seller {
    flex-direction: column;
  }
}


              /* .product-title {

                  font-size: 13px;

                  font-weight: 600;

                  color: var(--text-white);

                  margin: 0 0 10px;

                  line-height: 1.4;

                  display: -webkit-box;

                  -webkit-line-clamp: 2;

                  -webkit-box-orient: vertical;

                  overflow: hidden;

                  height: 36px;

              } */

              /* .product-meta {

                  display: flex;

                  justify-content: space-between;

                  align-items: center;

                  font-size: 11px;

              } */
@media (max-width: 1200px) {
  .only-page-marketplace-detail-product-detail {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .only-page-marketplace-detail-product-gallery-main {
    height: auto;
  }
}

/*
  Only Page Shop
  Only Page Shop
  Only Page Shop
  */
.only-page-shop-categories {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background-color: var(--dark-bg-2);
  border-radius: 8px;
  padding: 10px 20px;
  border: 1px solid var(--dark-border);
}
.only-page-shop-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.only-page-shop-category-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.only-page-shop-category-tab:hover {
  color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.05);
}
.only-page-shop-category-tab.active {
  color: var(--text-white);
  background-color: var(--primary);
}
.only-page-shop-section {
  margin-bottom: 40px;
}
.only-page-shop-section-end {
  margin-bottom: 0px;
}
.only-page-shop-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dark-border);
}
.only-page-shop-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.only-page-shop-item {
  background-color: var(--dark-bg-3);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.only-page-shop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}
.only-page-shop-item-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  z-index: 1;
  text-transform: uppercase;
}
.only-page-shop-item-badge.new {
  background-color: var(--primary);
  color: var(--text-white);
}
.only-page-shop-item-badge.bestseller {
  background-color: #ff9900;
  color: var(--text-white);
}
.only-page-shop-item-badge.discount {
  background-color: #ff5f40;
  color: var(--text-white);
}
.only-page-shop-item-badge.premium {
  background-color: #9c27b0;
  color: var(--text-white);
}
.only-page-shop-item-badge.limited {
  background-color: #e91e63;
  color: var(--text-white);
}
.only-page-shop-item-image {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
}
.only-page-shop-item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.only-page-shop-item-info {
  flex: 1;
  margin-bottom: 15px;
}
.only-page-shop-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 10px;
}
.only-page-shop-item-price {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.only-page-shop-price-old {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 5px;
}
.only-page-shop-price-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.only-page-shop-price-currency {
  font-size: 14px;
  color: var(--text-light);
}
@media (max-width: 1200px) {
  .only-page-shop-items-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .only-page-shop-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .only-page-shop-categories {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .only-page-shop-category-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 5px;
  }
}
@media (max-width: 576px) {
  .only-page-shop-items-grid {
    grid-template-columns: 1fr;
  }
}

/*
  Only Page Topup
  Only Page Topup
  Only Page Topup
  */
.only-page-topup-section {
  margin-bottom: 30px;
}
.only-page-topup-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.only-page-topup-package-card {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.only-page-topup-package-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.only-page-topup-package-card.selected {
  border-color: var(--primary);
  background: rgba(24, 115, 253, 0.1);
  box-shadow: 0 0 15px rgba(24, 115, 253, 0.2);
}
.only-page-topup-package-card.popular {
  border-color: var(--accent);
}
.only-page-topup-package-popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: var(--dark-bg-3);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 0 8px 0 8px;
}
.only-page-topup-package-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 5px;
}
.only-page-topup-package-points {
  font-size: 18px;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 15px;
}
.only-page-topup-package-tag {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin: 0 auto;
  width: fit-content;
  color: var(--text-muted);
}
.only-page-topup-payment-section {
  margin-bottom: 30px;
}
.only-page-topup-payment-methods {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.only-page-topup-payment-tabs {
  display: flex;
  border-bottom: 1px solid var(--dark-border);
}
.only-page-topup-payment-tab {
  flex: 1;
  text-align: center;
  padding: 15px;
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.only-page-topup-payment-tab:hover {
  background: rgba(255, 255, 255, 0.05);
}
.only-page-topup-payment-tab.active {
  background: var(--primary);
  color: var(--text-white);
}
.only-page-topup-payment-content {
  padding: 20px;
  display: none;
}
.only-page-topup-payment-content.active {
  display: block;
  animation: only-page-topup-fadeIn 0.3s ease forwards;
}
@keyframes only-page-topup-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.only-page-topup-bank-accounts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.only-page-topup-bank-account {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  gap: 15px;
}
.only-page-topup-bank-logo {
  width: 80px;
  height: 30px;
  overflow: hidden;
  border-radius: 4px;
}
.only-page-topup-bank-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.only-page-topup-bank-details {
  flex: 1;
}
.only-page-topup-bank-name {
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 3px;
}
.only-page-topup-account-number {
  font-size: 18px;
  color: var(--primary-light);
  margin-bottom: 3px;
  letter-spacing: 2px;
}
.only-page-topup-account-name {
  font-size: 13px;
  color: var(--text-muted);
}
.only-page-topup-copy-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-light);
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
}
.only-page-topup-copy-btn:hover {
  background: var(--primary);
  color: var(--text-white);
}
.only-page-topup-copy-btn.copied {
  background: var(--accent);
  color: var(--dark-bg-3);
}
.only-page-topup-qr-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.only-page-topup-qr-code {
  padding: 15px;
  background: white;
  border-radius: 8px;
  width: 230px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.only-page-topup-qr-code img {
  width: 200px;
  height: 200px;
}
.only-page-topup-qr-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.only-page-topup-qr-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
}
.only-page-topup-promptpay-id, .only-page-topup-truemoney-id {
  font-size: 20px;
  color: var(--primary-light);
  letter-spacing: 2px;
}
.only-page-topup-form-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
}
.only-page-topup-form {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
}
.only-page-topup-form-notice {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 20px;
}
.only-page-topup-notice-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.only-page-topup-notice-list {
  padding-left: 20px;
}
.only-page-topup-notice-list li {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .only-page-topup-package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .only-page-topup-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .only-page-topup-form-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .only-page-topup-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .only-page-topup-package-grid {
    grid-template-columns: 1fr;
  }
  .only-page-topup-payment-tabs {
    flex-direction: column;
  }
  .only-page-topup-payment-tab {
    border-bottom: 1px solid var(--dark-border);
  }
  .only-page-topup-payment-tab:last-child {
    border-bottom: none;
  }
  .only-page-topup-qr-payment {
    flex-direction: column;
    align-items: center;
  }
}

/*
  Only Page Help
  Only Page Help
  Only Page Help
  */
.only-page-help-hero-section {
  background: linear-gradient(90deg, var(--dark-bg-2) 0%, rgba(17, 24, 39, 0.9) 100%);
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 50px 40px;
  text-align: center;
  border: 1px solid var(--dark-border);
  box-shadow: var(--shadow-md);
}
.only-page-help-title {
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.only-page-help-description {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
}
.only-page-help-search-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 5px 5px 5px 25px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.only-page-help-search-container:focus-within {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(24, 115, 253, 0.3);
}
.only-page-help-search-container input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-white);
  padding: 15px 0;
  font-size: 16px;
  outline: none;
}
.only-page-help-search-container input::placeholder {
  color: var(--text-muted);
}
.only-page-help-search-button {
  background: var(--primary);
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.only-page-help-search-button:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 10px rgba(24, 115, 253, 0.5);
}
.only-page-help-container {
  display: flex;
  gap: 20px;
}
.only-page-help-categories {
  width: 280px;
  flex-shrink: 0;
  background: var(--dark-panel);
  border-radius: 8px;
  border: 1px solid var(--dark-border);
  padding: 20px;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.only-page-help-categories-title {
  font-size: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--dark-border);
}
.only-page-help-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.only-page-help-category-item {
  margin-bottom: 10px;
  padding: 12px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}
.only-page-help-category-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}
.only-page-help-category-item.active {
  background-color: rgba(24, 115, 253, 0.15);
  color: var(--text-white);
  border-left: 3px solid var(--primary);
}
.only-page-help-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.only-page-help-contact-support {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(24, 115, 253, 0.1) 0%, rgba(0, 234, 255, 0.1) 100%);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(24, 115, 253, 0.2);
  text-align: center;
}
.only-page-help-contact-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.only-page-help-contact-text {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}
.only-page-help-help-content {
  flex: 1;
  min-width: 0;
}
.only-page-help-content-category {
  display: none;
  animation: only-page-help-fadeIn 0.5s ease forwards;
}
.only-page-help-content-category.active {
  display: block;
}
.only-page-help-content-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.only-page-help-content-title::before {
  content: '';
  display: block;
  width: 5px;
  height: 24px;
  background: var(--primary);
  border-radius: 3px;
}
.only-page-help-faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.only-page-help-faq-item {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
}
.only-page-help-faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.only-page-help-faq-question h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.only-page-help-faq-toggle {
  font-size: 20px;
  color: var(--primary);
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.only-page-help-faq-item.active .only-page-help-faq-toggle {
  transform: rotate(45deg);
}
.only-page-help-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.only-page-help-faq-item.active .only-page-help-faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}
.only-page-help-faq-answer-detail {
  color: var(--text-light);
  margin-top: 0;
}
.only-page-help-faq-answer-detail img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.only-page-help-faq-answer-detail img.align-left {
  float: left;
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.only-page-help-faq-answer-detail img.align-right {
  float: right;
  margin-left: 1em;
  margin-bottom: 0.5em;
}
.only-page-help-faq-answer-detail img.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.only-page-help-faq-answer-detail hr {
  border: none;
  border-top: 1px solid #1c2c45;
  height: 1px;
  margin: 0.6em 0;
}
.only-page-help-faq-answer-detail img.rte-emoji {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0 2px;
}
.only-page-help-faq-answer-detail ul,
.only-page-help-faq-answer-detail ol {
  padding-left: 2em;
  margin-top: 0.4em;
  margin-bottom: 0.6em;
}
.only-page-help-faq-answer-detail li {
  margin-bottom: 0.6em;
  padding-left: 0.4em;
}
.only-page-help-faq-answer-detail li::marker {
  color: #94A3B8;
  font-weight: bold;
}
.only-page-help-faq-answer-detail ul ul,
.only-page-help-faq-answer-detail ol ol,
.only-page-help-faq-answer-detail ul ol,
.only-page-help-faq-answer-detail ol ul {
  margin-top: 0.5em;
  margin-bottom: 0;
}
.only-page-help-faq-answer-detail a {
  color: #3B82F6;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.only-page-help-faq-answer-detail a:hover {
  color: #60A5FA;
  text-decoration: none;
}
.only-page-help-faq-answer-detail div.rte-video-wrapper {
  margin: 1em auto;
}
.only-page-help-faq-answer-detail div.rte-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.only-page-help-faq-answer-detail div.rte-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.only-page-help-content-category2 {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 2px;
}
.only-page-help-content-category2-tab {
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.only-page-help-content-category2-tab:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}
.only-page-help-content-category2-tab.active {
  background-color: var(--primary);
  color: var(--text-white);
}
.only-page-help-content-category2-detail {
  display: none;
  animation: only-page-help-fadeIn 0.5s ease forwards;
}
.only-page-help-content-category2-detail.active {
  display: block;
}
.only-page-help-content-category2-detail-section {
  color: var(--text-light);
}
.only-page-help-content-category2-detail-section img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.only-page-help-content-category2-detail-section img.align-left {
  float: left;
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.only-page-help-content-category2-detail-section img.align-right {
  float: right;
  margin-left: 1em;
  margin-bottom: 0.5em;
}
.only-page-help-content-category2-detail-section img.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.only-page-help-content-category2-detail-section hr {
  border: none;
  border-top: 1px solid #1c2c45;
  height: 1px;
  margin: 0.6em 0;
}
.only-page-help-content-category2-detail-section img.rte-emoji {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0 2px;
}
.only-page-help-content-category2-detail-section ul,
.only-page-help-content-category2-detail-section ol {
  padding-left: 2em;
  margin-top: 0.4em;
  margin-bottom: 0.6em;
}
.only-page-help-content-category2-detail-section li {
  margin-bottom: 0.6em;
  padding-left: 0.4em;
}
.only-page-help-content-category2-detail-section li::marker {
  color: #94A3B8;
  font-weight: bold;
}
.only-page-help-content-category2-detail-section ul ul,
.only-page-help-content-category2-detail-section ol ol,
.only-page-help-content-category2-detail-section ul ol,
.only-page-help-content-category2-detail-section ol ul {
  margin-top: 0.5em;
  margin-bottom: 0;
}
.only-page-help-content-category2-detail-section a {
  color: #3B82F6;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.only-page-help-content-category2-detail-section a:hover {
  color: #60A5FA;
  text-decoration: none;
}
.only-page-help-content-category2-detail-section div.rte-video-wrapper {
  margin: 1em auto;
}
.only-page-help-content-category2-detail-section div.rte-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.only-page-help-content-category2-detail-section div.rte-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 1200px) {
  .only-page-help-container {
    gap: 10px;
  }
  .only-page-help-categories {
    width: 240px;
  }
}
@media (max-width: 992px) {
  .only-page-help-container {
    flex-direction: column;
  }
  .only-page-help-categories {
    width: 100%;
    position: static;
    margin-bottom: 20px;
  }
  .only-page-help-category-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .only-page-help-hero-section {
    padding: 30px 20px;
  }
  .only-page-help-title {
    font-size: 28px;
  }
  .only-page-help-search-container {
    flex-direction: column;
    padding: 5px;
    gap: 5px;
  }
  .only-page-help-search-container input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .only-page-help-search-button {
    width: 100%;
  }
  .only-page-help-content-category2 {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
  }
  .only-page-help-content-category2-tab {
    padding: 10px 15px;
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .only-page-help-hero-section {
    padding: 20px 15px;
  }
  .only-page-help-title {
    font-size: 24px;
  }
  .only-page-help-description {
    font-size: 14px;
  }
  .only-page-help-category-item {
    min-width: 100%;
  }
  .only-page-help-content-title {
    font-size: 20px;
  }
  .only-page-help-faq-question h4 {
    font-size: 14px;
  }
}
@keyframes only-page-help-fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
  Only Page Report
  Only Page Report
  Only Page Report
  */
.only-page-report-section {
  padding-top: 10px;
}
.only-page-report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.only-page-report-info {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.only-page-report-info:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(24, 115, 253, 0.3);
}
.only-page-report-info-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.only-page-report-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(24, 115, 253, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.only-page-report-info-title {
  font-size: 20px;
  margin: 0;
}
.only-page-report-info-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.only-page-report-info-method {
  display: flex;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.only-page-report-info-method:hover {
  background: rgba(24, 115, 253, 0.05);
}
.only-page-report-info-method-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(24, 115, 253, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.only-page-report-info-method-details {
  flex: 1;
}
.only-page-report-info-method-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.only-page-report-info-method-value {
  font-size: 16px;
}
.only-page-report-info-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}
.only-page-report-info-social-link {
  text-decoration: none;
}
.only-page-report-info-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.only-page-report-info-social-icon:hover {
  transform: translateY(-3px);
}
.only-page-report-form {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.3s ease;
}
.only-page-report-form:hover {
  box-shadow: var(--shadow-md);
}
.only-page-report-form-header {
  margin-bottom: 25px;
}
.only-page-report-form-title {
  font-size: 22px;
  margin-bottom: 6px;
}
.only-page-report-form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}
@media (max-width: 992px) {
  .only-page-report-grid {
    grid-template-columns: 1fr;
  }
}

/*
  Only Page Error
  Only Page Error
  Only Page Error
  */
.only-page-error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto;
}
.only-page-error-code {
  position: relative;
  font-size: 180px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--glow-blue);
}
.only-page-error-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--text-white);
}
.only-page-error-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 600px;
}
@media (max-width: 768px) {
  .only-page-error-title {
    font-size: 28px;
  }
  .only-page-error-description {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .only-page-error-title {
    font-size: 24px;
  }
  .only-page-error-description {
    font-size: 14px;
  }
}

/*
  Only Page Maintenance
  Only Page Maintenance
  Only Page Maintenance
  */
.only-page-maintenance-container {
  padding: 80px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.only-page-maintenance-title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}
.only-page-maintenance-subtitle {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.only-page-maintenance-message {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.only-page-maintenance-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 0px;
}
.only-page-maintenance-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.only-page-maintenance-social-link:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .only-page-maintenance-title {
    font-size: 40px;
  }
  .only-page-maintenance-subtitle {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .only-page-maintenance-container {
    padding: 40px 15px;
  }
  .only-page-maintenance-title {
    font-size: 32px;
  }
  .only-page-maintenance-subtitle {
    font-size: 18px;
  }
}