.about-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 60px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.6;
}

.about-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(0, 123, 238, 0.08);
  border: 1px solid rgba(77, 163, 255, 0.18);
  transition: all var(--transition-fast);
}

.highlight-box:hover {
  background: rgba(0, 123, 238, 0.15);
  border-color: rgba(77, 163, 255, 0.4);
  transform: translateY(-2px);
}

.highlight-box .material-symbols-outlined {
  color: var(--color-primary-light);
  font-size: 24px;
}

.highlight-box strong {
  display: block;
  font-size: 0.94rem;
  color: #ffffff;
}

.highlight-box span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  min-height: 300px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.about-visual:hover img {
  transform: scale(1.05);
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 11, 24, 0.9) 0%, transparent 60%);
}

.about-visual-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.about-visual-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #ffffff;
}

.about-visual-tag span {
  font-size: 0.82rem;
  color: var(--color-primary-light);
  text-transform: uppercase;
  font-weight: 800;
}

.stats-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 39, 82, 0.25) 50%, transparent 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 163, 255, 0.5);
  box-shadow: 0 20px 45px rgba(0, 14, 34, 0.7), 0 0 30px var(--color-primary-glow);
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 123, 238, 0.16);
  border: 1px solid rgba(77, 163, 255, 0.25);
  color: var(--color-primary-light);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.stat-card-icon .material-symbols-outlined {
  font-size: 26px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-body);
  margin-top: 10px;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ═══ VIP SECTION ═══ */
.vip-section {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Ambient glow behind section */
.vip-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 190, 35, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Centered header */
.vip-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.vip-header h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  margin: 10px 0 16px;
  line-height: 1.1;
}

.vip-header p {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Cards grid */
.vip-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

/* Base card */
.vip-tier-card {
  position: relative;
  border-radius: 20px;
  padding: 32px 28px 28px;
  background: rgba(6, 16, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  overflow: hidden;
}

.vip-tier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.vip-tier-card:hover {
  transform: translateY(-8px);
}

/* ── Silver ── */
.vip-silver {
  border-color: rgba(148, 163, 184, 0.25);
}
.vip-silver::before {
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(148, 163, 184, 0.1), transparent);
}
.vip-silver:hover {
  border-color: rgba(148, 163, 184, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(148, 163, 184, 0.1);
}
.vip-silver:hover::before { opacity: 1; }

/* ── Gold (featured) ── */
.vip-gold {
  border-color: rgba(251, 191, 36, 0.45);
  background: linear-gradient(170deg, rgba(30, 20, 4, 0.98) 0%, rgba(6, 16, 38, 0.98) 100%);
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.12), 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(-12px);
}
.vip-gold::before {
  background: radial-gradient(ellipse 90% 45% at 50% 0%, rgba(251, 191, 36, 0.18), transparent);
  opacity: 1;
}
.vip-gold:hover {
  transform: translateY(-20px);
  border-color: rgba(251, 191, 36, 0.7);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(251, 191, 36, 0.2);
}

/* ── Lord ── */
.vip-lord {
  border-color: rgba(99, 179, 237, 0.2);
}
.vip-lord::before {
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(99, 179, 237, 0.09), transparent);
}
.vip-lord:hover {
  border-color: rgba(99, 179, 237, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 179, 237, 0.1);
}
.vip-lord:hover::before { opacity: 1; }

/* Popular badge */
.vip-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ca8a04, #fbbf24, #ca8a04);
  color: #0a0500;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}

/* Card top: icon + label + price */
.vip-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-top: 10px;
}

.tier-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 22px;
}

.silver-icon {
  background: rgba(148, 163, 184, 0.15);
  color: #cbd5e1;
}
.gold-icon {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}
.lord-icon {
  background: rgba(99, 179, 237, 0.15);
  color: #7dd3fc;
}

.tier-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  flex: 1;
}

.tier-price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-align: right;
}

.tier-price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

