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

:root {
  --orange: #ff6b1a;
  --orange-bright: #ff8040;
  --orange-dim: #cc4f0a;
  --orange-glow: rgba(255, 107, 26, 0.3);
  --bg: #080a0d;
  --bg2: #0d1118;
  --bg3: #111620;
  --bg4: #161d2a;
  --border: rgba(255,107,26,0.15);
  --border-dim: rgba(255,255,255,0.06);
  --text: #f0f2f5;
  --text-muted: #6b7a90;
  --text-soft: #9aaabb;
  --radius: 14px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 10, 13, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
  transition: background 0.3s, border-color 0.3s;
}
.navbar.scrolled {
  background: rgba(8, 10, 13, 0.95);
  border-bottom-color: var(--border);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  object-fit: cover;
}
.nav-logo-fallback {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--bg4);
  border: 1.5px solid var(--border);
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 14px;
}
.nav-brand {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0.5px;
}
.nav-brand-pvp { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  display: block;
  padding: 0.4rem 0.9rem;
  font-size: 14px;
  color: var(--text-soft);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-cta {
  padding: 8px 18px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-bright); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-soft);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-dim);
  gap: 4px;
}
.nav-mobile a {
  padding: 10px 12px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.mobile-cta {
  margin-top: 0.5rem;
  background: var(--orange) !important;
  color: #fff !important;
  text-align: center;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,26,0.1);
  border: 1px solid rgba(255,107,26,0.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--orange-bright);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px #22c55e; }
  50% { box-shadow: 0 0 16px #22c55e, 0 0 24px rgba(34,197,94,0.3); }
}
.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(52px, 10vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}
.hero-title .accent { color: var(--orange); }
.hero-sub {
  display: block;
  font-size: clamp(22px, 5vw, 38px);
  color: var(--orange);
  letter-spacing: 6px;
  font-weight: 600;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin: 1.25rem 0 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.ip-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255,107,26,0.06);
  border: 1px solid rgba(255,107,26,0.2);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.ip-info { text-align: left; }
.ip-label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 3px; }
.ip-value { font-family: monospace; font-size: 15px; color: var(--orange-bright); font-weight: 600; }
.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.copy-btn:hover { background: var(--orange-bright); transform: translateY(-1px); }
.copy-btn.copied { background: #22c55e; }
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 12px 28px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange-bright); transform: translateY(-1px); }
.btn-secondary {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dim);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--border); color: var(--text); background: rgba(255,255,255,0.04); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pill {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255,107,26,0.1);
  border: 1px solid rgba(255,107,26,0.25);
  border-radius: 20px;
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.section-header p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ===== SHOP SECTION ===== */
.shop-section {
  padding: 5rem 1.5rem;
  background: var(--bg2);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}
.shop-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
}
.shop-hero-card {
  position: relative;
  background: var(--bg4);
  border: 1px solid rgba(255,107,26,0.25);
  border-radius: var(--radius);
  overflow: hidden;
}
.shop-card-glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,107,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.shop-card-inner {
  position: relative;
  padding: 2rem;
}
.shop-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(255,107,26,0.1);
  border: 1px solid rgba(255,107,26,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1rem;
}
.shop-hero-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.shop-hero-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.shop-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 1.25rem;
}
.shop-main-btn:hover { background: var(--orange-bright); transform: translateY(-1px); }
.tebex-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-dim);
  padding-top: 1rem;
}
.tebex-badge strong { color: var(--text-soft); }

.shop-info-col { display: flex; flex-direction: column; gap: 1.25rem; }

.trust-list {
  background: var(--bg3);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: rgba(255,107,26,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.payments-block {
  background: var(--bg3);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.payments-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dim);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 500;
}

/* ===== LINKS SECTION ===== */
.links-section {
  padding: 5rem 1.5rem;
  background: var(--bg);
}
.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.link-card {
  background: var(--bg3);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.link-card:hover {
  border-color: rgba(255,107,26,0.3);
  transform: translateY(-2px);
}
.link-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.link-card:hover .link-card-accent { opacity: 1; }
.link-card-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: rgba(255,107,26,0.08);
  border: 1px solid rgba(255,107,26,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-top: 2px;
}
.link-card-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 5px;
}
.link-card-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.link-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.code-block {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-dim);
  border-radius: 7px;
  padding: 8px 12px;
  margin-bottom: 8px;
}
.code-block code {
  font-family: monospace;
  font-size: 12px;
  color: var(--orange-bright);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.code-copy {
  background: rgba(255,107,26,0.1);
  border: 1px solid rgba(255,107,26,0.2);
  border-radius: 5px;
  padding: 5px 7px;
  cursor: pointer;
  color: var(--orange);
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.code-copy:hover { background: rgba(255,107,26,0.2); }
.code-copy.copied { color: #22c55e; border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.08); }
.ip-small {
  font-size: 12px;
  color: var(--text-muted);
}
.ip-small strong { color: var(--text-soft); }
.link-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,107,26,0.1);
  border: 1px solid rgba(255,107,26,0.25);
  border-radius: 7px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.link-card-btn:hover { background: rgba(255,107,26,0.2); color: var(--orange-bright); }

/* ===== TEAM SECTION ===== */
.team-section {
  padding: 5rem 1.5rem;
  background: var(--bg2);
  border-top: 1px solid var(--border-dim);
}
.team-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}
.team-card {
  position: relative;
  background: var(--bg4);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.team-card:hover { border-color: rgba(255,107,26,0.3); transform: translateY(-3px); }
.team-card--founder {
  border-color: rgba(255,107,26,0.2);
}
.team-card-shine {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,26,0.5), transparent);
}
.team-rank {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.team-avatar-wrap {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 1rem;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,107,26,0.3);
}
.team-avatar-fallback {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid rgba(255,107,26,0.3);
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}
.team-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,26,0.15);
}
.team-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.team-badge {
  display: inline-block;
  background: rgba(255,107,26,0.1);
  border: 1px solid rgba(255,107,26,0.2);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-dim);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--orange); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-made {
  font-size: 12px;
  color: #2a3a4a;
}
.footer-made span { color: #3a5070; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile.open { display: flex; }
  .shop-main { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: 1fr; }
  .link-card { flex-direction: column; }
}

@media (max-width: 480px) {
  .ip-block { flex-direction: column; align-items: flex-start; }
  .copy-btn { width: 100%; justify-content: center; }
}
