/* === SHINE + BUTTONS + STEPPER + GLOW + BOUNCE === */
.solana-buy-box {
  margin-top: 40px;
  text-align: center;
}

.solana-buy-box h3 {
  color: #aefbff;
  margin-bottom: 12px;
}

.solana-buy-box .input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.solana-buy-box input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  padding: 14px 16px;
  font-size: 16px;
  width: 180px;
  border-radius: 10px;
  background: rgba(0, 246, 255, 0.1);
  border: 1.5px solid #00f6ff88;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 10px #00f6ff22, inset 0 0 6px #00f6ff22;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}

.solana-buy-box input[type=number]::placeholder {
  color: #aefbff99;
}

.solana-buy-box input[type=number]:focus {
  outline: none;
  border-color: #00f6ff;
  box-shadow: 0 0 12px #00f6ff55, inset 0 0 8px #00f6ff33;
  background: rgba(0, 246, 255, 0.15);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.solana-buy-box .stepper {
  width: 40px;
  height: 40px;
  background: rgba(0, 246, 255, 0.12);
  border: 2px solid #00f6ff88;
  border-radius: 50%;
  color: #00f6ff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.15s ease;
  box-shadow: 0 0 12px #00f6ff55, inset 0 0 6px #00f6ff22;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.solana-buy-box .stepper:hover {
  background: rgba(0, 246, 255, 0.25);
  transform: scale(1.08);
  box-shadow: 0 0 16px #00f6ffaa, inset 0 0 8px #00f6ff55;
}

.solana-buy-box .stepper:active {
  transform: scale(0.95);
}

.solana-buy-box button {
  padding: 12px 24px;
  background: linear-gradient(135deg, #00f6ff, #5d57ff);
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 12px #00f6ff55;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solana-buy-box button {
  padding: 14px 30px;
  font-size: 16px;
  background: linear-gradient(135deg, #00f6ff, #5d57ff);
  color: #000;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 14px #00f6ff77;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 12px;
}




@keyframes shineMove {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}


/* ==== BASE LAYOUT ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

#presaleBackgroundVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill; /* oder 'none' falls original skalieren soll */
  z-index: -1;
  filter: brightness(0.5); /* Kein Blur */
  image-rendering: auto; /* Anti-Aliasing */
}


.presale-container {
  position: relative;
  max-width: 740px;
  margin: 100px auto;
  padding: 42px 34px;
  border-radius: 20px;
  background: linear-gradient(to top, #2a1a5e 0%, #1b3c4e 40%, #003c44 100%);
  border: 2px solid #00f6ff66;
  text-align: center;
  backdrop-filter: blur(24px);

  box-shadow:
    0 0 28px rgba(0, 246, 255, 0.3),
    inset 0 0 80px rgba(0, 246, 255, 0.08);
}








.presale-title {
  font-size: 34px;
  font-weight: 800;
  color: #00f6ff;
  margin-bottom: 30px;
  text-shadow: 0 0 6px #00f6ffaa;
  letter-spacing: 1.2px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.countdown-box {
  background: rgba(17, 27, 44, 0.85);
  border: 1.5px solid #00f6ff77;
  border-radius: 12px;
  padding: 16px 18px;
  min-width: 70px;
  box-shadow: inset 0 0 12px #00f6ff44;
}

.countdown-box span {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.countdown-box label {
  font-size: 12px;
  color: #aefbff;
  margin-top: 6px;
  display: block;
  text-transform: uppercase;
}

.funding-bar {
  font-size: 15px;
  color: #aefbff;
  margin-top: 24px;
}

.bar {
  width: 100%;
  height: 12px;
  background: #1f2b3a;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
  box-shadow: inset 0 0 8px #00f6ff33;
}

.bar-fill {
  height: 100%;
  width: 0%; /* Start immer bei 0%, dann dynamisch per JS */
  background: linear-gradient(90deg, #00f6ff, #00e1d9);
  border-radius: 8px;
  transition: width 1.2s ease-in-out;
}



@keyframes fillBar {
  from { width: 0%; }
  to { width: 97.7%; }
}

.price-line {
  margin: 18px 0;
  font-size: 16px;
  color: #d9f6ff;
  animation: blinkText 1.5s infinite ease-in-out;
  text-shadow: 0 0 3px #00f6ff33;
}

@keyframes blinkText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0 10px;
}

.action-buttons a {
  text-decoration: none;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  transition: 0.3s ease;
  min-width: 160px;
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
}

.action-buttons a:hover {
  transform: scale(1.05) translateY(-2px);
}

.action-buttons a .shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05), transparent);
  transform: rotate(25deg);
  animation: shineMove 3s linear infinite;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

.card-btn {
  background: linear-gradient(135deg, #d6ff00, #faff72);
  color: #000;
}

.crypto-btn {
  background: linear-gradient(135deg, #00c2ff, #5d57ff);
  color: #fff;
}

.wallet-info {
  margin-top: 18px;
  font-size: 13px;
  color: #ccc;
}

.wallet-connect-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #00f6ff, #5d57ff);
  color: #000;
  border-radius: 14px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 18px #00ffff66;
  transition: 0.3s ease;
}

.wallet-connect-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.presale-footer {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin: 50px 0 30px;
}

.presale-footer a {
  color: #00ffff;
  text-decoration: none;
}

.presale-footer a:hover {
  color: #aefbff;
}

/* === ChainTrust NAVIGATION DESIGN KIT – FINAL VERSION === */

.nav-box-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
  margin-bottom: -50px;
  transform: translateY(30px);
  z-index: 4;
  position: relative;
}

/* === VARIANTEN: Schräger Effekt */
.nav-box-menu a:nth-child(1),
.nav-box-menu a:nth-child(2),
.nav-box-menu a:nth-child(3),
.nav-box-menu a:nth-child(4),
.nav-box-menu a:nth-child(5) {
  transform: skew(-10deg);
  clip-path: none;
}

/* === BASIS BUTTON STYLE – NEON GRADIENT LIKE BOX === */
.nav-box-menu a {
  position: relative;
  display: inline-block;
  min-width: 110px;
  max-width: 130px;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00f6ff;
  background: linear-gradient(135deg, #2a1a5e, #003c44);
  border: 1.5px solid #00f6ff55;
  box-shadow:
    0 0 10px rgba(0, 246, 255, 0.22),
    inset 0 0 4px rgba(0, 246, 255, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
  flex: 1 1 110px;
  transform: skewX(-10deg);
  border-radius: 6px;
}

/* === TEXT gerade trotz skew === */
.nav-box-menu a span {
  display: inline-block;
  transform: skewX(10deg);
}

/* === Shine Effekt === */
.nav-box-menu a::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 246, 255, 0.2),
    transparent
  );
  transform: rotate(45deg);
  animation: shineSweep 3s linear infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* === Hover-Effekt === */
.nav-box-menu a:hover {
  background: linear-gradient(135deg, #3b2b7a, #005c6a);
  color: #ffffff;
  transform: scale(1.06) skewX(-10deg);
  box-shadow:
    0 0 22px #00f6ff,
    inset 0 0 8px #ffffff33;
  border-color: #00f6ff;
}

.nav-box-menu a:hover::before {
  opacity: 0.8;
}


/* === FIXED SOCIAL SIDEBAR === */
.social-inside-box {
  position: fixed;
  bottom: 90px;
  left: 0;
  transform: skewY(-10deg);
  background: linear-gradient(to bottom, #00c6ff, #6b73ff);
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.5);
}



.social-inside-box a {
  transform: skewY(10deg);
}

.social-inside-box img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.social-inside-box img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7));
}

/* Telegram etwas größer */
.social-inside-box a:nth-child(2) img {
  width: 30px;
  height: 30px;
}

/* Discord etwas größer */
.social-inside-box a:nth-child(3) img {
  width: 30px;
  height: 30px;
}


.presale-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.presale-nav-fake {
  width: 130px;
}

/* === FIXED VERTICAL SCANNER BUTTON === */
.fixed-scanner-button {
  position: fixed;
  bottom: 150px;
  right: 0;
  z-index: 999;
  width: 48px;
  height: 140px;
  background: linear-gradient(135deg, #00f6ff 0%, #6b73ff 100%);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow:
    0 0 12px rgba(0, 246, 255, 0.6),
    inset 0 0 6px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* === HOVER EFFECT === */
.fixed-scanner-button:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 20px rgba(0, 255, 255, 0.8),
    inset 0 0 10px rgba(255, 255, 255, 0.08);
}

/* === INNER LINK === */
/* === INNER LINK (Text größer + zentriert) === */
.fixed-scanner-button a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: white;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 15px; /* größerer Text */
  letter-spacing: 2px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  padding: 8px 0; /* optisch mittiger */
  position: relative;
}












/* === CONTENT SECTIONS (ROADMAP, HOW TO BUY, etc.) === */
#extraSections section {
  margin: 60px auto;
  padding: 40px 30px;
  background: rgba(0, 10, 20, 0.5);
  border: 2px solid #00f6ff44;
  border-radius: 18px;
  max-width: 900px;
  color: #d9f6ff;
  box-shadow:
    0 0 20px rgba(0, 246, 255, 0.15),
    inset 0 0 40px rgba(0, 246, 255, 0.05);
  backdrop-filter: blur(18px);
  animation: fadeInSection 0.8s ease forwards;
  opacity: 0;
}

