/* ==========================================================================
   PULL STREET - MODERN WEB3 STYLING (1:1 PIXEL MATCH)
   ========================================================================== */

:root {
  --neon-green: #2bfb73;
  --neon-green-glow: rgba(43, 251, 115, 0.45);
  --neon-green-bright: #68ff9d;
  --bg-dark: #050807;
  --card-bg: rgba(12, 19, 15, 0.95);
  --border-color: rgba(43, 251, 115, 0.25);
  --text-white: #ffffff;
  --text-dim: #94a3b8;
  --text-sub: #7fa48b;
  --btn-grad-start: #78fca6;
  --btn-grad-mid: #3af277;
  --btn-grad-end: #1eb956;
}

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

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-white);
  overflow-x: hidden;
  position: relative;
}

/* --------------------------------------------------------------------------
   ARKA PLAN VE ATMOSFERİK PARILTI
   -------------------------------------------------------------------------- */
.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background-image: url('public/assets/background.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.bg-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.22) 0%, rgba(20, 83, 45, 0.12) 40%, rgba(0, 0, 0, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   YÜZEN HİSSE & KRİPTO BALONCUKLARI
   -------------------------------------------------------------------------- */
.bubbles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-bubble {
  position: absolute;
  pointer-events: auto;
  user-select: none;
  animation: floatAnim var(--t, 5s) ease-in-out infinite alternate;
  animation-delay: var(--d, 0s);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
  cursor: pointer;
}

.floating-bubble img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.8));
}

.floating-bubble:hover {
  transform: scale(1.12) translateY(-4px) !important;
  filter: drop-shadow(0 0 20px rgba(43, 251, 115, 0.6));
}

/* Baloncuk Konumlandırmaları (Referans Görselle Eşleşen Koordinatlar) */
.bubble-tsla {
  left: 21%;
  top: 9%;
  width: 76px;
}

.bubble-nvda {
  left: 10%;
  top: 20%;
  width: 120px;
}

.bubble-msft {
  left: 7%;
  top: 50%;
  width: 82px;
}

.bubble-spy {
  left: 14%;
  top: 67%;
  width: 68px;
}

.bubble-left-x {
  left: 20%;
  top: 78%;
  width: 58px;
}

.bubble-small-1 {
  left: 35%;
  top: 13%;
  width: 28px;
  opacity: 0.85;
}

.bubble-small-2 {
  left: 6%;
  top: 9%;
  width: 28px;
  opacity: 0.7;
}

/* Sağ Taraf */
.bubble-aapl {
  right: 17%;
  top: 11%;
  width: 124px;
}

.bubble-googl {
  right: 11%;
  top: 28%;
  width: 72px;
}

.bubble-meta {
  right: 6%;
  top: 48%;
  width: 72px;
}

.bubble-amzn {
  right: 11%;
  top: 64%;
  width: 76px;
}

.bubble-sol {
  right: 6%;
  top: 68%;
  width: 36px;
}

.bubble-mcd {
  right: 16%;
  top: 76%;
  width: 48px;
}

.bubble-small-3 {
  right: 32%;
  top: 5%;
  width: 34px;
  opacity: 0.8;
}

.bubble-small-4 {
  right: 7%;
  top: 86%;
  width: 44px;
  opacity: 0.75;
}

@keyframes floatAnim {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1.5deg);
  }
  100% {
    transform: translateY(8px) rotate(-1.5deg);
  }
}

/* --------------------------------------------------------------------------
   ANA SAHNE & İÇERİK
   -------------------------------------------------------------------------- */
.hero-stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px 25px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Üst Başlık Bölümü */
.hero-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.logo-wrapper {
  margin-bottom: 2px;
}

.hero-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(43, 251, 115, 0.4));
}

.hero-title {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.neon-green-text {
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(43, 251, 115, 0.8), 0 0 35px rgba(43, 251, 115, 0.4);
}

.hero-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-sub);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   PAKETLER & MASKOT BÖLÜMÜ
   -------------------------------------------------------------------------- */
.packs-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 820px;
  margin: 10px 0;
}

.graffiti {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(43, 251, 115, 0.5));
}

.graffiti-left {
  left: 20px;
  top: 45%;
  width: 65px;
}

.graffiti-right {
  right: 25px;
  top: 48%;
  width: 60px;
}

.packs-showcase {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  display: flex;
  justify-content: center;
}

.packs-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.packs-img:hover {
  transform: translateY(-6px) scale(1.02);
}

.mascot-wrapper {
  position: relative;
  z-index: 3;
  margin-top: -65px;
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.mascot-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 -5px 20px rgba(43, 251, 115, 0.45));
}

/* --------------------------------------------------------------------------
   ALT EYLEM BÖLÜMÜ & SOSYAL LİNKLER
   -------------------------------------------------------------------------- */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 5;
}

/* Ana Parlayan Waitlist Butonu */
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #03200f;
  background: linear-gradient(135deg, var(--btn-grad-start) 0%, var(--btn-grad-mid) 50%, var(--btn-grad-end) 100%);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 
    0 0 20px rgba(58, 242, 119, 0.75),
    0 0 45px rgba(34, 197, 94, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
}