.vip-gold .tier-price-amount { color: #fbbf24; }
.vip-lord .tier-price-amount { color: #7dd3fc; }
.vip-silver .tier-price-amount { color: #cbd5e1; }

.tier-price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Divider */
.vip-tier-card .tier-perks {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
}

.vip-tier-card .tier-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(176, 198, 230, 0.85);
}

.vip-tier-card .tier-perks .material-symbols-outlined {
  font-size: 18px;
  flex-shrink: 0;
}

.vip-silver .tier-perks .material-symbols-outlined { color: #94a3b8; }
.vip-gold   .tier-perks .material-symbols-outlined { color: #fbbf24; }
.vip-lord   .tier-perks .material-symbols-outlined { color: #7dd3fc; }

/* Buy buttons */
.vip-buy-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  margin-top: auto;
  transition: filter 200ms ease, transform 200ms ease;
}
.vip-buy-btn:hover { filter: brightness(1.12); transform: scale(1.02); }

.silver-btn {
  background: rgba(148, 163, 184, 0.15);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.3);
}
.gold-btn {
  background: linear-gradient(135deg, #b45309 0%, #fbbf24 100%);
  color: #0a0500;
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
}
.lord-btn {
  background: rgba(99, 179, 237, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(99, 179, 237, 0.3);
}

.team-section {
  position: relative;
  padding: 100px 0;
}

/* Category group */
.team-category {
  margin-top: 60px;
}

.team-category-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.team-category-label h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.team-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(77,163,255,0.4), transparent);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.team-card {
  position: relative;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-card), 0 0 30px var(--color-primary-glow);
}

.team-avatar-wrap {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-md);
  background: rgba(0, 123, 238, 0.15);
  border: 2px solid rgba(77, 163, 255, 0.35);
  padding: 6px;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-smooth);
}

.team-card:hover .team-avatar-wrap {
  transform: scale(1.08) rotate(-2deg);
}

.team-avatar-wrap img {
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.team-role {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.role-owner {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.role-admin {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.role-dev {
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.role-builder {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.role-mod {
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
}

.role-helper {
  background: rgba(20, 184, 166, 0.18);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: #2dd4bf;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #ffffff;
}

.team-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

.socials-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.socials-box {
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(8, 25, 52, 0.85) 0%, rgba(4, 16, 36, 0.95) 100%);
  border: 1px solid rgba(77, 163, 255, 0.25);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.socials-copy {
  max-width: 520px;
}

.socials-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: #ffffff;
  margin: 8px 0 12px;
}

.socials-copy p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.socials-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-card-item {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(77, 163, 255, 0.08);
  border: 1px solid rgba(77, 163, 255, 0.2);
  display: grid;
  place-items: center;
  color: var(--text-main);
  transition: all var(--transition-smooth);
}

.social-card-item svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.social-card-item.discord:hover {
  background: #5865F2;
  border-color: #5865F2;
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.5);
  transform: translateY(-4px) scale(1.05);
  color: #ffffff;
}

.social-card-item.tiktok:hover {
  background: #000000;
  border-color: #ff0050;
  box-shadow: 0 0 25px rgba(255, 0, 80, 0.4);
  transform: translateY(-4px) scale(1.05);
  color: #ffffff;
}

.social-card-item.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
  transform: translateY(-4px) scale(1.05);
  color: #ffffff;
}

.social-card-item.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: #d6249f;
  box-shadow: 0 0 25px rgba(214, 36, 159, 0.5);
  transform: translateY(-4px) scale(1.05);
  color: #ffffff;
}

.guide-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 8, 18, 0.85);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.guide-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.guide-modal-dialog {
  background: var(--bg-dropdown);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px var(--color-primary-glow);
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-modal.is-active .guide-modal-dialog {
  transform: translateY(0) scale(1);
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.guide-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(0, 123, 238, 0.07);
  border: 1px solid rgba(77, 163, 255, 0.16);
  border-radius: var(--radius-md);
}

.guide-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.guide-step-body strong {
  display: block;
  font-size: 0.96rem;
  color: #ffffff;
}

.guide-step-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.guide-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(77, 163, 255, 0.2);
  padding-bottom: 12px;
  margin-top: 15px;
}

.guide-tab-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.guide-tab-btn.is-active {
  background: var(--color-primary);
  color: #ffffff;
}

.guide-tab-content {
  display: none;
}

.guide-tab-content.is-active {
  display: block;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vip-banner {
    grid-template-columns: 1fr;
  }
  .vip-cards-row {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .socials-box {
    padding: 30px 20px;
  }
}
