/* ─────────── GENERAL RESET ─────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, #0a0010 0%, #000 100%);
  color: #eee;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

img {
  max-width: 100%;
  border-radius: 12px;
}

/* ─────────── SIDEBAR ─────────── */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(20, 0, 30, 0.8), rgba(0, 0, 0, 0.9));
  backdrop-filter: blur(25px);
  border-right: 1px solid rgba(130, 0, 255, 0.25);
  box-shadow: 0 0 40px rgba(130, 0, 255, 0.15);
  z-index: 100;
}

.sidebar-header {
  text-align: center;
  padding: 35px 10px 20px;
}

.sidebar-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 15px #8b3fff);
}

.sidebar h2 {
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  color: #b97fe5;
  text-shadow: 0 0 10px rgba(139, 63, 255, 0.4);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  gap: 8px;
}

.sidebar-nav a {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  color: #c9a9ff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 63, 255, 0.1);
  transition: 0.3s;
}

.sidebar-nav a:hover {
  background: rgba(139, 63, 255, 0.15);
  box-shadow: 0 0 12px rgba(139, 63, 255, 0.4);
  color: #fff;
}

.sidebar-nav a.active {
  background: linear-gradient(135deg, #8b3fff, #c43cff);
  color: #fff;
  box-shadow: 0 0 25px rgba(139, 63, 255, 0.5);
}

.sidebar-footer {
  padding: 20px;
  font-size: 12px;
  color: #8e6bcb;
  text-align: center;
  border-top: 1px solid rgba(139, 63, 255, 0.15);
}

.sidebar-footer .small {
  font-size: 10px;
  opacity: 0.7;
}

/* ─────────── MAIN CONTENT ─────────── */
.content {
  margin-left: 260px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ─────────── HERO ─────────── */
.hero-section {
  position: relative;
  padding: 100px 60px;
  text-align: center;
  border-radius: 25px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(30, 0, 40, 0.8), rgba(0, 0, 0, 0.9));
  box-shadow: 0 0 60px rgba(139, 63, 255, 0.3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(139, 63, 255, 0.25), rgba(0, 0, 0, 0.8));
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-inner h1 {
  font-size: 42px;
  font-weight: 700;
  text-shadow: 0 0 25px #8b3fff;
}

.gradient-text {
  background: linear-gradient(90deg, #8b3fff, #c43cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-inner .tagline {
  margin: 10px 0 30px;
  color: #d9bfff;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.btn {
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(90deg, #8b3fff, #c43cff);
  color: #fff;
  box-shadow: 0 0 20px rgba(139, 63, 255, 0.3);
}

.btn.primary:hover {
  box-shadow: 0 0 35px rgba(139, 63, 255, 0.6);
  transform: scale(1.05);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #d9bfff;
}

.btn.secondary:hover {
  background: rgba(139, 63, 255, 0.2);
}

/* ─────────── SECTIONS ─────────── */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  text-shadow: 0 0 20px rgba(139, 63, 255, 0.3);
  color: #d9bfff;
}

/* 📊 NETWORK OVERVIEW — Style #4 (Black + Neon + Modern) */
.network-overview {
  margin-top: 5rem;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;

  /* 🔥 NEW: Dark section background card */
  background: #000000;
  border: 1px solid #640043;
  border-radius: 1.5rem;
  padding: 4rem 2.5rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.12);
}

.network-overview .section-header {
  margin-bottom: 2.5rem;
}

.network-overview .section-subtitle {
  color: #bb8dff;
  font-size: 1rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* --- GRID LAYOUT --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 10px;
}

/* --- CARD DESIGN --- */
.stat-card.neo {
  background: rgba(255, 255, 255, 0.05);
  padding: 22px;
  border-radius: 18px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 25px rgba(110, 0, 255, 0.18);
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}

.stat-card.neo:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(160, 70, 255, 0.35);
}

/* --- TOOLTIP --- */
.stat-card.neo::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,20,20,0.9);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  white-space: nowrap;
}

.stat-card.neo:hover::after {
  bottom: -5px;
  opacity: 1;
}

