/* ===================================================
   trace HUNTERS - CSS Stylesheet
   Modern Web3 Dark / Mok Asfalt (Wet Asphalt)
   =================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Yas Asfalt / Tund Boz Estetikasi */
  --bg-color: #121316;
  --nav-bg: rgba(18, 19, 22, 0.82);
  --border-subtle: rgba(255, 255, 255, 0.10);
  --border-hover: rgba(255, 255, 255, 0.30);
  --text-main: #ffffff;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  /* Brend loqo rengleri */
  --color-orange: #ff7828;
  --color-blue: #2563eb;
  --color-coral: #f43f5e;
  --color-lime: #a3e635;
  --color-cyan: #38bdf8;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------------------------------------------------
   Arxa Fon: Dinamik Sam Qrafiki & Ambient Qat
   --------------------------------------------------- */
#chart-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

.ambient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(18, 19, 22, 0.86) 0%,
    rgba(18, 19, 22, 0.52) 40%,
    rgba(18, 19, 22, 0.08) 72%,
    rgba(14, 15, 18, 0.35) 100%
  );
}

/* ---------------------------------------------------
   Esas Sehife Wrapper
   --------------------------------------------------- */
.page-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------------------------------------------------
   Basliq / Navbar
   --------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 32px 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brend Loqo ve Ad */
.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  user-select: none;
}

.brand-icon {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.16));
  transition: transform 0.3s ease;
}

.brand-link:hover .brand-icon {
  transform: scale(1.04);
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.trace-part {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.hunters-part {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

/* Sosial Sebeke Linkleri */
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-svg {
  width: 19px;
  height: 19px;
  transition: transform 0.22s ease, fill 0.22s ease, stroke 0.22s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.social-btn.disabled {
  opacity: 0.45;
  cursor: default;
}

.social-btn.disabled:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle);
  color: #d1d5db;
  transform: none;
  box-shadow: none;
}

.social-btn.disabled:hover .social-svg {
  transform: none;
}

/* ---------------------------------------------------
   Esas Kontent (Hero Bolmesi)
   --------------------------------------------------- */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 60px 0;
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-content {
  max-width: 720px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 5.6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.8px;
  color: #ffffff;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.accent-text {
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 60%, #a3e635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.25px;
  margin-bottom: 26px;
  max-width: 650px;
}

.founder-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.founder-label {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.founder-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

.founder-link:hover {
  color: #38bdf8;
  text-shadow: 0 0 14px rgba(56, 189, 248, 0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: #f4f4f6;
  color: #0d0e12;
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.btn-discord-icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
  transition: transform 0.22s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #000000;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.btn-primary:hover .btn-discord-icon {
  transform: scale(1.1);
}

/* ---------------------------------------------------
   Alt hisse / Footer (by GRAHAM)
   --------------------------------------------------- */
.footer {
  width: 100%;
  padding-bottom: 24px;
  margin-top: auto;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.author-signature {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  user-select: none;
  color: rgba(255, 255, 255, 0.40);
  transition: color 0.22s ease, transform 0.22s ease, text-shadow 0.22s ease;
}

.author-signature:hover {
  color: #ffffff;
  transform: translateY(-1px);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.4);
}

.by-prefix {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.22s ease;
}

.author-signature:hover .by-prefix {
  color: rgba(255, 255, 255, 0.7);
}

.author-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---------------------------------------------------
   Responsivlik
   --------------------------------------------------- */
@media (max-width: 640px) {
  .nav-container {
    padding: 14px 18px;
  }
  
  .footer-container {
    padding: 0 18px;
  }
  
  .brand-icon {
    height: 32px;
  }
  
  .trace-part {
    font-size: 1.25rem;
  }
  
  .hunters-part {
    font-size: 1.25rem;
  }
  
  .social-btn {
    width: 36px;
    height: 36px;
  }
  
  .social-svg {
    width: 17px;
    height: 17px;
  }

  .main-content {
    padding: 36px 0;
  }

  .hero-container {
    padding: 0 18px;
  }

  .hero-title {
    font-size: 2.35rem;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .btn-primary {
    padding: 14px 26px;
    font-size: 0.98rem;
  }
}