.cta-button:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 
    0 0 30px rgba(58, 242, 119, 0.95),
    0 0 65px rgba(34, 197, 94, 0.65),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

/* Sosyal Medya İkon Butonları */
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 25, 19, 0.85);
  border: 1px solid rgba(43, 251, 115, 0.35);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background: rgba(43, 251, 115, 0.2);
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 0 18px rgba(43, 251, 115, 0.5);
}

/* --------------------------------------------------------------------------
   MODAL / POPUP FORUM STİLİ
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 34px 32px 30px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.85),
    0 0 50px rgba(43, 251, 115, 0.25);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-height: 92vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

/* Kapat Butonu */
.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-dim);
  font-size: 26px;
  line-height: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ffffff;
  transform: rotate(90deg);
}

/* Modal Başlık Alanı */
.modal-header {
  margin-bottom: 22px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(43, 251, 115, 0.12);
  border: 1px solid rgba(43, 251, 115, 0.3);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--neon-green);
  margin-bottom: 12px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
}

.modal-title {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 6px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.45;
}

/* X Kampanya / QRT Kutusu */
.x-campaign-box {
  background: rgba(20, 32, 25, 0.7);
  border: 1px dashed rgba(43, 251, 115, 0.4);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.x-follow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.x-follow-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.x-label {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.x-handle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.x-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  color: #000000;
  padding: 7px 15px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.x-follow-btn:hover {
  background: var(--neon-green);
  color: #02200e;
  box-shadow: 0 0 14px rgba(43, 251, 115, 0.6);
  transform: translateY(-1px);
}

.x-callout-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--neon-green-bright);
  background: rgba(43, 251, 115, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  line-height: 1.35;
}

.highlight-fire {
  font-size: 1.05rem;
  margin-right: 2px;
}

/* Form Alanları */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.required-star {
  color: var(--neon-green);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: #64748b;
  pointer-events: none;
  transition: color 0.2s ease;
}

.input-wrapper input {
  width: 100%;
  padding: 13px 14px 13px 44px;
  background: rgba(18, 28, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  color: #ffffff;
  outline: none;
  transition: all 0.25s ease;
}

.input-wrapper input::placeholder {
  color: #475569;
}

.input-wrapper input:focus {
  border-color: var(--neon-green);
  background: rgba(22, 38, 28, 0.9);
  box-shadow: 0 0 16px rgba(43, 251, 115, 0.35);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
  color: var(--neon-green);
}

.error-msg {
  font-size: 0.78rem;
  color: #f87171;
  display: none;
  margin-top: 2px;
}

/* Gönder Butonu */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 800;
  color: #02200e;
  background: linear-gradient(135deg, var(--btn-grad-start) 0%, var(--btn-grad-mid) 50%, var(--btn-grad-end) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(43, 251, 115, 0.5);
  transition: all 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(43, 251, 115, 0.75);
}

.submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.submit-spinner {
  display: none;
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .submit-spinner {
  display: block;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Başarı & Hata Durum Ekranları */
.form-result {
  text-align: center;
  padding: 24px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.result-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(43, 251, 115, 0.15);
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(43, 251, 115, 0.4);
}

.result-icon-circle.error-circle {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  color: #ef4444;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.4);
}

.result-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.result-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  max-width: 380px;
  line-height: 1.5;
}

.btn-done, .btn-retry {
  padding: 12px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-done {
  background: var(--neon-green);
  color: #02200e;
  box-shadow: 0 0 18px rgba(43, 251, 115, 0.4);
}

.btn-retry {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.4);
}

.btn-done:hover, .btn-retry:hover {
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   RESPONSIVE UYUMLULUK (MOBİL & TABLET)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-title {
    font-size: 1.9rem;
  }
  
  .packs-section {
    max-width: 500px;
  }

  .mascot-wrapper {
    margin-top: -45px;
    max-width: 340px;
  }

  .bubble-tsla { width: 55px; left: 8%; top: 12%; }
  .bubble-nvda { width: 85px; left: 4%; top: 26%; }
  .bubble-msft { width: 60px; left: 3%; top: 52%; }
  .bubble-aapl { width: 85px; right: 6%; top: 14%; }
  .bubble-googl { width: 55px; right: 5%; top: 32%; }
  .bubble-meta { width: 55px; right: 3%; top: 50%; }
  .bubble-amzn { width: 55px; right: 4%; top: 66%; }
}

@media (max-width: 600px) {
  .hero-stage {
    padding: 20px 14px;
  }

  .hero-logo {
    height: 40px;
  }

  .hero-title {
    font-size: 1.55rem;
  }

  .hero-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .packs-section {
    max-width: 340px;
  }

  .mascot-wrapper {
    margin-top: -30px;
    max-width: 250px;
  }

  .cta-button {
    padding: 14px 26px;
    font-size: 0.92rem;
  }

  .floating-bubble {
    opacity: 0.55;
  }

  .bubble-nvda { width: 65px; left: 2%; }
  .bubble-aapl { width: 65px; right: 2%; }
  .bubble-tsla, .bubble-msft, .bubble-amzn, .bubble-googl {
    display: none; /* Mobilde aşırı kalabalık olmaması için */
  }

  .modal-card {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .modal-title {
    font-size: 1.35rem;
  }
}