#extraSections section h2 {
  font-size: 28px;
  color: #00f6ff;
  text-shadow: 0 0 10px #00f6ff66;
  margin-bottom: 20px;
}

#extraSections section p,
#extraSections section li {
  font-size: 16px;
  line-height: 1.6;
  color: #cceeff;
}

#extraSections section ul {
  padding-left: 20px;
  margin-top: 12px;
}

#extraSections section li::marker {
  color: #00f6ff;
}

#extraSections.open section {
  opacity: 1;
}

@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Extra für Code-Boxen (Presale-Adresse etc.) */
#extraSections code {
  display: inline-block;
  background: rgba(0, 246, 255, 0.08);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #00f6ff;
  font-family: 'Courier New', monospace;
  box-shadow: inset 0 0 6px #00f6ff33;
}

/* Für geordnete Listen in How to Buy */
#extraSections ol {
  padding-left: 20px;
  margin-top: 20px;
}

#extraSections ol li {
  margin-bottom: 14px;
  color: #cdefff;
}

.faq-section {
  background: #0a0e1a;
  border-radius: 16px;
  padding: 60px 30px;
  margin-top: 50px;
  box-shadow: 0 0 20px rgba(0,255,255,0.15);
}

.faq-section h2 {
  font-size: 28px;
  color: #00f6ff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.faq-section span {
  color: #aefbff;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #00f6ff22;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.faq-item:hover {
  border-color: #00f6ff;
  box-shadow: 0 0 10px #00f6ff33;
}

