/* ================================================================
   MAX ARMY CHEATS – Complete Styles
   ================================================================ */

/* ─── RESET & BASE ─── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: #0b0c0e;
  color: #93969f;
  font-size: 13px;
  line-height: 1.5;
}

a {
  color: #c2c5d1;
  text-decoration: none;
}
a:hover {
  color: #E50914;
}

/* ─── TOP BAR ─── */
.top-bar,
.top-header {
  background: #111216;
  border-bottom: 1px solid #1a1c22;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo,
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text,
.logo-text {
  color: #ffffff;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.5px;
}
.brand-text span,
.logo-text span {
  color: #DC143C;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.btn-discord {
  background: #5865f2;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}

/* ─── NAVIGATION ─── */
.nav-bar {
  background: #14161c;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1e2028;
}

.nav-items,
.nav-links {
  display: flex;
  list-style: none;
}

.nav-items li a,
.nav-links li a {
  display: block;
  padding: 14px 16px;
  color: #8c909d;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.nav-items li a:hover,
.nav-items li a.active,
.nav-links li a:hover,
.nav-links li a.active {
  color: #E50914;
  border-bottom-color: #E50914;
  background: rgba(229, 9, 20, 0.05);
}

/* ─── HERO ─── */
.hero-banner {
  background: linear-gradient(180deg, #161820 0%, #0b0c0e 100%);
  padding: 50px 40px;
  border-bottom: 1px solid #1a1c22;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 32px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
}
.hero-title span {
  color: #DC143C;
}

.hero-image-wrapper {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  mask-image: linear-gradient(to right, transparent 0%, black 45%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 45%);
}

/* ─── BREADCRUMB ─── */
.breadcrumb-bar {
  background: #111318;
  border: 1px solid #1c1e26;
  padding: 10px 15px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #5d616f;
  font-size: 12px;
  margin-bottom: 20px;
}

/* ─── ONLINE CAPSULE ─── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

#onlineCapsule {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #D4AF37;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
#onlineCapsule:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.02);
}

/* ─── MAIN LAYOUT ─── */
.content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
}

.content-container:has(.sidebar-widget) {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 25px;
}

/* ─── HOMEPAGE ─── */
.text-block-card {
  background: #111318;
  border: 1px solid #1c1e26;
  border-radius: 4px;
  padding: 25px;
}

.main-heading {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid #1e2029;
  margin-bottom: 20px;
}

.content-section {
  margin-bottom: 25px;
}
.content-section h3 {
  color: #DC143C;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.content-section p {
  color: #8c909e;
  font-size: 13px;
  line-height: 1.75;
}

.games-link-list {
  list-style: none;
  margin-top: 10px;
}
.games-link-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 15px;
}
.games-link-list li::before {
  content: "•";
  color: #DC143C;
  position: absolute;
  left: 0;
}
.games-link-list li a {
  color: #8fa0c4;
  font-weight: 500;
}

/* ─── SIDEBAR WIDGETS ─── */
.sidebar-widget {
  background: #111318;
  border: 1px solid #1c1e26;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 18px;
}

.widget-header {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1c1e26;
}
.widget-header .see-all {
  font-size: 11px;
  color: #5d616f;
  font-weight: normal;
}

.review-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid #181a21;
}
.review-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.review-title {
  color: #4a82d0;
  font-weight: 600;
  font-size: 13px;
}
.review-meta {
  font-size: 11px;
  color: #525663;
  margin-bottom: 4px;
}
.review-meta strong {
  color: #DC143C;
}
.review-text {
  color: #727685;
  font-size: 11px;
  line-height: 1.4;
}

.online-users-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
}
.user-tag {
  color: #4a82d0;
}
.user-tag.admin {
  color: #DC143C;
}
.user-tag.staff {
  color: #10b981;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
}
.stat-label {
  color: #5d616f;
}
.stat-value {
  color: #ffffff;
  font-weight: 700;
}

.featured-product-card {
  background: #111318;
  border: 1px solid #1c1e26;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 10px;
}
.featured-product-card:hover {
  border-color: #DC143C;
}