/* --- ICONS --- */
.icon-circle {
  width: 45px;
  height: 45px;
  background: rgba(150, 70, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-circle.purple { background: rgba(180, 70, 255, 0.25); }
.icon-circle.blue   { background: rgba(70, 130, 255, 0.25); }
.icon-circle.green  { background: rgba(70, 255, 150, 0.25); }

.icon {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

/* --- TEXT --- */
.stat-card h3 {
  margin-top: 8px;
  font-size: 1.05rem;
  opacity: 0.85;
}

.value {
  font-size: 2.1rem;
  margin: 10px 0 3px;
  font-weight: 700;
}

.trend {
  font-size: 0.9rem;
  opacity: 0.8;
}

.trend.good {
  color: #73ffba;
}

/* --- PROGRESS BAR --- */
.progress-bar {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.12);
  height: 6px;
  border-radius: 7px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b46aff, #7b2bff);
  transition: width 0.6s ease;
}

/* --- RESPONSIVE --- */
@media (max-width: 550px) {
  .value { font-size: 1.7rem; }
  .stat-card { padding: 18px; }
}


/* ─────────── COMMUNITY NEWS ─────────── */
.community {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  color: #b97fe5;
  font-size: 16px;
  margin-top: 8px;
  opacity: 0.85;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.news-card {
  background: rgba(30, 0, 45, 0.6);
  border: 1px solid rgba(185, 75, 255, 0.15);
  border-radius: 20px;
  padding: 25px 30px;
  box-shadow: 0 0 20px rgba(185, 75, 255, 0.15);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(185, 75, 255, 0.4);
  border-color: rgba(255, 0, 255, 0.3);
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.news-header h3 {
  font-size: 20px;
  color: #ffb6ff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.news-tag {
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-tag.new {
  background: linear-gradient(90deg, #b94bff, #ff55d5);
  color: #fff;
}

.news-tag.event {
  background: rgba(255, 255, 255, 0.1);
  color: #e2aaff;
  border: 1px solid rgba(255, 0, 255, 0.2);
}

.news-tag.update {
  background: rgba(120, 0, 180, 0.4);
  color: #ffb6ff;
  border: 1px solid rgba(255, 0, 255, 0.3);
}

.news-card p {
  color: #e2aaff;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b97fe5;
  font-size: 13px;
  opacity: 0.9;
}

.read-more {
  color: #ffb6ff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  color: #fff;
  text-shadow: 0 0 8px #ff55d5;
}

.news-card.highlight {
  background: linear-gradient(145deg, rgba(50, 0, 70, 0.8), rgba(30, 0, 45, 0.6));
  border: 1px solid rgba(255, 0, 255, 0.3);
  box-shadow: 0 0 35px rgba(255, 0, 255, 0.25);
}

/* Subtle glow animation */
.news-card:hover .news-header h3 {
  text-shadow: 0 0 20px #ff55d5;
  transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 700px) {
  .news-card {
    padding: 20px;
  }
  .news-header h3 {
    font-size: 18px;
  }
}
/* ─────────── STORE PREVIEW ─────────── */
.store-preview {
  text-align: center;
  padding: 80px 40px;
  background: radial-gradient(circle at top, rgba(60, 0, 80, 0.2), rgba(10, 0, 20, 0.8));
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(185, 75, 255, 0.2);
  transition: 0.4s;
}

.store-preview:hover {
  box-shadow: 0 0 70px rgba(185, 75, 255, 0.4);
}

.store-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.store-buttons .btn {
  padding: 14px 34px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.store-buttons .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #b94bff, #ff55d5);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
  border-radius: 14px;
}

.store-buttons .btn:hover::before {
  opacity: 1;
}

.store-buttons .btn.primary {
  background: linear-gradient(90deg, #b94bff, #ff55d5);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.store-buttons .btn.primary:hover {
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
  transform: translateY(-3px);
}

.store-buttons .btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 255, 0.15);
  color: #e8baff;
}

.store-buttons .btn.secondary:hover {
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
  transform: translateY(-3px);
}

.store-preview .subtitle {
  margin-top: 25px;
  font-size: 16px;
  color: #e2aaff;
  opacity: 0.9;
  letter-spacing: 0.3px;
}
/* ─────────── STAFF SECTION ─────────── */
.staff {
  padding: 60px 20px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.staff-card {
  position: relative;
  background: rgba(30, 0, 50, 0.6);
  border: 1px solid rgba(185, 75, 255, 0.2);
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  transition: 0.4s ease;
  overflow: hidden;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(185, 75, 255, 0.5);
  background: rgba(50, 0, 70, 0.8);
}

.staff-img-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(185, 75, 255, 0.4);
  transition: 0.4s;
}

.staff-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.staff-card:hover .staff-img-wrapper img {
  transform: scale(1.1) rotate(2deg);
}

.staff-card h3 {
  color: #e3c2ff;
  margin-bottom: 5px;
  font-size: 18px;
}

.staff-card p {
  color: #d9a7ff;
  font-size: 14px;
  margin-bottom: 15px;
}

/* ─────────── STAFF SOCIAL ICONS ─────────── */
.staff-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s;
}

.staff-card:hover .staff-social {
  opacity: 1;
  transform: translateY(0);
}

.staff-social a img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 6px #b94bff);
  transition: 0.3s;
}

.staff-social a img:hover {
  filter: drop-shadow(0 0 12px #ff55d5);
  transform: scale(1.2);
}

