/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Hide scrollbar globally */
* { scrollbar-width: none; -ms-overflow-style: none; }
*::-webkit-scrollbar { display: none; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ===================== PAGE TRANSITION ===================== */
.page-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  transform: translateX(-100%);
  pointer-events: none;
}

.page-overlay.slide-in  { animation: overlayIn  0.45s cubic-bezier(0.77,0,0.18,1) forwards; }
.page-overlay.slide-out { animation: overlayOut 0.45s cubic-bezier(0.77,0,0.18,1) forwards; }

@keyframes overlayIn  { from { transform: translateX(-100%); } to { transform: translateX(0%); } }
@keyframes overlayOut { from { transform: translateX(0%); }   to { transform: translateX(100%); } }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 56px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.nav-logo span { color: #fff; opacity: 0.4; }

.nav-links { list-style: none; display: flex; gap: 36px; }

.nav-link {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: #fff; }
.nav-link.active::after { transform: scaleX(1); }

/* ===================== SECTIONS ===================== */
.section {
  display: none;
  padding: 90px 52px 70px;
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
  animation: sectionFadeUp 0.5s ease both;
}

.section.active-section { display: block; }

@keyframes sectionFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== PROFILE HERO ===================== */
.hero {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 180px);
  position: relative;
  padding-top: 20px;
}

.hero-bg-grid {
  position: absolute;
  inset: -90px -52px;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.avatar-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(#fff 0%, #333 40%, #fff 70%, #333 100%);
  animation: spin 6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.profile-avatar {
  position: relative;
  z-index: 1;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: #111;
  border: 3px solid #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-fallback { font-size: 48px; }

.hero-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* HERO RIGHT */
.hero-right { display: flex; flex-direction: column; gap: 18px; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: #555;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-name {
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
  color: #fff;
}

.hero-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  max-width: 440px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.htag {
  background: #111;
  border: 1px solid #222;
  color: #888;
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.btn-primary {
  background: #fff;
  color: #000;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: opacity 0.15s, transform 0.15s;
}

.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 12px 24px;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}

.btn-ghost:hover { border-color: #fff; transform: translateY(-1px); }

/* ===================== STATS BAR ===================== */
.stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 28px 40px;
  margin-bottom: 48px;
}

.stat-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-plus {
  font-size: 20px;
  font-weight: 700;
  color: #555;
}

.stat-lbl {
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #1e1e1e;
  flex-shrink: 0;
}

/* ===================== SKILLS ===================== */
.skills-section {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 32px 36px;
  margin-bottom: 32px;
}

.section-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 20px;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 52px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.skill-name { font-size: 13px; font-weight: 500; color: #aaa; }
.skill-pct  { font-size: 13px; font-weight: 700; color: #fff; }

.skill-bar {
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ===================== CONTRIBUTIONS ===================== */
#contributions { scroll-margin-top: 86px; }

.contributions-section {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 32px 36px;
  margin-bottom: 24px;
}

.contributions-sub {
  font-size: 13px;
  color: #666;
  margin-bottom: 0;
}

.contributions-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 14px;
}

.contributions-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contributions-year-label {
  font-size: 11px;
  color: #555;
}

.contributions-year {
  background: #111;
  color: #fff;
  border: 1px solid #242424;
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
}

.contributions-profile-link {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  border: 1px solid #242424;
  border-radius: 6px;
  padding: 6px 10px;
}

.contributions-profile-link:hover { border-color: #fff; }

.contributions-status {
  font-size: 12px;
  color: #555;
  margin-bottom: 10px;
}

.contributions-months {
  display: grid;
  gap: 2px;
  margin-bottom: 8px;
  min-width: max-content;
}

.contributions-months span {
  font-size: 10px;
  color: #555;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: left;
}

.contributions-grid {
  display: grid;
  gap: 2px;
  min-width: max-content;
  margin-bottom: 10px;
}

.contributions-week {
  display: grid;
  grid-template-rows: repeat(7, 12px);
  gap: 2px;
}

.contrib-day {
  width: 12px;
  height: 12px;
  border: 1px solid #0f1218;
  border-radius: 2px;
  background: #0d1117;
  cursor: pointer;
  padding: 0;
}

.contrib-day:hover {
  border-color: #9ca3af;
  transform: scale(1.1);
}

.contrib-day:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 1px;
}

.contributions-tooltip {
  position: fixed;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -110%);
  transition: opacity 0.12s ease;
  background: #0b0b0b;
  border: 1px solid #222;
  color: #ddd;
  font-size: 11px;
  line-height: 1.3;
  padding: 6px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.contributions-tooltip.visible {
  opacity: 1;
}

.contrib-day.contrib-level-0 { background: #161b22; }
.contrib-day.contrib-level-1 { background: #0e4429; }
.contrib-day.contrib-level-2 { background: #006d32; }
.contrib-day.contrib-level-3 { background: #26a641; }
.contrib-day.contrib-level-4 { background: #39d353; }

.contributions-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #9aa4b2;
}

.contributions-legend i {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  border: 1px solid #2d333b;
  display: inline-block;
}

.contrib-level-0 { background: #161b22; }
.contrib-level-1 { background: #0e4429; }
.contrib-level-2 { background: #006d32; }
.contrib-level-3 { background: #26a641; }
.contrib-level-4 { background: #39d353; }

.contributions-share {
  margin-top: 12px;
  font-size: 12px;
  color: #666;
}

.contributions-share a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.contributions-share a:hover {
  border-bottom-color: #fff;
}

/* ===================== PAGE HEADERS ===================== */
.page-header {
  padding-top: 20px;
  margin-bottom: 44px;
}

.page-title {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 8px;
}

.page-sub {
  font-size: 13.5px;
  color: #555;
  max-width: 480px;
}

/* ===================== CARDS ===================== */
.card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 24px 26px;
  margin-bottom: 14px;
}

.card-title {
  font-size: 11px;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

/* ===================== SERVERS ===================== */
.timeline { position: relative; }

.timeline-year {
  display: flex;
  justify-content: center;
  margin: 28px 0 22px;
  position: relative;
}

.timeline-year::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: #1a1a1a;
}

.year-badge {
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.timeline-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}

.server-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  width: 288px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}

.server-card:hover { border-color: #333; transform: translateY(-2px); }
.offline-card { opacity: 0.5; }
.offline-card:hover { opacity: 0.7; transform: none; }

.server-logo {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #111;
  border: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  overflow: hidden;
}

.server-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.server-name-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.server-name { font-size: 14px; font-weight: 700; color: #fff; }

.server-type-badge {
  background: #111;
  border: 1px solid #222;
  color: #666;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.server-status { font-size: 11px; font-weight: 600; }
.server-status.online  { color: #4ade80; }
.server-status.offline { color: #444; }

.server-players { font-size: 12px; font-weight: 600; color: #888; }
.server-desc    { font-size: 12px; color: #555; line-height: 1.6; }

.server-features {
  border-top: 1px solid #1a1a1a;
  padding-top: 10px;
  margin-top: 2px;
}

.features-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #444;
  margin-bottom: 6px;
}

.feature-tags { display: flex; flex-wrap: wrap; gap: 5px; }

.feature-tag {
  font-size: 11px;
  color: #666;
  background: #111;
  border: 1px solid #1e1e1e;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 500;
}

.btn-join {
  background: #fff;
  color: #000;
  font-size: 12.5px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  margin-top: 4px;
  transition: opacity 0.15s;
}

.btn-join:hover { opacity: 0.8; }

.btn-join-disabled {
  background: #1a1a1a;
  color: #333;
  cursor: not-allowed;
}

.btn-join-disabled:hover { opacity: 1; }

/* ===================== PRICING ===================== */
.pricing-tabs {
  display: flex;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 6px;
  padding: 3px;
  width: fit-content;
  margin-bottom: 20px;
  gap: 2px;
}

.pricing-tab {
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  padding: 7px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}

.pricing-tab.active {
  background: #fff;
  color: #000;
  font-weight: 700;
}

.pricing-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.workload-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 12px;
  color: #555;
}

.workload-badge strong { color: #fff; }

.currency-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  padding: 6px 14px;
  color: #555;
}

.currency-selector svg { flex-shrink: 0; }

#currency-select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

#currency-select option { background: #111; color: #fff; }

#rate-label {
  font-size: 11px;
  color: #333;
  white-space: nowrap;
}

.plan-price.converting {
  opacity: 0.4;
  transform: scale(0.97);
  transition: opacity 0.15s, transform 0.15s;
}

.plan-price {
  transition: opacity 0.2s, transform 0.2s;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.pricing-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  padding: 28px 24px;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}

.pricing-card:hover { border-color: #333; }

.pricing-card.popular {
  border: 1px solid #fff;
  background: #0d0d0d;
}

.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 1px;
}

.plan-name { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.plan-desc { font-size: 12.5px; color: #555; margin-bottom: 6px; }

.plan-price-wrap { margin: 10px 0; }

.plan-price {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}

.plan-monthly {
  font-size: 13px;
  color: #444;
  margin-top: 4px;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 8px 0 14px;
  border-top: 1px solid #1a1a1a;
  padding-top: 14px;
}

.plan-features li {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.check { color: #fff; font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 1px; }

.plan-note {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 11.5px;
  color: #555;
  text-align: center;
  margin: 4px 0;
}

.btn-getstarted {
  background: #111;
  color: #fff;
  border: 1px solid #222;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px;
  cursor: pointer;
  margin-top: auto;
  transition: all 0.15s;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.btn-getstarted:hover { border-color: #fff; }

.btn-popular {
  background: #fff;
  color: #000;
  border: none;
}

.btn-popular:hover { opacity: 0.85; }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.contact-form-card {
  display: flex;
  flex-direction: column;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.discord-card {
  display: flex;
  flex-direction: column;
}

.discord-card .discord-btn-row { margin-top: auto; padding-top: 16px; }

.contact-form-sub { font-size: 12.5px; color: #444; margin-bottom: 24px; }

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Underline-style inputs — no box */
.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #1e1e1e;
  border-radius: 0;
  padding: 12px 0;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.form-input::placeholder { color: #2e2e2e; }
.form-input:focus { border-bottom-color: #fff; }

.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #1e1e1e;
  border-radius: 0;
  padding: 12px 0;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  outline: none;
  resize: none;
  min-height: 100px;
  flex: 1;
  width: 100%;
  transition: border-color 0.2s;
}

.form-textarea::placeholder { color: #2e2e2e; }
.form-textarea:focus { border-bottom-color: #fff; }

.btn-send {
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 3px;
  padding: 12px;
  cursor: pointer;
  transition: opacity 0.15s;
  width: 100%;
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.btn-send:hover { opacity: 0.8; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.contact-info-item svg { flex-shrink: 0; color: #333; }

.discord-desc { font-size: 13px; color: #555; line-height: 1.7; margin-bottom: 16px; }

.discord-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.discord-list li {
  font-size: 12.5px;
  color: #444;
  padding-left: 14px;
  position: relative;
}

.discord-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #2a2a2a;
}

.discord-btn-row { display: flex; align-items: center; gap: 12px; }

.btn-discord {
  background: #fff;
  color: #000;
  font-size: 12.5px;
  font-weight: 700;
  border: none;
  border-radius: 3px;
  padding: 9px 18px;
  cursor: pointer;
  transition: opacity 0.15s;
  font-family: 'Inter', sans-serif;
}

.btn-discord:hover { opacity: 0.8; }
.opens-new { font-size: 11px; color: #2a2a2a; }

.services-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.services-list li {
  font-size: 13px;
  color: #666;
  padding-left: 12px;
  position: relative;
}

.services-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #333;
}

/* ===================== FOOTER ===================== */
.footer {
  text-align: center;
  padding: 18px;
  font-size: 11.5px;
  color: #333;
  border-top: 1px solid #111;
  background: #000;
  margin-top: auto;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 860px) {
  .navbar { padding: 0 20px; }
  .section { padding: 74px 20px 48px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 36px;
    text-align: center;
    padding-top: 12px;
  }

  .hero-left { margin: 0 auto; }
  .hero-bio { margin: 0 auto; }
  .hero-tags { justify-content: center; }
  .hero-actions { justify-content: center; }

  .stats-bar { flex-wrap: wrap; padding: 20px; gap: 20px; }
  .stat-divider { display: none; }

  .skills-grid { grid-template-columns: 1fr; }
  .contributions-section { padding: 22px; }
  .contributions-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .contributions-months {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 2px;
  }
  .contributions-grid {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline-row { flex-direction: column; align-items: center; }
  .server-card { width: 100%; max-width: 340px; }
  .pricing-cards { flex-direction: column; }
  .pricing-card { max-width: 100%; }
  .pricing-tabs { flex-direction: column; }
  .nav-links { gap: 20px; }
  .hero-name { font-size: 52px; }
}

#parent{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#child{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
    box-sizing: content-box; /* So the width will be 100% + 17px */
}
