.modal { position: fixed; inset: 0; display: none; z-index: 50; }
.modal.open { display: block; }
.modal.open ~ * { overflow: hidden; } /* Prevent scroll when modal is open */
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); opacity: 0; transition: opacity 0.3s ease; }
.modal.open .modal__backdrop { opacity: 1; }
.modal__window { position: relative; max-width: 720px; width: min(92%, 720px); margin: 8vh auto; background: #fff; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.22); overflow: hidden; transform: scale(0.8) translateY(-50px); opacity: 0; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.modal.open .modal__window { transform: scale(1) translateY(0); opacity: 1; }
.modal__window--animated { transform: scale(0.8) translateY(-50px); opacity: 0; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.modal.open .modal__window--animated { transform: scale(1) translateY(0); opacity: 1; }
.modal__header { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.modal__body { padding: 16px 18px; color: var(--text); max-height: 60vh; overflow: auto; }
.modal__footer { display: flex; justify-content: flex-end; gap: 10px; padding: 12px 18px; border-top: 1px solid var(--border); }
.modal__close { background: transparent; border: none; font-size: 22px; cursor: pointer; }
/* Base */
:root {
  --bg: #ffffff;
  --text: #111216;
  --muted: #5b5e6a;
  --primary: #111216;
  --primary-2: #333333;
  --ring: rgba(17, 18, 22, .15);
  --border: #e5e7eb;
  --card: #ffffff;
  --green: #22c55e;
  --presale: #2e5bff;
  --team: #3b82f6;
  --strategic: #8b5cf6;
  --staking: #10b981;
  --ecosystem: #f59e0b;
  --marketing: #ef4444;
  --reserve: #6b7280;
}

* {
  box-sizing: border-box
}

/* Prevent horizontal scroll globally */
html {
  overflow-x: hidden;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding-top: 120px;
  font-family: 'Exo 2', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: 
    linear-gradient(90deg, 
      rgba(139, 92, 246, 0.6) 0%, 
      rgba(139, 92, 246, 0.3) 8%,
      transparent 20%, 
      transparent 80%, 
      rgba(124, 58, 237, 0.3) 92%,
      rgba(124, 58, 237, 0.6) 100%
    ),
    linear-gradient(135deg, #e8f0fe 0%, #d4e7ff 25%, #e0f0ff 50%, #d9ebff 75%, #e8f0fe 100%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, #1e40af 0%, #6d28d9 100%);
}

/* Firefox Scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #f1f5f9;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Smooth scroll for in-page anchors */
html {
  scroll-behavior: smooth;
}


.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4%;
  grid-column: 1 / -1;
  margin-bottom: 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 18, 22, 0.06);
  z-index: 1000;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.logo {
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1.5px;
}

/* Buy BLF Button */
.nav-buy-btn {
  background: #111;
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-left: 16px;
  margin-right: 24px;
}

.nav-buy-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Social Media Links */
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  /* Navbar social icons should use the default text color */
  color: var(--text);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link.telegram:hover {
  background: #0088cc;
  color: #ffffff;
}

.social-link.twitter:hover {
  background: #000000;
  color: #ffffff;
}

.social-link i {
  font-size: 22px;
}

/* Make sure SVGs and icon elements inherit the white color */
.social-link svg {
  width: 22px;
  height: 22px;
  display: inline-block;
  fill: currentColor;
  stroke: currentColor;
}

.social-link i {
  color: currentColor;
}

/* Broad rule to convert icon-like elements to white where appropriate.
   We use specific helper classes and a narrow set of selectors to avoid
   changing regular text. Use !important for emergency override.
*/
.icon, .icon * , .feature-icon, .feature-icon * {
  /* icon helper classes remain white if used elsewhere */
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 0.3px;
}

.menu a:hover {
  color: var(--primary)
}

.lang {
  position: relative
}

.lang select.is-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0
}

.lang__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1.5px solid var(--border);
  background: #fff;
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><path fill="%23666" d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center/18px 18px,
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><path fill="%234b5563" d="M12 2a10 10 0 1 0 0 20a10 10 0 0 0 0-20Zm0 2c1.6 0 3.06.6 4.17 1.59H7.83A6.98 6.98 0 0 1 12 4Zm-6 6c0-.69.1-1.35.3-1.98h11.4c.2.63.3 1.29.3 1.98s-.1 1.35-.3 1.98H6.3A6.98 6.98 0 0 1 6 10Zm1.83 4.41h8.34A6.98 6.98 0 0 1 12 20c-1.6 0-3.06-.6-4.17-1.59Z"/></svg>') no-repeat 12px center/18px 18px;
  padding: 10px 44px 10px 40px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(17, 18, 22, 0.06);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lang__select:hover {
  border-color: var(--primary)
}

.lang__select:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring)
}

/* Custom dropdown for prettier options */
.lang__dropdown {
  position: relative
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(17, 18, 22, 0.06);
  cursor: pointer
}

.lang-btn:hover {
  border-color: var(--primary)
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(17, 18, 22, .12);
  padding: 6px;
  display: none;
  z-index: 20
}

.lang-menu.open {
  display: block
}

.lang-item {
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer
}

.lang-item:hover {
  background: #edf2ff
}

.lang-item[aria-selected="true"] {
  background: #2e5bff;
  color: #fff
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

h1,
h2 {
  margin: 0 0 16px;
  font-family: 'Orbitron', monospace;
}

h1 {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: 1px;
}

h2 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
}

/* Diğer başlıklar için Rajdhani */
h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

p {
  color: var(--muted);
  margin: 0 0 16px;
  font-family: 'Saira Semi Condensed', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.accent {
  color: var(--primary)
}

/* Hero */
.hero {
  display: block;
  padding: 80px 0;
  position: relative;
  margin-top: 0; /* ESKİ: 24px, YENİ: 0 */
  overflow: hidden;
  width: 100%;
}

/* Hero Container */
.hero__container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Hero Video Background */
.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}


.hero::before {
  content: "";
  position: absolute;
  inset: -40px -10% auto -10%;
  height: 320px;
  background: radial-gradient(600px 240px at 40% 20%, rgba(109, 93, 251, .25), transparent 60%), radial-gradient(500px 200px at 60% 60%, rgba(43, 200, 217, .22), transparent 60%);
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

/* Hero Text Background Overlay */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 0;
}

.hero__subtitle {
  margin-bottom: 16px
}

/* Hide hero subtitle per requirement: keep only title, countdown, CTA */
.hero__subtitle { display: none; }


/* Hide any accidental long paragraph duplication on the right hero content */
.hero__content p:not(.hero__subtitle) { display: none; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Text Readability */
.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero span,
.hero strong {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: #ffffff;
  position: relative;
  z-index: 10;
}

/* Hero Countdown Timer Readability */
.hero .countdown .num,
.hero .countdown .label {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: #ffffff;
  position: relative;
  z-index: 10;
}

/* Thirdweb CTA */
.thirdweb-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.thirdweb-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.thirdweb-logo {
  display: inline-flex;
}

.thirdweb-logo svg path {
  fill: currentColor;
}

/* Hero Countdown Timer Readability */
.hero .countdown .num,
.hero .countdown .label {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

/* Shift hero right column (title + countdown + CTA) to the right on desktop */
.hero__content {
  transform: translateX(120px);
}

/* Presale card should not inherit transform from parent */
.hero__content .presale-wrap {
  transform: translateX(-120px);
}

/* Responsive: remove transform from presale-wrap */
@media (max-width: 980px) {
  .hero__content .presale-wrap {
    transform: none !important;
  }
}

/* Support Card Styles */
.hero__support {
  margin: 24px 0;
  display: flex;
  justify-content: flex-start;
}

.support-card {
  background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.2);
  transition: all 0.3s ease;
  max-width: 500px;
  width: 100%;
}

.support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 136, 204, 0.3);
}

.support-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-icon i {
  font-size: 24px;
  color: white;
}

.support-content {
  flex: 1;
  color: white;
}

.support-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: white;
}

.support-content p {
  font-size: 14px;
  margin: 0 0 12px 0;
  opacity: 0.9;
  color: white;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.support-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.support-link i {
  font-size: 16px;
}

.hero__left p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero__left p strong {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
  display: block;
  margin-bottom: 8px;
  font-family: 'Arial Black', 'Helvetica', sans-serif;
}



/* Shared blocks */
.grid {
  display: grid;
  gap: 28px;
  margin: 24px auto
}

.grid--2 {
  grid-template-columns: 1fr 1fr
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr)
}

/* stack utility kept in case needed elsewhere */
.stack {
  display: grid;
  gap: 24px;
  margin: 24px auto
}

.grid-aside {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  margin: 24px auto
}

.left-stack {
  display: grid;
  gap: 24px
}

.tall {
  align-self: stretch
}

.card {
  background: var(--card);
  border: none;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.card.trust {
  background-image: url('./img/trust.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  position: relative;
  min-height: 600px !important;
  height: 600px !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 40px 20px !important;
  margin-bottom: 50px !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: crisp-edges !important;
}

.card.trust h2 {
  text-align: center !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  margin-bottom: 30px !important;
  color: #ffffff !important;
}

.card.trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px;
  z-index: 0;
}

.card.trust > * {
  position: relative;
  z-index: 1;
}


.tokenomics {
  /* JavaScript will handle the background animation */
  background: linear-gradient(45deg, 
    rgb(139, 92, 246) 0%, 
    rgb(59, 130, 246) 25%, 
    rgb(124, 58, 237) 50%, 
    rgb(139, 92, 246) 75%, 
    rgb(59, 130, 246) 100%);
  color: var(--text);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.1s ease;
}

.list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none
}