.faq-item h3 {
  font-size: 18px;
  color: #00f6ff;
  margin-bottom: 10px;
}

.faq-item p {
  color: #dceeff;
  font-size: 15px;
  line-height: 1.6;
}


.info-section {
  background: #0a0e1a;
  border-radius: 16px;
  padding: 60px 30px;
  margin-top: 50px;
  box-shadow: 0 0 20px rgba(0,255,255,0.15);
}

.info-section h2 {
  font-size: 28px;
  color: #00f6ff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.info-section span {
  color: #aefbff;
}

.info-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #00f6ff22;
  border-radius: 12px;
  padding: 25px;
  color: #dceeff;
  font-size: 15px;
  line-height: 1.6;
}

.info-box ul {
  padding-left: 20px;
  margin-top: 10px;
}

.info-box code {
  display: inline-block;
  background: #111;
  padding: 5px 10px;
  border-radius: 6px;
  color: #00f6ff;
  margin-top: 5px;
  font-family: monospace;
}


body::after {
  content: "";
  display: block;
  height: 200px;
}


.back-btn-wrapper {
  text-align: center;
  margin: 50px 0 30px;
}

.back-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #00f6ff, #5d57ff);
  color: #000;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow:
    0 0 20px rgba(0, 255, 255, 0.4),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.back-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05), transparent);
  transform: rotate(25deg);
  animation: shineMove 3s linear infinite;
  pointer-events: none;
  opacity: 0.3;
}

.back-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #00c4cc, #00f6ff);
  color: #000;
  box-shadow:
    0 0 28px #00f6ffaa,
    inset 0 0 12px rgba(255, 255, 255, 0.2);
}


.partner-section {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 36px;
}

.partner-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00f6ff;
  margin-bottom: 18px;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 6px #00f6ffaa;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.partner-logos img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 246, 255, 0.05);
  padding: 8px;
  box-shadow:
    0 0 12px rgba(0, 246, 255, 0.15),
    inset 0 0 6px rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

.partner-logos img:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 18px rgba(0, 246, 255, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.08);
}