/* ─── STORE PAGE ─── */
.store-filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.store-filter-bar select,
.store-filter-bar input {
  padding: 6px 12px;
  background: #111318;
  border: 1px solid #1c1e26;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
}
.store-filter-bar select:focus,
.store-filter-bar input:focus {
  border-color: #DC143C;
  outline: none;
}
.store-filter-bar input::placeholder {
  color: #4b5162;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

.store-card {
  background: #111318;
  border: 1px solid #1c1e26;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.store-card:hover {
  border-color: #DC143C;
}
.store-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.store-card-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.store-card-sub {
  color: #636775;
  font-size: 11px;
}
.store-card-bg-icon {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  right: 15px;
}

.product-image-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  background: #1a1c24;
  border: 1px solid #1c1e26;
}

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}
.status-badge.online {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.status-badge.updating {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.status-badge.testing {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-download {
  background: linear-gradient(90deg, #E50914, #FF2A3A);
  color: #fff;
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-download:hover {
  opacity: 0.9;
}

.btn-get-key {
  background: linear-gradient(90deg, #D4AF37, #F5D76E);
  color: #1a1a1a;
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-get-key:hover {
  opacity: 0.9;
}

.payment-notice {
  background: #12141c;
  border: 1px solid #1c1f2b;
  border-radius: 6px;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.payment-notice-text h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
.payment-notice-text p {
  color: #636775;
  font-size: 12px;
  margin-top: 2px;
}

/* ─── STATUS PAGE ─── */
.status-summary-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #151821;
  padding: 15px 20px;
  border-radius: 6px;
  border: 1px solid #1f232d;
  margin-bottom: 20px;
}
.status-title-group h2 {
  color: #ffffff;
  font-size: 18px;
}
.status-badges {
  display: flex;
  gap: 10px;
}
.badge-counter {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-online {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.badge-updating {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.badge-testing {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.category-group {
  margin-bottom: 30px;
}
.category-header {
  color: #DC143C;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1f232d;
  margin-bottom: 10px;
}

.status-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr 1fr;
  align-items: center;
  background: #12141a;
  border: 1px solid #1a1d26;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 6px;
}
.status-item:hover {
  border-color: #6B050B;
  background: #151821;
}
.product-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}
.product-os,
.product-cpu {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6c727f;
}
.status-pill {
  text-align: center;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
}
.status-pill.online {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid #10b981;
}
.status-pill.updating {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid #f59e0b;
}
.status-pill.testing {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid #3b82f6;
}
.btn-buy {
  background: linear-gradient(90deg, #E50914, #FF2A3A);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  justify-self: end;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-buy:hover {
  opacity: 0.9;
}
.status-product-image {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  object-fit: cover;
  background: #1a1c24;
  border: 1px solid #1c1e26;
  margin-right: 8px;
  vertical-align: middle;
}

/* ─── REVIEWS PAGE ─── */
.section-card {
  background: #111318;
  border: 1px solid #1c1e26;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}
.section-title-bar {
  background: #14161c;
  padding: 12px 18px;
  border-bottom: 1px solid #1c1e26;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.subforum-row {
  display: grid;
  grid-template-columns: 40px 1fr 100px 220px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid #181a21;
}
.subforum-row:last-child {
  border-bottom: none;
}
.subforum-icon {
  color: #5d616f;
  font-size: 16px;
}
.subforum-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
}
.subforum-count {
  text-align: center;
  font-size: 11px;
  color: #5d616f;
}
.subforum-count strong {
  color: #c2c5d1;
  display: block;
  font-size: 12px;
}
.last-post {
  display: flex;
  align-items: center;
  gap: 10px;
}
.last-post-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1e2029;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.last-post-info {
  font-size: 11px;
  line-height: 1.3;
}
.last-post-title {
  color: #4a82d0;
  font-weight: 600;
}
.last-post-meta {
  color: #5d616f;
}
.thread-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid #181a21;
}
.thread-row:last-child {
  border-bottom: none;
}
.thread-title {
  color: #4a82d0;
  font-weight: 600;
  font-size: 13px;
}
.thread-meta {
  font-size: 11px;
  color: #5d616f;
}

.reviews-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 25px;
}
.widget-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* ─── GET KEY MODAL ─── */
.getkey-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.getkey-modal.open {
  display: flex;
}
.getkey-modal-content {
  background: #111318;
  border: 1px solid #1c1e26;
  border-radius: 8px;
  padding: 30px;
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
}
.getkey-modal-content h2 {
  color: #fff;
  margin-bottom: 5px;
}
.getkey-modal-content .product-name-display {
  color: #D4AF37;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
}
.getkey-modal-content label {
  display: block;
  color: #636775;
  font-size: 12px;
  margin-top: 12px;
  margin-bottom: 4px;
  font-weight: 600;
}
.getkey-modal-content input,
.getkey-modal-content select,
.getkey-modal-content textarea {
  width: 100%;
  padding: 8px 12px;
  background: #0d0e11;
  border: 1px solid #1c1e26;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  box-sizing: border-box;
}
.getkey-modal-content textarea {
  min-height: 60px;
  resize: vertical;
}
.getkey-modal-content input:focus,
.getkey-modal-content select:focus,
.getkey-modal-content textarea:focus {
  border-color: #DC143C;
  outline: none;
}
.getkey-modal-content .file-input-wrapper {
  margin-top: 4px;
}
.getkey-modal-content .file-input-wrapper input[type="file"] {
  padding: 6px;
  background: #0d0e11;
  border: 1px solid #1c1e26;
  border-radius: 4px;
  color: #fff;
  width: 100%;
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}
.modal-actions .btn-submit {
  background: #DC143C;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}
.modal-actions .btn-submit:hover {
  background: #E50914;
}
.modal-actions .btn-cancel {
  background: transparent;
  color: #636775;
  border: 1px solid #1c1e26;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
}
.modal-actions .btn-cancel:hover {
  color: #fff;
}

/* ─── FOOTER ─── */
.footer {
  background: #08090b;
  border-top: 1px solid #16181f;
  padding: 40px 40px 20px 40px;
  margin-top: 40px;
}
.footer-columns {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-about p {
  color: #505461;
  font-size: 12px;
  margin-top: 12px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.footer-socials a {
  color: #505461;
  font-size: 14px;
}
.footer-socials a:hover {
  color: #E50914;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.footer-links-grid h4 {
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.footer-links-grid ul {
  list-style: none;
}
.footer-links-grid ul li {
  margin-bottom: 6px;
}
.footer-links-grid ul li a {
  color: #505461;
  font-size: 11px;
}
.footer-links-grid ul li a:hover {
  color: #8c909e;
}
.footer-sub {
  border-top: 1px solid #12141a;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  color: #3b3e48;
  font-size: 11px;
}

/* ─── EMPTY STATE ─── */
.empty-state {
  color: #636775;
  text-align: center;
  padding: 40px 0;
}
.empty-state .icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.empty-state .title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .content-container:has(.sidebar-widget) {
    grid-template-columns: 1fr;
  }
  .reviews-container {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .status-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .hero-image-wrapper {
    max-width: 100%;
    justify-content: center;
  }
  .hero-image {
    max-height: 200px;
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
  }
  .subforum-row {
    grid-template-columns: 40px 1fr 80px 1fr;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .top-bar,
  .top-header,
  .nav-bar {
    flex-direction: column;
    padding: 10px 15px;
    gap: 10px;
  }
  .nav-items,
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .content-container {
    padding: 15px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 20px 15px;
  }
  .footer-sub {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .payment-notice {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .hero-banner {
    padding: 30px 15px;
    min-height: auto;
  }
  .subforum-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .breadcrumb-bar {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ─── ADMIN PANEL STYLES ─── */
.admin-body {
  background: #0b0c0e;
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  overflow: hidden;
  color: #93969f;
}

.admin-login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 14, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.admin-login-box {
  background: #111318;
  border: 1px solid #1c1e26;
  border-radius: 8px;
  padding: 40px;
  width: 360px;
  text-align: center;
}
.admin-login-box .logo-text {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.admin-login-box .logo-text span { color: #DC143C; }
.admin-login-box .sub-label { color: #636775; font-size: 13px; margin-bottom: 20px; display: block; }
.admin-login-box input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  background: #0d0e11;
  border: 1px solid #1c1e26;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  box-sizing: border-box;
}
.admin-login-box input:focus { border-color: #DC143C; outline: none; }
.admin-login-box .login-btn {
  width: 100%;
  padding: 10px;
  background: #DC143C;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.admin-login-box .login-btn:hover { background: #E50914; }
.login-error { color: #ef4444; font-size: 12px; margin-top: 10px; display: none; }

.admin-sidebar {
  width: 220px;
  background: #111216;
  border-right: 1px solid #1a1c22;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 100vh;
  overflow-y: auto;
  padding-top: 10px;
}
.admin-sidebar .brand {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  border-bottom: 1px solid #1c1e26;
  margin-bottom: 10px;
}
.admin-sidebar .brand span { color: #DC143C; }
.admin-sidebar .menu-item {
  padding: 12px 20px;
  color: #8c909d;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.admin-sidebar .menu-item:hover { background: #1a1c24; color: #fff; }
.admin-sidebar .menu-item.active {
  border-left-color: #DC143C;
  color: #fff;
  background: rgba(220, 20, 60, 0.08);
}
.admin-sidebar .menu-item i { width: 18px; text-align: center; }
.admin-sidebar .menu-item.logout {
  margin-top: auto;
  border-top: 1px solid #1c1e26;
  padding-top: 15px;
  color: #ef4444;
}

.admin-main {
  flex: 1;
  padding: 30px 35px;
  overflow-y: auto;
  height: 100vh;
  background: #0b0c0e;
}
.admin-main h2 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-main h2 .btn-primary {
  background: #DC143C;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
}
.admin-main h2 .btn-primary:hover { background: #E50914; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.stat-card {
  background: #111318;
  border: 1px solid #1c1e26;
  border-radius: 6px;
  padding: 18px;
}
.stat-card .stat-number { color: #fff; font-size: 28px; font-weight: 800; }
.stat-card .stat-label { color: #636775; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-card .stat-number.pending { color: #f59e0b; }
.stat-card .stat-number.online { color: #10b981; }

.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.admin-table th {
  text-align: left;
  padding: 10px 12px;
  color: #636775;
  font-weight: 600;
  border-bottom: 1px solid #1c1e26;
}
.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #181a21;
  color: #c2c5d1;
}
.admin-table tr:hover td { background: #14161c; }
.admin-table .actions { display: flex; gap: 6px; }
.admin-table .actions button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 4px;
}
.admin-table .actions .edit-btn { color: #3b82f6; }
.admin-table .actions .edit-btn:hover { background: rgba(59, 130, 246, 0.15); }
.admin-table .actions .delete-btn { color: #ef4444; }
.admin-table .actions .delete-btn:hover { background: rgba(239, 68, 68, 0.15); }
.admin-table .actions .approve-btn { color: #10b981; }
.admin-table .actions .approve-btn:hover { background: rgba(16, 185, 129, 0.15); }
.admin-table .actions .reject-btn { color: #f59e0b; }
.admin-table .actions .reject-btn:hover { background: rgba(245, 158, 11, 0.15); }
.admin-table .actions .view-btn { color: #8b5cf6; }
.admin-table .actions .view-btn:hover { background: rgba(139, 92, 246, 0.15); }

.filter-bar-admin {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.filter-bar-admin select,
.filter-bar-admin input {
  padding: 6px 10px;
  background: #0d0e11;
  border: 1px solid #1c1e26;
  border-radius: 4px;
  color: #fff;
}

.admin-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.admin-modal.open { display: flex; }
.admin-modal-content {
  background: #111318;
  border: 1px solid #1c1e26;
  border-radius: 8px;
  padding: 30px;
  width: 90%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
}
.admin-modal-content h3 { color: #fff; margin-bottom: 15px; }
.admin-modal-content label {
  display: block;
  color: #636775;
  font-size: 12px;
  margin-top: 12px;
  margin-bottom: 4px;
  font-weight: 600;
}
.admin-modal-content input,
.admin-modal-content select,
.admin-modal-content textarea {
  width: 100%;
  padding: 8px 12px;
  background: #0d0e11;
  border: 1px solid #1c1e26;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  box-sizing: border-box;
}
.admin-modal-content textarea { min-height: 80px; resize: vertical; }
.admin-modal-content input:focus,
.admin-modal-content select:focus,
.admin-modal-content textarea:focus { border-color: #DC143C; outline: none; }
.admin-modal-content .file-input-wrapper input[type="file"] {
  padding: 6px;
  background: #0d0e11;
  border: 1px solid #1c1e26;
  border-radius: 4px;
  color: #fff;
  width: 100%;
}
.admin-modal-content .current-image-preview {
  margin-top: 8px;
  max-width: 120px;
  max-height: 120px;
  border-radius: 4px;
  border: 1px solid #1c1e26;
  overflow: hidden;
}
.admin-modal-content .current-image-preview img {
  width: 100%;
  height: auto;
  display: block;
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}
.modal-actions .btn-save { background: #DC143C; color: #fff; border: none; padding: 8px 20px; border-radius: 4px; font-weight: 700; cursor: pointer; }
.modal-actions .btn-save:hover { background: #E50914; }
.modal-actions .btn-cancel { background: transparent; color: #636775; border: 1px solid #1c1e26; padding: 8px 20px; border-radius: 4px; cursor: pointer; }
.modal-actions .btn-cancel:hover { color: #fff; }