.list--check li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0
}

.list--check li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .15);
  border: 2px solid var(--green);
  display: inline-block
}

/* Tokenomics */
.tokenomics__wrap {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin: 8px 0 12px;
  padding: 30px 20px;
  min-height: 320px;
}

.tokenomics__chart {
  position: relative;
  flex-shrink: 0;
}

/* Tokenomics Figure Image */
.tokenomics__figure {
  max-width: 200px;
  height: auto;
  margin: 20px auto 30px -20px;
  display: block;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.tokenomics__figure:hover {
  opacity: 1;
  transform: scale(1.05);
}


.tokenomics__legend {
  flex: 1;
  min-width: 0;
  padding-right: 10px;
  overflow: visible;
}

.tokenomics__pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-item {
  text-align: center;
}

.pricing-item dt {
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 8px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.pricing-item dd {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin: 0;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Removed old keyframe animations */

.pieID {
  display: inline-block;
  vertical-align: top;
}

.pie {
  height: 220px;
  width: 220px;
  position: relative;
  margin: 0 30px 30px 0;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity .3s ease, transform .3s ease;
}

.pie.is-ready {
  opacity: 1;
  transform: scale(1);
}

/* No inner hole: render as solid pie */
.pie::before { display: none; }

.pie::after {
  /* remove bottom line so it blends with page */
  display: none;
}

.slice {
  position: absolute;
  width: 200px;
  height: 200px;
  clip: rect(0px, 200px, 200px, 100px);
  cursor: pointer;
  z-index: 1;
  transition: transform .2s ease, box-shadow .2s ease, z-index .2s ease;
}

/* Hover transform is handled via JS to avoid transform string conflicts */
.slice:hover { z-index: 1; }

.slice span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  clip: rect(0px, 200px, 200px, 100px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.slice:hover span {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.legend {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: #fff;
  padding: 20px;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(17, 18, 22, 0.06);
  border-radius: 12px;
  border: 1px solid var(--border);
  opacity: 0;
  word-wrap: break-word;
  overflow: visible;
  max-width: 100%;
  box-sizing: border-box;
  transform: translateX(-6px);
  transition: opacity .25s ease .05s, transform .25s ease .05s;
  width: 100%;
  max-width: 320px;
}

.legend.is-ready {
  opacity: 1;
  transform: translateX(0);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all .2s ease;
}

.legend-item:last-child {
  border-bottom: none;
}

.legend-item:hover {
  background: #f8fafc;
  border-radius: 8px;
  padding: 12px 8px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.legend-item:hover .legend-color { transform: scale(1.05); }

.legend-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.legend-content em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  flex: 1;
  margin-right: 8px;
}

.legend-percentage {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* Legend colors */
.legend-item[data-category="presale"] .legend-color {
  background: var(--presale);
}

.legend-item[data-category="team"] .legend-color {
  background: var(--team);
}

.legend-item[data-category="strategic"] .legend-color {
  background: var(--strategic);
}

.legend-item[data-category="staking"] .legend-color {
  background: var(--staking);
}

.legend-item[data-category="ecosystem"] .legend-color {
  background: var(--ecosystem);
}

.legend-item[data-category="marketing"] .legend-color {
  background: var(--marketing);
}

.legend-item[data-category="reserve"] .legend-color {
  background: var(--reserve);
}

/* Legacy dot classes for pie chart */
.dot--presale {
  background: var(--presale)
}

.dot--team {
  background: var(--team)
}

.dot--strategic {
  background: var(--strategic)
}

.dot--staking {
  background: var(--staking)
}

.dot--ecosystem {
  background: var(--ecosystem)
}

.dot--marketing {
  background: var(--marketing)
}

.dot--reserve {
  background: var(--reserve)
}

.kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px
}

.kv dt {
  color: var(--muted)
}

.kv dd {
  margin: 0;
  font-weight: 600
}


/* Steps */
.steps {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px
}

.steps li {
  display: flex;
  gap: 10px;
  align-items: center
}

.steps .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #edf2ff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700
}

/* Trust */
.trust__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  height: 100%;
  padding: 0 20px;
}

.trust .trust__items {
  padding: 0 16px 0 32px
}

.trust--three {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  height: 100%;
}

.trust--two {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  height: 100%;
}

.trust__item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  transition: transform 0.2s ease;
}

.trust__item:hover {
  transform: translateX(4px);
}

.trust__title {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}

.trust__title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.trust__title a:hover {
  color: #f0f0f0;
  text-decoration: underline;
}

.trust__desc {
  color: var(--muted);
  font-size: 14px
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(147, 51, 234, 0.2);
  border: none;
  display: grid;
  place-items: center;
  color: #7c3aed;
  flex-shrink: 0;
}

.icon i {
  font-size: 20px;
  color: #7c3aed;
}

.tile {
  background: linear-gradient(180deg, #e6ebff, #eef2ff)
}

.cert {
  background: linear-gradient(180deg, #e2fff3, #f0fffa)
}

.file {
  background: linear-gradient(180deg, #fff0e1, #fff8ee)
}

.team {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e5e7eb;
  display: grid;
  place-items: center;
  font-weight: 700;
  overflow: hidden;
  border: 3px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.avatar:hover {
  transform: scale(1.1);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%
}

.team__label {
  margin-left: 8px;
  color: var(--muted)
}

.company .company__preview {
  margin-top: 10px;
  width: 140px;
  height: 56px;
  border-radius: 10px;
  background: #eef1f6;
  border: 1px solid var(--border);
  position: relative
}

.company .stamp {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 28px;
  height: 14px;
  background: #6b7bff;
  border-radius: 8px
}

.docs .trust__item {
  align-items: center;
  padding: 16px 0;
}

.docs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
  height: 100%;
}

.people {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 20px 0;
}

.people .group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.people .trust__label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
  line-height: 1.4;
}

.people .team {
  justify-content: center;
  align-items: center;
}

.people .social {
  justify-content: center;
  gap: 16px;
}

.social--colored .sc--tg {
  background: #2fa3ff
}

.social--colored .sc--dc {
  background: #6b5bff
}

.social--colored .sc--tw {
  background: #1da1f2
}

.social--colored .sc {
  border: none
}

/* Ensure colored social buttons show white icons */
.social--colored .sc,
.social--colored .sc i {
  color: #ffffff;
  fill: currentColor;
  stroke: currentColor;
}

/* Empty Column - Pepe in background */
.trust__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  /* Boş kolon - Pepe background resimde görünüyor */
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px
}

.social a {
  text-decoration: none
}

.sc {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(46, 91, 255, .1);
  color: #1e293b;
  border: none;
  text-decoration: none
}

.sc i {
  font-size: 24px;
  transition: transform 0.2s ease;
}

.sc:hover i {
  transform: scale(1.2);
}

.social__label {
  color: var(--muted)
}

/* CTA */
.cta {
  display: grid;
  gap: 12px;
  padding: 28px 0
}

.cta h2 {
  margin-bottom: 0
}

.cta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.countdown {
  display: flex;
  gap: 28px;
  margin: 8px 0 16px;
  transform: none;
}

.time {
  display: grid;
  justify-items: center
}

.time .num {
  font-weight: 800;
  font-size: 48px;
}

.time .label {
  color: var(--muted);
  font-size: 12px;
}

.footer {
  padding: 32px 0 60px;
  color: var(--muted);
  font-size: 14px
}
/* New newsletter footer */
.site-footer {
  margin-top: 40px;
}

.footer__bg {
  background: 
    linear-gradient(90deg, 
      rgba(139, 92, 246, 0.6) 0%, 
      rgba(139, 92, 246, 0.3) 8%,
      transparent 20%, 
      transparent 80%, 
      rgba(124, 58, 237, 0.3) 92%,
      rgba(124, 58, 237, 0.6) 100%
    ),
    linear-gradient(135deg, #e8f0fe 0%, #d4e7ff 25%, #e0f0ff 50%, #d9ebff 75%, #e8f0fe 100%);
  background-attachment: fixed;
  color: var(--text);
  padding: 48px 0 32px;
  position: relative;
}


.footer__bg > * {
  position: relative;
  z-index: 1;
}

.footer__newsletter {
  max-width: 840px;
  margin: 0 auto 36px;
  text-align: left;
}

.footer__title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
}

.footer__subtitle { margin: 0 0 16px; color: var(--muted); }

.footer__form {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 10px;
  margin-bottom: 10px;
}

.footer__status { margin: 6px 0 0; font-size: 14px; }

.footer__input {
  height: 52px;
  border-radius: 14px;
  border: none;
  padding: 0 16px;
  font-weight: 600;
}

.footer__submit {
  height: 52px;
  border-radius: 14px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.footer__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.footer__link { color: var(--primary); }

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img { height: 40px; width: auto; display: block; }
.footer-logo-text { font-weight: 800; font-size: 32px; letter-spacing: 0.3px; }

.footer__nav {
  display: flex;
  gap: 28px;
}

.footer__nav a { color: var(--text); text-decoration: none; font-weight: 700; }

.footer__social { display: flex; gap: 18px; }
/* Force footer social icons white */
.social-ic {
  color: #ffffff !important;
  font-size: 26px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.social-ic:hover { color: #ffffff !important; }
.social-ic.tg:hover { color: #ffffff !important; }
.social-ic.instagram:hover { color: #ffffff !important; }
.social-ic.x:hover { color: #ffffff !important; }

.social-ic i {
  color: currentColor;
  fill: currentColor;
  stroke: currentColor;
}

.footer__legal {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  
  /* Support Card Responsive */
  .hero__support {
    margin: 20px 0;
    justify-content: flex-start;
  }
  
  .support-card {
    padding: 16px;
    gap: 12px;
    max-width: 100%;
  }
  
  .support-icon {
    width: 40px;
    height: 40px;
  }
  
  .support-icon i {
    font-size: 20px;
  }
  
  .support-content h3 {
    font-size: 16px;
  }
  
  .support-content p {
    font-size: 13px;
  }
  
  .support-link {
    padding: 6px 12px;
    font-size: 13px;
  }
}

.footer .legal {
  display: flex;
  gap: 16px;
  margin: 10px 0
}

.footer .legal a {
  color: var(--muted);
  text-decoration: none
}

.footer .legal a:hover {
  color: var(--text)
}

.footer .risk {
  color: var(--muted)
}

/* Sections */
.section {
  padding: 30px 0
}
/* Press slider */
.press {
  background: 
    linear-gradient(90deg, 
      rgba(139, 92, 246, 0.6) 0%, 
      rgba(139, 92, 246, 0.3) 8%,
       
      rgba(124, 58, 237, 0.3) 92%,
      rgba(124, 58, 237, 0.6) 100%
    ),
    linear-gradient(135deg, #e8f0fe 0%, #d4e7ff 25%, #e0f0ff 50%, #d9ebff 75%, #e8f0fe 100%);
  background-attachment: fixed;
  position: relative;
  border-radius: 24px !important;
  overflow: hidden !important;
  padding: 32px 0 !important;
  margin-top: 40px !important;
}

.press::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3) !important;
  z-index: 0;
}

.press > * {
  position: relative;
  z-index: 1;
}

.press h2 { 
  margin-bottom: 8px; 
  text-align: center !important;
  color: #111;
}
.press__viewport { position: relative; }
.press__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 48px; /* space for arrows */
}
.press__item {
  display: grid;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  color: inherit;
  scroll-snap-align: start;
}

.press__item a {
  text-decoration: none;
}
.press__logo { font-weight: 800; }
.press__logo-with-text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.press__logo-img-inline {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.press__logo-text {
  font-weight: 800;
  font-size: 1rem;
  color: #111;
  text-decoration: none;
}
.press__text { color: var(--muted); font-size: 14px; }
.press__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}
.press__arrow.left { left: 4px; }
.press__arrow.right { right: 4px; }

.muted {
  color: var(--muted)
}

.features {
  margin-top: 14px
}
.video-section .video-container {
  position: relative;
  width: 100%;
  margin: 10px 0 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  border: 1px solid var(--border);
  background: #000;
}

.video-section .video-frame {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9; /* daha enli görünüm */
  object-fit: cover;
}

/* Partners strip */
.partners {
  background-image: url('./img/features.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  overflow: hidden;
  margin: 0;
}

.partners__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.partners__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 40px;
}

.partners__logo {
  display: block;
  height: 40px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.partners__logo:hover {
  transform: translateY(-2px) scale(1.02);
  opacity: 1;
}

.partners__logo--boost {
  height: 48px;
}

@media (max-width: 980px) {
  .partners {
    padding: 35px 0;
  }
  
  .partners__content {
    padding: 0 30px;
  }
  
  .partners__row {
    gap: 25px 35px;
  }
  
  .partners__logo {
    height: 35px;
    max-width: 140px;
  }
  
  .partners__logo--boost {
    height: 42px;
  }
}

@media (max-width: 720px) {
  .partners {
    padding: 30px 0;
  }
  
  .partners__content {
    padding: 0 20px;
  }
  
  .partners__row {
    gap: 20px 30px;
  }
  
  .partners__logo {
    height: 28px;
    max-width: 110px;
  }
  
  .partners__logo--boost {
    height: 35px;
  }
}

/* Horizontal Roadmap */
.roadmap { position: relative; }
.roadmap .container { position: relative; }
.timeline {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 8px 4px;
}
.timeline::-webkit-scrollbar { height: 8px; }
.timeline::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 8px; }
.timeline::-webkit-scrollbar-track { background: transparent; }

.titem { scroll-snap-align: start; position: relative; }
.tbadge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(46, 91, 255, .12);
  color: var(--primary);
  font-weight: 800;
  display: grid;
  place-items: center;
  position: absolute;
  top: -10px;
  left: -10px;
}
.tcontent {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  min-height: 160px;
  transition: transform .2s ease, box-shadow .25s ease;
  animation: roadmapEnter .5s ease both;
}
.titem:nth-child(1) .tcontent { animation-delay: .02s; }
.titem:nth-child(2) .tcontent { animation-delay: .08s; }
.titem:nth-child(3) .tcontent { animation-delay: .14s; }
.titem:nth-child(4) .tcontent { animation-delay: .2s; }

.tcontent:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.10); }
.ttitle { font-weight: 700; margin: 0 0 6px; }
.ttext { color: var(--muted); }

@keyframes roadmapEnter {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .timeline { grid-auto-columns: minmax(240px, 80%); }
}

/* Roadbar (pill style) */
.roadbar {
  position: relative;
  padding: 8px 0 140px;
}
.roadbar__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.03), 0 8px 24px rgba(0,0,0,.06);
  overflow: visible;
  position: relative;
}
.seg {
  border-radius: 999px;
  color: #fff;
  display: grid;
  place-items: center;
  height: 42px;
  font-weight: 800;
  letter-spacing: .3px;
  position: relative;
  animation: segIn .5s ease both;
}
.seg span { position: relative; z-index: 1; }
.seg::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  border-radius: inherit;
  filter: blur(0);
}
.seg--a { background: #14b8a6; }
.seg--b { background: #0ea5e9; }
.seg--c { background: #0369a1; }
.seg--d { background: #f59e0b; }
.seg--e { background: #f97316; }
.seg--f { background: #ef4444; }

.seg:hover { transform: translateY(-2px); box-shadow: none; }

@keyframes segIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Roadbar hover card */
.seg__card {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 14px);
  width: min(360px, 88vw);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 5;
}
.seg:hover .seg__card { opacity: 1; transform: translate(-50%, -8px); }
.seg__title { font-weight: 800; margin: 0 0 6px; color: var(--text); }
.seg__text { color: var(--muted); font-size: 14px; }

.feature {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(59, 130, 246, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 380px;
  height: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.feature.animate-in {
  animation: fadeInUp 0.6s ease-out both;
}

.feature:nth-child(1).animate-in {
  animation-delay: 0.1s;
}

.feature:nth-child(2).animate-in {
  animation-delay: 0.2s;
}

.feature:nth-child(3).animate-in {
  animation-delay: 0.3s;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
}

.feature:hover::before {
  opacity: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent, transparent, transparent,
    rgba(59, 130, 246, 0.1), 
    transparent, transparent, transparent
  );
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: shimmer 3s ease-in-out infinite;
}

.feature:hover::after {
  opacity: 1;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.ficon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  margin-bottom: 28px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ficon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.feature:hover .ficon::before {
  opacity: 1;
}

.feature:hover .ficon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.ficon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: inherit;
}

.feature:hover .ficon img {
  filter: drop-shadow(0 6px 24px rgba(59, 130, 246, 0.4));
  transform: scale(1.05);
}

.feature h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 18px 0;
  text-align: center;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--text) 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Saira Semi Condensed', sans-serif;
  letter-spacing: 0.5px;
}

.feature:hover h3 {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
  font-weight: 500;
}

.feature:hover p {
  color: #374151;
  transform: translateY(-1px);
}

/* Feature Cards Responsive */
@media (max-width: 980px) {
  .feature {
    min-height: 340px;
    padding: 36px 24px;
  }
  
  .ficon {
    width: 110px;
    height: 110px;
    margin-bottom: 24px;
  }
  
  .feature h3 {
    font-size: 1.4rem;
  }
  
  .feature p {
    font-size: 1rem;
  }
}

@media (max-width: 720px) {
  .grid--3 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .feature {
    min-height: 320px;
    padding: 32px 24px;
  }
  
  .ficon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  
  .feature h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  
  .feature p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .feature {
    min-height: 280px;
    padding: 28px 20px;
  }
  
  .ficon {
    width: 90px;
    height: 90px;
    margin-bottom: 18px;
  }
  
  .feature h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
  
  .feature p {
    font-size: 0.9rem;
  }
}

/* Roadmap Section */
.roadmap {
  background: 
    linear-gradient(90deg, 
      rgba(139, 92, 246, 0.6) 0%, 
      rgba(139, 92, 246, 0.3) 8%,
      transparent 20%, 
      transparent 80%, 
      rgba(124, 58, 237, 0.3) 92%,
      rgba(124, 58, 237, 0.6) 100%
    ),
    linear-gradient(135deg, #e8f0fe 0%, #d4e7ff 25%, #e0f0ff 50%, #d9ebff 75%, #e8f0fe 100%);
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(59,130,246,0.1)"/></svg>') repeat;
  background-size: 50px 50px;
  pointer-events: none;
}

.roadmap h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Roadmap layout styles removed - using only content now */

.roadmap__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.roadmap__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 50px;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

/* Roadmap Cards */
.roadmap__card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 4px 20px rgba(59, 130, 246, 0.06);
  border: 2px solid rgba(59, 130, 246, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px) rotateX(-10deg) scale(0.85);
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.roadmap__card.animate-in {
  animation: roadmapCardSlide 0.8s ease-out both;
}

.roadmap__card--1 { 
  grid-column: 1; 
  grid-row: 1;
  border-color: rgba(34, 197, 94, 0.2);
}

.roadmap__card--1.animate-in {
  animation-delay: 0.1s;
}

.roadmap__card--2 { 
  grid-column: 2; 
  grid-row: 1;
  border-color: rgba(59, 130, 246, 0.2);
}

.roadmap__card--2.animate-in {
  animation-delay: 0.2s;
}

.roadmap__card--3 { 
  grid-column: 3; 
  grid-row: 1;
  border-color: rgba(139, 92, 246, 0.2);
}

.roadmap__card--3.animate-in {
  animation-delay: 0.3s;
}

.roadmap__card--4 { 
  grid-column: 1; 
  grid-row: 2;
  border-color: rgba(245, 158, 11, 0.2);
}

.roadmap__card--4.animate-in {
  animation-delay: 0.4s;
}

.roadmap__card--5 { 
  grid-column: 2; 
  grid-row: 2;
}

.roadmap__card--5.animate-in {
  animation-delay: 0.5s;
}

/* Special styling for 2026-Q1 and 2026-Q2 number badges */
.roadmap__card--3 .roadmap__number,
.roadmap__card--4 .roadmap__number {
  width: 80px;
  height: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 25px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
}

/* Special styling for the image card (card 6) - Full image, no background, no shadow, no hover */
.roadmap__card--6 { 
  grid-column: 3; 
  grid-row: 2;
  padding: 0;
  background: none;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  min-height: 300px;
  box-shadow: none;
}

.roadmap__card--6 .roadmap__future-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 24px;
  object-fit: cover;
}

.roadmap__card--6.animate-in {
  animation-delay: 0.6s;
}

@keyframes roadmapCardSlide {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(-10deg) scale(0.85);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-5px) rotateX(2deg) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

.roadmap__card:hover {
  transform: translateY(-12px) rotateX(5deg) scale(1.03);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.18),
    0 12px 40px rgba(59, 130, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

/* Roadmap Card Content */
.roadmap__number {
  position: absolute;
  top: -15px;
  left: 24px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap__card:hover .roadmap__number {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #a855f7);
}

.roadmap__card-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.roadmap__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 20px 0;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
}

.roadmap__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap__list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--muted);
  font-weight: 500;
  transition: all 0.3s ease;
}

.roadmap__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
}

.roadmap__card:hover .roadmap__list li {
  color: var(--text);
  transform: translateX(4px);
}

/* Roadmap Icons - Removed */




/* Roadmap Responsive */
@media (max-width: 980px) {
  .roadmap {
    padding: 60px 0;
  }
  
  .roadmap h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
  
  /* Roadmap layout styles removed */
  
  .roadmap__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .roadmap__card--1 { grid-column: 1; grid-row: 1; }
  .roadmap__card--2 { grid-column: 1; grid-row: 2; }
  .roadmap__card--3 { grid-column: 1; grid-row: 3; }
  .roadmap__card--4 { grid-column: 1; grid-row: 4; }
  .roadmap__card--5 { grid-column: 1; grid-row: 5; }
  .roadmap__card--6 { 
    grid-column: 1; 
    grid-row: 6; 
    padding: 0;
    min-height: 250px;
    background: none;
    border: none;
  }
  
  .roadmap__card--6 .roadmap__future-img {
    min-height: 250px;
    border-radius: 20px;
  }
  
  .roadmap__card {
    padding: 32px 28px;
    min-height: 280px;
  }
  
  .roadmap__title {
    font-size: 1.1rem;
  }
  
  /* Special responsive styling for 2026-Q1 and 2026-Q2 badges */
  .roadmap__card--3 .roadmap__number,
  .roadmap__card--4 .roadmap__number {
    width: 75px;
    height: 45px;
    font-size: 0.8rem;
  }
  
  /* Roadmap icons removed */
  
}

@media (max-width: 768px) {
  .roadmap {
    padding: 55px 0;
  }
  
  .roadmap h2 {
    font-size: 2.2rem;
    margin-bottom: 45px;
  }
  
  /* Roadmap layout styles removed */
  
  .roadmap__grid {
    max-width: 550px;
    margin: 0 auto;
  }

  .roadmap__card--3 .roadmap__number,
  .roadmap__card--4 .roadmap__number {
    width: 75px;
    height: 45px;
    font-size: 0.8rem;
  }
  
}

@media (max-width: 720px) {
  .roadmap {
    padding: 50px 0;
  }
  
  .roadmap h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  /* Roadmap layout styles removed */
  
  .roadmap__grid {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .roadmap__card {
    padding: 28px 24px;
    min-height: 260px;
  }
  
  .roadmap__card--6 {
    padding: 0;
    min-height: 260px;
    background: none;
    border: none;
  }
  
  .roadmap__card--6 .roadmap__future-img {
    min-height: 260px;
    border-radius: 20px;
  }
  
  .roadmap__title {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  
  .roadmap__list li {
    padding: 6px 0 6px 20px;
    font-size: 0.9rem;
  }
  
  .roadmap__number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .roadmap__card--3 .roadmap__number,
  .roadmap__card--4 .roadmap__number {
    width: 75px;
    height: 45px;
    font-size: 0.8rem;
  }
  
  /* Roadmap image styles removed */
}

@media (max-width: 480px) {
  .roadmap {
    padding: 40px 0;
  }
  
  .roadmap h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  /* Roadmap layout styles removed */
  
  .roadmap__grid {
    max-width: 400px;
    margin: 0 auto;
    gap: 25px;
  }
  
  .roadmap__card {
    padding: 24px 20px;
    min-height: 240px;
  }
  
  .roadmap__card--6 {
    padding: 0;
    min-height: 240px;
    background: none;
    border: none;
  }
  
  .roadmap__card--6 .roadmap__future-img {
    min-height: 240px;
    border-radius: 16px;
  }
  
  .roadmap__title {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }
  
  .roadmap__list li {
    padding: 5px 0 5px 18px;
    font-size: 0.85rem;
  }
  
  .roadmap__list li::before {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }
  
  /* Roadmap icons removed */
  
  .roadmap__number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    top: -12px;
    left: 20px;
  }
  
  .roadmap__card--3 .roadmap__number,
  .roadmap__card--4 .roadmap__number {
    width: 75px;
    height: 45px;
    font-size: 0.8rem;
  }
  
  /* Roadmap image styles removed */
}

/* Press Section */
.press {
  background: 
    linear-gradient(90deg, 
      rgba(139, 92, 246, 0.6) 0%, 
      rgba(139, 92, 246, 0.3) 8%,
      transparent 20%, 
      transparent 80%, 
      rgba(124, 58, 237, 0.3) 92%,
      rgba(124, 58, 237, 0.6) 100%
    ),
    linear-gradient(135deg, #e8f0fe 0%, #d4e7ff 25%, #e0f0ff 50%, #d9ebff 75%, #e8f0fe 100%);
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.press::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.press__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.press__carousel {
  width: 100%;
  text-align: center;
}

.press__carousel h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 40px 0;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
}

.press__header {
  animation: pressHeaderSlide 1.2s ease-out;
}

.press__title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 20px 0;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.press__subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.press__visual {
  position: relative;
  animation: pressImageFloat 1.5s ease-out 0.3s both;
}

.press__image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 32px rgba(59, 130, 246, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.press__image:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.2),
    0 12px 40px rgba(59, 130, 246, 0.15);
}

@keyframes pressHeaderSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pressImageFloat {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Press Responsive */
@media (max-width: 980px) {
  .press {
    padding: 60px 0;
  }
  
  .press__content {
    gap: 50px;
  }
  
  .press__image {
    max-width: 600px;
    width: 100%;
  }
  
  .press__carousel h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }
}

@media (max-width: 720px) {
  .press {
    padding: 50px 0;
  }
  
  .press__content {
    margin: 0 20px;
    gap: 40px;
  }
  
  .press__image {
    border-radius: 20px;
    max-width: 100%;
  }
  
  .press__carousel h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .press {
    padding: 40px 0;
  }
  
  .press__content {
    margin: 0 15px;
    gap: 35px;
  }
  
  .press__image {
    border-radius: 16px;
  }
  
  .press__image:hover {
    transform: scale(1.02) translateY(-5px);
  }
  
  .press__carousel h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}

/* How to Buy Section */
.how-to-buy {
  background: 
    linear-gradient(90deg, 
      rgba(139, 92, 246, 0.6) 0%, 
      rgba(139, 92, 246, 0.3) 8%,
      transparent 20%, 
      transparent 80%, 
      rgba(124, 58, 237, 0.3) 92%,
      rgba(124, 58, 237, 0.6) 100%
    ),
    linear-gradient(135deg, #e8f0fe 0%, #d4e7ff 25%, #e0f0ff 50%, #d9ebff 75%, #e8f0fe 100%);
  background-attachment: fixed;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.how-to-buy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(147, 197, 253, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.how-to-buy__header {
  text-align: center;
  margin-bottom: 80px;
  animation: howToBuyHeaderFade 1s ease-out;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.how-to-buy__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.how-to-buy__text {
  flex: 2;
  text-align: left;
}

.how-to-buy__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-to-buy__motor {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.3));
  transition: all 0.3s ease;
  animation: motorFloat 3s ease-in-out infinite;
}

/* Motor kartı hover efektini devre dışı bırak */
.how-to-buy__card--6:hover {
  transform: none !important;
  box-shadow: none !important;
}

.how-to-buy__card--6:hover .how-to-buy__motor {
  transform: none !important;
  filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.3)) !important;
}

/* Roadmap kartı hover efektini devre dışı bırak */
.roadmap__card.roadmap__card--6:hover {
  transform: none !important;
  box-shadow: none !important;
  background: inherit !important;
}

.roadmap__card.roadmap__card--6:hover .roadmap__number {
  transform: none !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6) !important;
}

.roadmap__card.roadmap__card--6:hover .roadmap__list li {
  transform: none !important;
  color: inherit !important;
}

@keyframes motorFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.how-to-buy__title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 20px 0;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.how-to-buy__subtitle {
  font-size: 1.3rem;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
  opacity: 0.9;
}

.how-to-buy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* How to Buy Cards */
.how-to-buy__card {
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 24px;
  padding: 70px 30px 30px 30px;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 
    0 20px 50px rgba(59, 130, 246, 0.15),
    0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  overflow: visible;
  z-index: 1;
}

.how-to-buy__card.animate-in {
  animation: cardSlideUp 0.8s ease-out both;
}

/* Removed hover line effect */

/* Card Specific Colors */
.how-to-buy__card--1 {
  border-color: rgba(34, 197, 94, 0.3);
}

.how-to-buy__card--1.animate-in {
  animation-delay: 0.1s;
}

/* Removed card 1 hover line */

.how-to-buy__card--2 {
  border-color: rgba(59, 130, 246, 0.3);
}

.how-to-buy__card--2.animate-in {
  animation-delay: 0.2s;
}

/* Removed card 2 hover line */

.how-to-buy__card--3 {
  border-color: rgba(139, 92, 246, 0.3);
}

.how-to-buy__card--3.animate-in {
  animation-delay: 0.3s;
}

/* Removed card 3 hover line */

.how-to-buy__card--4 {
  border-color: rgba(236, 72, 153, 0.3);
}

.how-to-buy__card--4.animate-in {
  animation-delay: 0.4s;
}

/* Removed card 4 hover line */

.how-to-buy__card--5 {
  border-color: rgba(168, 85, 247, 0.3);
}

.how-to-buy__card--5.animate-in {
  animation-delay: 0.5s;
}

/* Removed card 5 hover line */

/* Special styling for the image card (card 6) - Full image, no background, no shadow, no hover */
.how-to-buy__card--6 { 
  grid-column: 3; 
  grid-row: 2;
  padding: 0;
  background: none;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: none;
}

.how-to-buy__card--6 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-to-buy__card--6 .how-to-buy__motor {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 24px;
  object-fit: contain;
}

.how-to-buy__card--6.animate-in {
  animation-delay: 0.6s;
}

/* Card Content */
.how-to-buy__number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  border: 4px solid white;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
  transition: all 0.3s ease;
  z-index: 1000;
}

.how-to-buy__content {
  position: relative;
  z-index: 2;
  padding-top: 5px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.how-to-buy__card-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
}

.how-to-buy__card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #374151;
  margin: 0;
  font-weight: 600;
  font-family: 'Saira Semi Condensed', sans-serif;
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Hover Effects */
.how-to-buy__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 70px rgba(59, 130, 246, 0.25),
    0 12px 35px rgba(0, 0, 0, 0.15);
}

.how-to-buy__card:hover .how-to-buy__number {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.7);
  z-index: 101;
}

