* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
}

.navbar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}





.arrow {
  font-size: 12px;
}
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero h1 {
  font-size: 96px;
  font-weight: 700;
  z-index: 1;
}

.hero p {
  font-size: 36px;
  margin: 16px 0 32px;
  z-index: 1;
}

.hero button {
  padding: 20px 34px;
  font-size: 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #6c63ff, #8a5cff);
  color: #fff;
  z-index: 1;
}
.footer {
  background: #000;
  color: #fff;
  padding: 80px 0 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-left {
  max-width: 260px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
}

.footer-logo img {
  height: 28px;
}

.socials {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.socials a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.socials a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #fff;
}

.footer p {
  font-size: 13px;
  color: #777;
  margin-top: 24px;
}
.nav-profile {
  display: flex;
  align-items: center;
  margin-left: 24px;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-profile:hover {
  background: rgba(0,0,0,0.05);
  transform: scale(1.05);
}

.market {
  background: #000;
  padding: 60px 0;
}

.market-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.market-card {
  min-width: 220px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
}

.coin {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #aaa;
}

.coin .name {
  font-weight: 600;
  color: #fff;
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin: 12px 0 6px;
}

.change {
  font-size: 14px;
  font-weight: 600;
}

.change.positive {
  color: #4ade80;
}

.change.negative {
  color: #f87171;
}
.market-card {
  transition: transform 0.2s ease, background 0.2s ease;
}

.market-card.updated {
  background: rgba(108,99,255,0.12);
}
.about {
  background: #000;
  padding: 120px 20px;
}

.about-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.about h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.about p {
  font-size: 18px;
  line-height: 1.7;
  color: #aaa;
}
@media (max-width: 768px) {
  .about h2 {
    font-size: 28px;
  }

  .about p {
    font-size: 16px;
  }
}
.phases {
  background: #000;
  padding: 120px 20px;
}

.phases-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.phase-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
  transition: transform 0.25s ease, border 0.25s ease;
}

.phase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,99,255,0.6);
}

.phase-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #6c63ff;
  margin-bottom: 12px;
}

.phase-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.phase-card ul {
  list-style: none;
  padding: 0;
}

.phase-card li {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .phases-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .phases-container {
    grid-template-columns: 1fr;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal .phase-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reveal.active .phase-card {
  opacity: 1;
  transform: translateY(0);
}
.faq {
  background: #050b1a;
  padding: 120px 20px;
  color: #fff;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.faq-left h2 {
  font-size: 42px;
  line-height: 1.2;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 28px;
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}


.faq-answer p {
  color: #bbb;
  font-size: 15px;
  padding-bottom: 24px;
}

.faq-footer {
  margin-top: 32px;
  font-size: 14px;
  color: #aaa;
}

.faq-footer a {
  color: #6c63ff;
  text-decoration: none;
}
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-left h2 {
    font-size: 32px;
  }
}
.faq-left {
  display: flex;
  flex-direction: column;
}

.faq-logo {
  width: 180px;
  margin-bottom: 24px;
  opacity: 0.8;
}
/* Dropdown parent */
.dropdown {
  position: relative;
}

/* Tıklanan alan */
.nav-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

/* Açılır menü */

/* Menü linkleri */
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 999;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-item.active {
  color: #6c63ff;
}


.profile-dropdown .dropdown-menu {
  right: 0;
  left: auto;
  min-width: 180px;
}

.profile-menu a {
  padding: 12px 18px;
  font-size: 14px;
}

.profile-trigger {
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.profile-trigger:hover {
  background: rgba(0,0,0,0.06);
  transform: scale(1.05);
}
/* PROFILE PAGE */
.profile-page {
  background: #000;
  min-height: calc(100vh - 72px);
  padding: 120px 20px;
  color: #fff;
}

.profile-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.profile-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #8a5cff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.profile-mail {
  color: #aaa;
  font-size: 14px;
  margin: 8px 0 24px;
}

.profile-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: #6c63ff;
  color: #fff;
  cursor: pointer;
}

.profile-info {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
}

.profile-info h3 {
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
}

.logout-btn {
  margin-top: 32px;
  background: transparent;
  border: 1px solid #f87171;
  color: #f87171;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
}

.logout-btn:hover {
  background: rgba(248,113,113,0.1);
}

@media (max-width: 800px) {
  .profile-container {
    grid-template-columns: 1fr;
  }
}
/* NAVBAR GENEL */
.navbar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  padding: 0 32px;              /* sağ–sol nefes */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 96px;
  display: block;
  cursor: pointer;
}

/* MENÜ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

/* TÜM NAV LİNKLERİ */
.nav-links a {
  text-decoration: none;
  color: inherit;               /* mor / maviye son */
}

.nav-links a:hover {
  color: #6c63ff;
}

/* NAV ITEM + DROPDOWN */
.nav-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

.arrow {
  font-size: 12px;
}

/* DROPDOWN MENÜ */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #000;
  font-size: 14px;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* PROFİL MENÜSÜ SAĞA YAPIŞSIN */
.profile-dropdown .dropdown-menu {
  right: 0;
  left: auto;
  min-width: 180px;
}
/* CHECKER PAGE */
.checker-section {
  background: #000;
  min-height: 100vh;
  padding: 140px 20px 80px;
  color: #fff;
}

.checker-container {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.checker-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.checker-subtitle {
  color: #aaa;
  font-size: 18px;
  margin-bottom: 40px;
}

.checker-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
}

#walletInput {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: 12px;
  border: none;
  outline: none;
  margin-bottom: 20px;
}

#checkBtn {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: #6c63ff;
  color: #fff;
  margin-bottom: 20px;
}

.checker-result {
  font-size: 18px;
  min-height: 30px;
}
/* HELP PAGE */
.help-section {
  background: #000;
  min-height: 100vh;
  padding: 150px 20px 100px;
  color: #fff;
}

.help-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.help-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
}

.help-subtitle {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 50px;
}

.help-faq {
  text-align: left;
  margin-top: 20px;
}

.help-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
}

.help-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.help-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.help-item.active .help-icon {
  transform: rotate(45deg);
}

.help-answer {
  display: none;
  color: #bbb;
  font-size: 15px;
  margin-top: 15px;
  line-height: 1.6;
}

.help-item.active .help-answer {
  display: block;
}

.help-contact {
  margin-top: 60px;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.help-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 26px;
  background: #6c63ff;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 12px;
}
/* ECOSYSTEM PAGE */
.ecosystem-section {
  background: #000;
  min-height: 100vh;
  padding: 150px 20px 100px;
  color: #fff;
}

.ecosystem-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.eco-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.eco-subtitle {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 50px;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.eco-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: left;
  transition: 0.25s ease;
}

.eco-card:hover {
  border-color: #6c63ff;
  transform: translateY(-6px);
}

.eco-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.eco-card p {
  color: #bbb;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .eco-grid {
    grid-template-columns: 1fr;
  }
}
.eligibility-text {
  margin-top: 10px;
  font-weight: 700;
  color: #ff4d4f;
  font-size: 14px;
   text-align: center;
}