/* Animations */
@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes howToBuyHeaderFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* How to Buy Responsive */
@media (max-width: 1280px) {
  .how-to-buy__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .how-to-buy__card {
    padding: 50px 25px 25px 25px;
    min-height: 280px;
  }
  
  .how-to-buy__number {
    top: -25px;
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
  
  .how-to-buy__card--6 {
    min-height: 280px;
    padding: 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .how-to-buy__card--6 .how-to-buy__motor {
    min-height: 280px;
    border-radius: 24px;
    object-fit: contain;
  }
}

@media (max-width: 980px) {
  .how-to-buy {
    padding: 80px 0;
  }
  
  .how-to-buy__title {
    font-size: 3rem;
  }
  
  .how-to-buy__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .how-to-buy__card {
    padding: 50px 25px 25px 25px;
    min-height: 260px;
  }
  
  .how-to-buy__number {
    top: -25px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .how-to-buy__card-title {
    font-size: 1.3rem;
  }
  
  .how-to-buy__card--6 {
    grid-column: 2;
    grid-row: 3;
    min-height: 260px;
    padding: 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .how-to-buy__card--6 .how-to-buy__motor {
    min-height: 260px;
    border-radius: 20px;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .how-to-buy {
    padding: 65px 0;
  }
  
  .how-to-buy__title {
    font-size: 2.8rem;
  }
  
  .how-to-buy__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
    max-width: 650px;
    margin: 0 auto;
  }
  
  .how-to-buy__card {
    padding: 45px 20px 20px 20px;
    min-height: 250px;
  }
  
  .how-to-buy__number {
    top: -20px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .how-to-buy__card--6 {
    grid-column: 2;
    grid-row: 3;
    min-height: 250px;
    padding: 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .how-to-buy__card--6 .how-to-buy__motor {
    min-height: 250px;
    border-radius: 20px;
    object-fit: contain;
  }
}

@media (max-width: 720px) {
  .how-to-buy {
    padding: 60px 0;
  }
  
  .how-to-buy__header {
    margin-bottom: 60px;
  }
  
  .how-to-buy__title {
    font-size: 2.5rem;
  }
  
  .how-to-buy__subtitle {
    font-size: 1.1rem;
  }
  
  .how-to-buy__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 25px;
    margin: 0 20px;
    max-width: 500px;
  }
  
  .how-to-buy__card {
    padding: 50px 20px 25px 20px;
    min-height: 270px;
  }
  
  .how-to-buy__number {
    top: -20px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .how-to-buy__card--6 {
    grid-column: 1;
    grid-row: 6;
    min-height: 270px;
    padding: 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .how-to-buy__card--6 .how-to-buy__motor {
    min-height: 270px;
    border-radius: 20px;
    object-fit: contain;
  }

  /* Motor görsel mobilde görünsün */
  .how-to-buy__motor {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .how-to-buy {
    padding: 50px 0;
  }
  
  .how-to-buy__title {
    font-size: 2rem;
  }
  
  .how-to-buy__subtitle {
    font-size: 1rem;
  }
  
  .how-to-buy__grid {
    margin: 0 15px;
    gap: 20px;
    max-width: 400px;
  }
  
  .how-to-buy__card {
    padding: 45px 15px 20px 15px;
    min-height: 220px;
  }
  
  .how-to-buy__card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .how-to-buy__card-text {
    font-size: 0.85rem;
  }
  
  .how-to-buy__number {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    top: -18px;
  }
  
  .how-to-buy__card--6 {
    grid-column: 1;
    grid-row: 6;
    min-height: 220px;
    padding: 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .how-to-buy__card--6 .how-to-buy__motor {
    min-height: 220px;
    border-radius: 16px;
    object-fit: contain;
  }

  /* En küçük mobil ekranlarda motor görseli */
  .how-to-buy__motor {
    max-width: 120px;
  }
}

.early__card .fineprint {
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px
}



/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.mobile-menu-btn.active .hamburger:first-child {
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
  transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    width: min(1000px, 92%);
    padding: 0 20px;
  }
  
  .hero__grid {
    gap: 20px;
  }
  
  .hero__left p {
    font-size: 15px;
  }
  
  .hero__left p strong {
    font-size: 44px;
    letter-spacing: 1.5px;
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    margin-bottom: 6px;
  }
  
  .presale-wrap {
    margin: 16px auto 0;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .presale-card {
    padding: 20px;
  }
  
  .presale-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .presale-title {
    font-size: 16px;
    text-align: center;
  }
  
  /* Early layout responsive */
  .early-layout {
    gap: 40px;
    padding: 28px;
  }
  
  .early-text {
    padding-right: 30px;
  }
  
  .token-details-card {
    max-width: 380px;
  }
}

@media (max-width: 980px) {
  /* Hide social links on mobile */
  .social-links {
    display: none;
  }
  
  .hero {
    text-align: left;
    padding: 60px 0;
    width: 100%;
  }
  
  .hero__grid { 
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero__left {
    order: 2;
  }
  
  .hero__content {
    order: 1;
    text-align: center;
    transform: none;
    padding: 0 20px;
  }
  
  .hero__title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero__container {
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero__intro {
    text-align: left;
  }
  
  .countdown {
    gap: 16px;
    justify-content: center;
    margin: 20px 0;
  }
  
  .time {
    min-width: 60px;
  }
  
  .time .num {
    font-size: 32px;
  }
  
  .time .label {
    font-size: 11px;
  }

  .cta__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .grid-aside {
    grid-template-columns: 1fr;
  }
  
  .countdown {
    justify-content: center;
  }
  
  /* Hero presale card responsive */
  .hero .presale-wrap {
    padding: 0;
    margin: 16px auto 0;
    max-width: 100%;
    width: 100%;
  }
  
  .hero .presale-card {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .topbar {
    height: 70px;
    padding: 10px 4%;
  }
  
  /* Disable scroll animations on mobile - show elements directly */
  .how-to-buy__card,
  .roadmap__card,
  .feature {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  
  /* Reduce animation complexity on mobile for better performance */
  * {
    transition-duration: 0.2s !important;
    animation-duration: 0.3s !important;
  }
  
  /* Disable complex hover effects on mobile */
  .how-to-buy__card:hover,
  .roadmap__card:hover,
  .feature:hover {
    transform: none !important;
    box-shadow: inherit !important;
  }
  
  /* Hero responsive layout for tablets */
  .hero__grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    text-align: center !important;
  }
  
  .hero__left {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .hero__content {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .hero__intro {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 20px !important;
  }
  
  .hero__intro img {
    max-width: 80% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  /* How to Buy Hero Mobile Layout */
  .how-to-buy__hero {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .how-to-buy__text {
    text-align: center;
  }
  
  .how-to-buy__motor {
    max-width: 150px;
    animation: none !important;
  }
  
  .how-to-buy__motor:hover {
    transform: none !important;
  }
  
  /* Mobile Navigation */
  .mobile-menu-btn {
    display: flex;
  }
  
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 20px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 1000;
  }
  
  .menu.active {
    left: 0;
  }
  
  .menu li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #f1f5f9;
  }
  
  .menu li a {
    display: block;
    padding: 15px 0;
    width: 100%;
    font-size: 16px;
  }
  
  .lang {
    margin-top: 20px;
  }
  
  /* Mobile Overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 110px;
  }
  
  .container {
    width: 95%;
    padding: 0 20px;
  }
  
  .topbar {
    height: 70px;
    padding: 10px 3%;
  }
  
  h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .topbar {
    padding: 10px 4%;
    height: 70px;
    align-items: center;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .hero {
    padding: 50px 0;
    width: 100%;
  }
  
  .hero__container {
    padding: 0 15px;
  }
  
  .hero__content {
    padding: 0 15px;
  }
  
  .hero__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .countdown {
    gap: 12px;
    margin: 16px 0;
  }
  
  .time {
    min-width: 50px;
  }
  
  .time .num {
    font-size: 28px;
  }
  
  .time .label {
    font-size: 10px;
  }
  
  .hero__left p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .hero__left p strong {
    font-size: 36px;
    letter-spacing: 1px;
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
  }
  
  .hero__intro {
    margin-bottom: 20px;
  }
  
  .countdown {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .time {
    min-width: 60px;
  }
  
  .time .num {
    font-size: 36px;
  }
  
  .time .label {
    font-size: 10px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .btn-lg {
    padding: 14px 28px;
    font-size: 16px;
  }

  .grid--2 {
    grid-template-columns: 1fr
  }

  .grid--3 {
    grid-template-columns: 1fr
  }

  .tokenomics__wrap {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin: 6px 0 10px;
    padding: 16px;
    min-height: 320px;
  }
  
  .tokenomics__chart {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .tokenomics__legend {
    order: 2;
    width: 100%;
    max-width: 420px;
  }
  
  /* Tokenomics figure responsive - hide on tablet */
  .tokenomics__figure {
    display: none;
  }
  
  .pie {
    margin: 0;
    width: 220px;
    height: 220px;
  }
  
  
  .legend {
    width: 100%;
    max-width: none;
    padding: 16px;
    transform: none !important;
    margin-top: 0;
  }
  
  .legend-item {
    padding: 10px 0;
  }
  
  .legend-content em {
    font-size: 12px;
  }
  
  .legend-percentage {
    font-size: 13px;
  }
  
  .tokenomics__pricing { grid-template-columns: 1fr; gap: 12px; }
  
  .roadbar {
    padding: 8px 0 100px;
  }
  
  .roadbar__wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    position: relative;
    z-index: 0;
  }
  
  .seg {
    height: 60px;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
  }
  
  .seg:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
  }
  
  .seg__card {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    transform: translateY(10px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    background: #fff;
  }
  
  .seg:hover .seg__card {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .seg__title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .seg__text {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .press__track {
    padding: 10px 20px;
    gap: 12px;
  }
  
  .press__item {
    min-width: 200px;
  }
  
  .footer__form {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .footer__bar {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  
  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .footer__social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .container {
    width: 95%;
    padding: 0 15px;
  }
  
  body {
    padding-top: 70px;
  }
  
  .topbar {
    padding: 10px 3%;
    height: 70px;
    align-items: center;
  }
  
  .hero {
    padding: 40px 0;
    margin-top: 0;
    width: 100%;
  }
  
  .hero__container {
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero__content {
    padding: 0 10px;
  }
  
  .hero__title {
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 12px;
  }
  
  /* Hero responsive layout */
  .hero__grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: center !important;
  }
  
  .hero__left {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .hero__content {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .hero__intro {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 15px !important;
  }
  
  .hero__intro img {
    max-width: 70% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  /* Hide tokenomics figure on mobile */
  .tokenomics__figure {
    display: none;
  }
  
  .countdown {
    gap: 6px;
    margin: 12px 0;
  }
  
  .time {
    min-width: 45px;
  }
  
  .time .num {
    font-size: 24px;
  }
  
  .time .label {
    font-size: 9px;
  }
  
  h1 {
    font-size: 24px;
    line-height: 1.1;
  }
  
  h2 {
    font-size: 20px;
  }
  
  .hero__left p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .countdown {
    gap: 8px;
  }
  
  .time {
    min-width: 50px;
  }
  
  .time .num {
    font-size: 28px;
  }
  
  .time .label {
    font-size: 9px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .btn-lg {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .section {
    padding: 20px 0;
  }
  
  .card {
    padding: 15px;
  }
  
  .pie {
    width: 180px;
    height: 180px;
  }
  
  .legend {
    padding: 10px;
  }
  
  .footer__newsletter {
    text-align: center;
  }
  
  .footer__title {
    font-size: 24px;
  }
  
  .footer__input {
    height: 48px;
    font-size: 14px;
  }
  
  .footer__submit {
    height: 48px;
    font-size: 18px;
  }
  
  .tokenomics__wrap {
    gap: 48px;
    margin: 6px 0 10px;
    padding: 12px;
    min-height: 280px;
  }
  
  .pie {
    width: 200px;
    height: 200px;
  }
  
  .legend {
    padding: 10px;
    transform: none !important;
    margin-top: 0;
  }
  
  .legend-item {
    padding: 8px 0;
  }
  
  .roadbar {
    padding: 8px 0 80px;
  }
  
  .roadbar__wrap {
    padding: 18px;
    gap: 16px;
  }
  
  .seg {
    height: 55px;
    font-size: 15px;
    z-index: 1;
  }
  
  .seg:hover {
    z-index: 2;
  }
  
  .seg__card {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    transform: translateY(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 14px;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 12px;
  }
  
  .seg:hover .seg__card {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .seg__title {
    font-size: 15px;
    margin-bottom: 7px;
  }
  
  .seg__text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 70px;
  }
  
  .container {
    width: 100%;
    padding: 0 20px;
  }
  
  h1 {
    font-size: 22px;
  }
  
  h2 {
    font-size: 18px;
  }
  
  .hero__video {
    object-position: center 25%;
  }
  
  .hero__left p {
    font-size: 12px;
  }
  
  .hero__left p strong {
    font-size: 28px;
    letter-spacing: 0.8px;
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    margin-bottom: 4px;
  }
  
  .countdown {
    gap: 6px;
  }
  
  .time {
    min-width: 45px;
  }
  
  .time .num {
    font-size: 24px;
  }
  
  .time .label {
    font-size: 8px;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .btn-lg {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .pie {
    width: 140px;
    height: 140px;
  }
  
  .legend {
    padding: 8px;
    font-size: 12px;
  }
  
  .legend li {
    padding: 4px 6px 4px 0.5em;
  }
  
  .tokenomics__wrap {
    gap: 42px;
    margin: 6px 0 8px;
    padding: 10px;
    min-height: 240px;
  }
  
  /* Tokenomics figure for small mobile - hide completely */
  .tokenomics__figure {
    display: none;
  }
  
  .pie {
    width: 160px;
    height: 160px;
  }
  
  .legend {
    padding: 8px;
    transform: none !important;
    margin-top: 0;
  }
  
  .legend-item {
    padding: 6px 0;
  }
  
  .roadbar {
    padding: 8px 0 70px;
  }
  
  .roadbar__wrap {
    padding: 16px;
    gap: 14px;
  }
  
  .seg {
    height: 50px;
    font-size: 14px;
    z-index: 1;
  }
  
  .seg:hover {
    z-index: 2;
  }
  
  .seg__card {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    transform: translateY(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 12px;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 12px;
  }
  
  .seg:hover .seg__card {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .seg__title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .seg__text {
    font-size: 13px;
  }
}

/* FAQ Styles */
.faq-card {
  max-width: none;
  background: 
    linear-gradient(45deg, rgba(139, 92, 246, 0.3) 0%, transparent 30%),
    linear-gradient(135deg, transparent 60%, rgba(124, 58, 237, 0.3) 100%),
    linear-gradient(225deg, rgba(139, 92, 246, 0.2) 0%, transparent 25%),
    linear-gradient(315deg, transparent 75%, rgba(124, 58, 237, 0.2) 100%),
    linear-gradient(135deg, #e8f0fe 0%, #d4e7ff 25%, #e0f0ff 50%, #d9ebff 75%, #e8f0fe 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.faq-content {
  margin-top: 20px;
}

.faq-item {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.faq-item ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.faq-item li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.faq-item strong {
  color: var(--text);
  font-weight: 600;
}

/* Accordion behavior */
.faq-item h3::after {
  content: "\276F"; /* chevron */
  font-size: 14px;
  color: var(--muted);
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.faq-item.is-open h3::after {
  transform: rotate(270deg);
  color: var(--primary);
}

/* Animated accordion body */
.faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height .28s ease, opacity .2s ease, transform .2s ease;
}

.faq-item.is-open .faq-body {
  opacity: 1;
  transform: translateY(0);
}

/* Trust section responsive enhancements */
@media (max-width: 980px) {
  .trust__items { 
    grid-template-columns: 1fr; 
    gap: 32px; 
    text-align: center;
  }
  .trust--three { 
    grid-template-columns: 1fr; 
    gap: 32px;
  }
  .trust--two { 
    grid-template-columns: 1fr; 
    gap: 32px;
  }
  .trust .trust__items { padding: 0 20px; }
  
  .docs {
    align-items: center;
    text-align: center;
  }
  
  .trust__empty {
    display: none; /* Mobilde boş kolonu gizle */
  }
  
  .card.trust {
    min-height: 500px !important;
    height: auto !important;
    padding: 30px 20px !important;
    margin-bottom: 40px !important;
    background-position: 20% center !important;
  }
  
  .card.trust h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 720px) {
  .trust__col { width: 100%; }
  .trust__item { align-items: center; }
  .icon { width: 40px; height: 40px; }
  .icon i { font-size: 18px; }
  .avatar { width: 54px; height: 54px; }
  .people .social { justify-content: center; }
  
  
  .card.trust {
    min-height: 450px !important;
    height: auto !important;
    padding: 25px 15px !important;
    margin-bottom: 35px !important;
    background-position: 20% center !important;
  }
  
  .card.trust h2 {
    font-size: 1.75rem !important;
    margin-bottom: 25px !important;
  }
}

@media (max-width: 600px) {
  .avatar { width: 50px; height: 50px; }
  .trust__items { gap: 24px; }
  
  
  .card.trust {
    min-height: 400px !important;
    height: auto !important;
    padding: 20px 12px !important;
    margin-bottom: 30px !important;
    background-position: 20% center !important;
  }
  
  .card.trust h2 {
    font-size: 1.5rem !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  .trust__items { gap: 20px; }
  .trust__title { font-size: 15px; }
  .icon { width: 36px; height: 36px; }
  .icon i { font-size: 16px; }
  .avatar { width: 46px; height: 46px; }
  .team { gap: 12px; }
  .people .social { gap: 12px; }
  
  
  .card.trust {
    min-height: 350px !important;
    height: auto !important;
    padding: 18px 10px !important;
    margin-bottom: 25px !important;
    background-position: 20% center !important;
  }
  
  .card.trust h2 {
    font-size: 1.3rem !important;
    margin-bottom: 18px !important;
  }
}

/* Presale Card Styles */
.presale-wrap {
  margin-top: 24px;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.presale-card {
  background: #000000;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  color: white;
  max-width: 500px;
  margin: 0 auto;
  transform: none;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.presale-card div {
  color: white;
}

.presale-card button {
  font-family: 'Exo 2', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  letter-spacing: 0.3px;
}

/* New Payment System Styles */
.row {
  display: flex;
  gap: 12px;
  margin: 12px 0;
  align-items: center;
}

button#connectBtn,
button#buyBtn {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: calc(50% - 6px) !important;
  max-width: calc(50% - 6px) !important;
  min-height: 44px !important;
  height: 44px !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  outline: none !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

button#connectBtn {
  background: transparent !important;
  color: white !important;
  border: 1px solid #333 !important;
}

button#connectBtn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #555 !important;
  transform: translateY(-1px);
}

button#buyBtn {
  background: #3b82f6 !important;
  color: white !important;
  border: none !important;
}

button#buyBtn:hover {
  background: #2563eb !important;
  transform: translateY(-1px);
}

a#shopierBtn {
display: flex;
    text-decoration: none;
    justify-content: center!important;
    align-items: center !important; 
  width: 100% !important;
  padding: 12px !important;
  border-radius: 8px !important;
  background: #40E0D0 !important;
  color: white !important;
  border: none !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  transition: all 0.2s ease !important;
}

button#shopierBtn:hover {
  background: #20CED0 !important;
  transform: translateY(-1px);
}

.label {
  color: #c9ced7 !important;
  font-size: 13px !important;
  margin-right: 6px !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.hr {
  height: 1px;
  background: #1e2128;
  margin: 14px 0;
  border: 0;
}

.warn {
  font-size: 12px;
  color: #ffb86b;
}

.ok {
  color: #58f2a7;
  font-size: 13px;
}

.err {
  color: #ff6b6b;
  font-size: 13px;
  white-space: pre-wrap;
}

/* Header Section */
.presale-header {
  text-align: center;
  margin-bottom: 24px;
}

.presale-title {
  margin: 0 0 20px 0;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
}

.presale-end-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 20px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.05);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  flex-wrap: wrap;
}

.presale-end-date__label {
  opacity: 0.85;
}

.presale-end-date__value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.countdown-timer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.05);
  overflow: hidden;
  max-width: 100%;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 4px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.countdown-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  width: 100%;
  text-align: center;
}

.countdown-label {
  display: block;
  font-size: 0.75rem;
  color: #ddd;
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
  padding: 0 2px;
  max-width: 100%;
}

/* Presale Statistics */
.presale-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 0 10px;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;
}

.stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  overflow: hidden;
}

.stat-label {
  font-size: 1rem;
  color: #ccc;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-value {
  font-size: 0.75rem;
  color: white;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Progress Bar */
.presale-progress {
  margin: 0 0 20px 0;
  padding: 0 10px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}


/* Presale Content */
.presale-content {
  margin-top: 20px;
}

.presale-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.presale-subtitle {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.presale-status {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 12px;
  min-height: 20px;
}

.presale-info {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.presale-info div {
  margin-bottom: 4px;
}

.presale-label {
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
  color: white;
  font-size: 0.9rem;
}

.presale-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #333;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
  margin-bottom: 12px;
  /* Spinner ikonlarını kaldır */
  appearance: textfield;
  -moz-appearance: textfield;
}

.presale-input::-webkit-outer-spin-button,
.presale-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.presale-input:focus {
  border-color: #3b82f6;
}

.presale-input::placeholder {
  color: #888;
}

.presale-total {
  color: white !important;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}

.presale-total b {
  color: white !important;
  font-weight: 700 !important;
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.presale-total #total {
  color: white !important;
  font-weight: 700 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.presale-helper {
  color: #ccc;
  font-size: 0.8rem;
  margin-top: 12px;
  line-height: 1.4;
}

.presale-helper a {
  color: #3b82f6;
  text-decoration: none;
}

.presale-helper a:hover {
  text-decoration: underline;
}

.presale-status-message {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #ff6b6b;
  min-height: 18px;
}

.presale-status-message.ok {
  color: #51cf66;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #3b82f6;
  color: white;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid #333;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #555;
}

.btn-dark {
  background: #111;
  color: white;
  border: 1px solid #111;
  width: 100%;
  margin-bottom: 12px;
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-primary {
  background: #3b82f6;
  color: white;
  width: 100%;
  margin-bottom: 12px;
}

.btn-thirdweb {
  background: #000000;
  color: white;
  border: 1px solid #333;
  width: 100%;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  margin-bottom: 12px;
}

.btn-thirdweb:hover {
  background: #333;
  border-color: #555;
  color: white;
  text-decoration: none;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Early Section */
section.early {
  background-color: transparent !important;
}

/* Early Access Layout */
.early-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background-image: url('./img/katki.png') !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 20px;
  padding: 32px;
  filter: contrast(1.2) saturate(1.1);
  box-shadow: none !important;
  backdrop-filter: blur(0.5px);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.early-text {
  padding-right: 40px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.early-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.early-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.early-text .muted {
  color: #2a2a2a;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.early-text .fineprint {
  font-size: 0.9rem;
  color: #333;
  opacity: 0.9;
  margin-top: 20px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Token Details Card */
.token-details-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  align-self: center;
  transition: all 0.3s ease;
}

.token-details-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.12);
}


.token-details-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
}

.token-field {
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
}

.token-field label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
  width: 100%;
}

.token-value {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  width: 100%;
  box-sizing: border-box;
  word-break: break-all;
}

.contract-field {
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

.contract-address {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.address-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  word-break: break-all;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.copy-btn {
  background: var(--primary);
  border: none;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  min-width: 32px;
}

.copy-btn:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

.copy-btn i {
  font-size: 12px;
  color: white;
}

/* Scroll Banner */
.scroll-banner {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8, #3b82f6);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  color: white;
  padding: 12px 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  z-index: 999;
}

.scroll-banner p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}

.scroll-banner p strong {
  display: inline-block;
  padding-right: 100px;
  color: white !important;
  text-transform: uppercase;
  transition: transform 0.1s linear;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Responsive Design */
@media (max-width: 980px) {
  .early-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  .early-text {
    padding-right: 0 !important;
    width: 100% !important;
    order: 1;
  }
  
  .token-details-card {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 20px 15px 20px 20px !important;
    width: 100% !important;
    order: 2;
    align-self: center !important;
  }
  
  .token-details-card h3 {
    font-size: 1.1rem;
  }
  
  .token-field {
    margin-bottom: 14px;
  }
  
  .token-field label {
    font-size: 0.8rem;
  }
  
  .token-value {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
  
  .address-text {
    font-size: 0.8rem;
  }
  
  .copy-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
  
  .copy-btn i {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .early-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  .early-text {
    padding-right: 0 !important;
    width: 100% !important;
    order: 1;
  }
  
  .token-details-card {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 18px 12px 18px 18px !important;
    width: 100% !important;
    order: 2;
    align-self: center !important;
  }
  
  .scroll-banner {
    padding: 8px 0;
    max-width: 100%;
    overflow: hidden;
  }
  
  .scroll-banner p {
    font-size: 11px;
    overflow: hidden;
  }
  
  .scroll-banner p strong {
    padding-right: 50px;
  }
  
  .scroll-banner p {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .presale-wrap {
    padding: 0;
  }
  
  .hero .presale-wrap {
    padding: 0 !important;
  }
  
  .presale-card {
    padding: 20px;
    margin: 0 auto;
    max-width: 95%;
    transform: none !important;
    width: 95%;
    display: block;
  }
  
  .presale-title {
    font-size: 1.5rem;
  }
  
  .countdown-timer {
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  .countdown-item {
    padding: 16px 12px;
    height: 90px !important;
  }
  
  .countdown-number {
    font-size: 1.75rem;
  }
  
  .countdown-label {
    font-size: 0.58rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
    padding: 0 2px;
    margin-top: 4px;
  }
  
  .presale-stats {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 0;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .presale-info {
    padding: 0;
  }
  
  .presale-input-group {
    padding: 0;
  }
  
  .presale-actions {
    padding: 0;
  }
}

/* Additional Input Styles for New Payment System */
.presale-card input[type="number"] {
  flex: 1;
  background: #0f1013;
  border: 1px solid #282a32;
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
  outline: none;
}

.presale-card input[type="number"]::-webkit-outer-spin-button,
.presale-card input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.presale-card input[type="number"] {
  -moz-appearance: textfield;
}

@media (max-width: 480px) {
  .early-layout {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  .early-text {
    padding-right: 0 !important;
    width: 100% !important;
    order: 1;
  }
  
  .token-details-card {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 16px 10px 16px 16px !important;
    width: 100% !important;
    order: 2;
    align-self: center !important;
  }
  
  .token-details-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  
  .token-field {
    margin-bottom: 12px;
  }
  
  .token-field label {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }
  
  .token-value {
    font-size: 0.85rem;
    padding: 8px 10px;
  }
  
  .contract-address {
    padding: 8px 10px;
    gap: 6px;
  }
  
  .address-text {
    font-size: 0.75rem;
  }
  
  .copy-btn {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }
  
  .copy-btn i {
    font-size: 10px;
  }
  
  .presale-wrap {
    padding: 0;
  }
  
  .hero .presale-wrap {
    padding: 0 !important;
  }
  
  .presale-card {
    padding: 16px;
    margin: 0 auto;
    max-width: 90%;
    transform: none !important;
    width: 90%;
    display: block;
  }
  
  .presale-title {
    font-size: 1.3rem;
  }
  
  .countdown-timer {
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  .countdown-item {
    padding: 14px 8px;
    height: 80px !important;
  }
  
  .countdown-number {
    font-size: 1.3rem;
  }
  
  .countdown-label {
    font-size: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
    padding: 0 2px;
    margin-top: 4px;
  }
  
  .presale-stats {
    padding: 0;
  }
  
  .presale-info {
    padding: 0;
  }
  
  .presale-input-group {
    padding: 0;
  }
  
  .presale-actions {
    padding: 0;
  }
  
  .scroll-banner {
    padding: 6px 0;
    max-width: 100%;
    overflow: hidden;
  }
  
  .scroll-banner p {
    font-size: 10px;
    overflow: hidden;
  }
  
  .scroll-banner p strong {
    padding-right: 30px;
  }
  
  .scroll-banner p {
    font-size: 10px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: 
    linear-gradient(90deg, 
      rgba(139, 92, 246, 0.6) 0%, 
      rgba(139, 92, 246, 0.3) 8%,
      transparent 20%, 
      transparent 80%, 
      rgba(124, 58, 237, 0.3) 92%,
      rgba(124, 58, 237, 0.6) 100%
    ),
    linear-gradient(135deg, #e8f0fe 0%, #d4e7ff 25%, #e0f0ff 50%, #d9ebff 75%, #e8f0fe 100%);
  background-attachment: fixed;
  position: relative;
}

.testimonials__title {
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  color: var(--text);
  margin-bottom: 16px;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
}

.testimonials__subtitle {
  font-size: 1.3rem;
  text-align: center;
  color: var(--muted);
  margin-bottom: 60px;
  font-weight: 500;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #8b5cf6, var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial__stars i {
  color: #fbbf24;
  font-size: 18px;
  animation: starTwinkle 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

.testimonial__stars i:nth-child(1) { --i: 0; }
.testimonial__stars i:nth-child(2) { --i: 1; }
.testimonial__stars i:nth-child(3) { --i: 2; }
.testimonial__stars i:nth-child(4) { --i: 3; }
.testimonial__stars i:nth-child(5) { --i: 4; }

@keyframes starTwinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.testimonial__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}

.testimonial__text::before {
  content: '"';
  font-size: 4rem;
  color: rgba(59, 130, 246, 0.2);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: 'Times New Roman', serif;
  line-height: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__name {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 980px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials__title {
    font-size: 2.8rem;
  }
  
  .testimonials__subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  .testimonials__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .testimonial-card {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 50px 0;
  }
  
  .testimonials__title {
    font-size: 2.4rem;
  }
  
  .testimonials__subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .testimonial__text {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .testimonials__title {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial__stars i {
    font-size: 16px;
  }
}

/* Contact Section */
.contact {
  padding: 60px 0;
  background: linear-gradient(135deg, 
    #e8f0fe 0%, 
    #dbeafe 25%, 
    #bfdbfe 50%, 
    #93c5fd 75%, 
    #ddd6fe 100%
  );
  position: relative;
  min-height: 600px !important;
  border-radius: 24px !important;
  overflow: hidden !important;
}


/* Animation kaldırıldı - gradient sabit duruyor */

.contact > * {
  position: relative;
  z-index: 1;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-align: center;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
}

.contact-left-column {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.contact-title-gif {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
}

.contact-title-gif img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  transform: none;
  vertical-align: top;
}

.contact-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
}

.contact-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  min-height: 500px;
}

.contact-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-video-play:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-video-play i {
  font-size: 32px;
  color: #3b82f6;
  margin-left: 4px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 40px;
  text-align: center;
}

.contact-content {
  background: transparent;
  border-radius: 24px;
  padding: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 28px;
  color: #000000;
}

.contact-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-details a {
  font-size: 1rem;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: #333333;
  text-decoration: underline;
}

/* Contact Responsive */
@media (max-width: 980px) {
  .contact-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .contact-video-container {
    min-height: 400px;
  }
  
  .contact-content h2 {
    font-size: 2rem;
  }
  
  .contact-title-gif {
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .contact-title-gif img {
    max-width: 250px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .contact {
    padding: 40px 0;
  }
  
  .contact-content h2 {
    font-size: 1.75rem;
  }
  
  .contact-title-gif {
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .contact-title-gif img {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .contact-main-content {
    gap: 30px;
  }
  
  .contact-video-container {
    min-height: 300px;
    border-radius: 16px;
  }
  
  .contact-video-play {
    width: 60px;
    height: 60px;
  }
  
  .contact-video-play i {
    font-size: 24px;
  }
  
  .contact-subtitle {
    font-size: 1rem;
  }
  
  .contact-item {
    padding: 16px;
  }
  
  .contact-icon {
    width: 48px;
    height: 48px;
  }
  
  .contact-icon i {
    font-size: 24px;
  }
}

/* Wallet Info Styles */
.wallet-info {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: center;
}

.wallet-address-label {
  color: #00ff00;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.wallet-address {
  color: #00ff00;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
  border-radius: 5px;
}

/* === Early Katkı Animasyonlu SVG EN DOĞRU ARKA PLAN İÇİN === */
.early-layout {
  position: relative !important;
  overflow: hidden !important;
  background: none !important;
}

.mario-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Arka planda tıklama engellemez */
}
.mario-bg img {
  width: 320px; /* İstersen büyüt/küçült */
  height: auto;
  opacity: 0.67; /* biraz şeffaf ve arka plan gibi */
  filter: drop-shadow(0 4px 32px #0005);
  pointer-events: none;
  user-select: none;
}
.early-layout > *:not(.mario-bg) {
  position: relative;
  z-index: 1;
}
.early-layout {
  position: relative;
  overflow: hidden;
  min-height: 370px;
}


.hero__content {
  transform: none !important;
  padding-left: 0 !important;
}
.hero__content .presale-wrap {
  transform: none !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}
.hero__grid {
  justify-items: start !important;
}

.hero__content {
  transform: none !important;
  padding-left: 0 !important;
}
.hero__content .presale-wrap {
  transform: none !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}
.hero__grid {
  justify-items: start !important;
}

#contact, .contact-wrapper {
  background: radial-gradient(ellipse at 60% 40%, #35477a 0%, #232749 60%, #191730 85%, #100e23 100%);
  /* Alternatif ve daha canlı için: */
  /* background: radial-gradient(circle at 50% 30%, #1B2559 0%, #2C326D 65%, #231849 100%); */
  /* Hafif mor-mavi bulut efekti: */
  /* background: linear-gradient(120deg, #3a3567 10%, #192449 90%, #261151 100%); */
  /* background-blend-mode: screen; opsiyonel */
}

#contact, .contact-wrapper, .contact-item, .contact-icon, .contact-icon i, .contact-details h3, .contact-details a, .contact-details, .contact-content h2, .contact-content, .contact-main-content {
  color: #fff !important;
  fill: #fff !important;
}
.contact-icon, .contact-icon i {
  background: none !important;
  color: #fff !important;
  fill: #fff !important;
}
.contact-details a {
  color: #fff !important;
}
.contact-details a:hover {
  color: #aee7ff !important;
}
.contact-item, .contact-details {
  color: #fff !important;
}