/* ----------------------------------------------------
   YÜRÜBİ LANDING PAGE - STYLE SYSTEM
   Theme: Cyber-Charity Kinetic (Extreme Glassmorphism)
   ---------------------------------------------------- */

:root {
  /* Color Tokens */
  --bg-primary-dark: #0b1326;
  --bg-secondary-dark: #111c44;
  --accent-cyan: #00f2fe;
  --accent-cyan-glow: rgba(0, 242, 254, 0.4);
  --accent-orange: #ff9f43;
  --accent-orange-glow: rgba(255, 159, 67, 0.4);
  --accent-purple: #d1bcff;
  --accent-purple-glow: rgba(209, 188, 255, 0.4);
  --text-white: #f8fafc;
  --text-slate: #cbd5e1;
  --text-dark: #060e20;
  
  /* Glass Elevation Levels */
  --glass-bg-low: rgba(255, 255, 255, 0.04);
  --glass-bg-medium: rgba(255, 255, 255, 0.07);
  --glass-bg-high: rgba(255, 255, 255, 0.12);
  --glass-border-light: rgba(255, 255, 255, 0.15);
  --glass-border-glow-cyan: rgba(0, 242, 254, 0.3);
  --glass-border-glow-orange: rgba(255, 159, 67, 0.3);
  --glass-blur: blur(16px);
  
  /* Fonts */
  --font-headings: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

/* ----------------------------------------------------
   Reset & General Layout
   ---------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary-dark);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ----------------------------------------------------
   Atmospheric Scenery & Gradients
   ---------------------------------------------------- */
.scenery-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('assets/images/background_scenery.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -2;
  transition: transform 0.1s ease-out; /* Parallax smoothness */
}

.scenery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(11, 19, 41, 0.88) 0%,
    rgba(17, 28, 68, 0.93) 100%
  );
  z-index: -1;
}

/* ----------------------------------------------------
   Navbar Component
   ---------------------------------------------------- */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

.navbar-header.scrolled {
  background: rgba(11, 19, 41, 0.75);
  backdrop-filter: var(--glass-blur);
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--accent-cyan-glow));
  transition: transform 0.3s ease;
}

.logo-link:hover .brand-logo {
  transform: rotate(-10deg) scale(1.1);
}

.brand-name {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 32px;
  background: var(--glass-bg-low);
  border: 1px solid var(--glass-border-light);
  padding: 8px 24px;
  border-radius: var(--rounded-full, 999px);
  backdrop-filter: var(--glass-blur);
}

.nav-item {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-slate);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-item:hover, .nav-item.active {
  color: var(--accent-cyan);
  text-shadow: 0 0 12px var(--accent-cyan-glow);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-cyan);
  transition: width 0.3s ease, left 0.3s ease;
  box-shadow: 0 0 8px var(--accent-cyan);
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
  left: 0;
}

.btn-nav-cta {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.btn-nav-cta:hover {
  background: var(--accent-cyan);
  color: var(--text-dark);
  box-shadow: 0 0 20px var(--accent-cyan-glow);
  transform: translateY(-2px);
}

/* ----------------------------------------------------
   Hero Section Layout
   ---------------------------------------------------- */
.section-hero {
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.badge-new-release {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(209, 188, 255, 0.1);
  border: 1px solid var(--accent-purple-glow);
  color: var(--accent-purple);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  backdrop-filter: var(--glass-blur);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-headline {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cyan-gradient-text {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px var(--accent-cyan-glow));
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-slate);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-subheadline strong {
  color: var(--accent-cyan);
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

/* Glassmorphic Download Buttons */
.btn-download {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--glass-bg-medium);
  border: 1px solid var(--glass-border-light);
  border-radius: 16px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
}

.btn-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: skewX(-15deg);
  transition: 0.75s;
}

.btn-download:hover::before {
  left: 120%;
}

.btn-download:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 25px var(--accent-cyan-glow);
}

.btn-googleplay:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 0 25px var(--accent-orange-glow);
}

.cta-svg-icon {
  width: 28px;
  height: 28px;
  color: var(--text-white);
  transition: transform 0.3s ease;
}

.btn-download:hover .cta-svg-icon {
  transform: scale(1.15);
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-subtext {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-slate);
  letter-spacing: 0.05em;
}

.btn-maintext {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
}

/* Stats Counter Grid */
.hero-stats-row {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--glass-border-light);
  padding-top: 32px;
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-cyan);
  text-shadow: 0 0 10px var(--accent-cyan-glow);
  margin-bottom: 4px;
}

.hero-stat-card:nth-child(2) .stat-number {
  color: var(--accent-orange);
  text-shadow: 0 0 10px var(--accent-orange-glow);
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-slate);
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------
   Interactive Phone Mockup & Floating Satellites
   ---------------------------------------------------- */
.hero-mockup-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



/* iPhone 16 Pro Mockup Frame */
.iphone-container {
  position: relative;
  width: 320px;
  height: 650px;
  border-radius: 52px;
  z-index: 2;
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.6);
}

.iphone-container:hover {
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) scale(1.02);
}

.iphone-bezel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e1e24;
  border: 11px solid #3c3d42;
  border-radius: 52px;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.iphone-dynamic-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 25px;
  background-color: #000;
  border-radius: 20px;
  z-index: 10;
}

.iphone-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.iphone-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.iphone-screen-image.active {
  opacity: 1;
}

/* Premium Highlights */
.iphone-glass-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 50%
  );
  pointer-events: none;
  border-radius: 52px;
  z-index: 4;
}

/* Background Glowing Aura */
.iphone-glow-aura {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background: radial-gradient(
    circle,
    rgba(0, 242, 254, 0.18) 0%,
    rgba(209, 188, 255, 0.05) 50%,
    transparent 80%
  );
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

/* Mockup Tabs Navigation */
.mockup-navigation {
  display: flex;
  gap: 6px;
  background: var(--glass-bg-medium);
  border: 1px solid var(--glass-border-light);
  backdrop-filter: var(--glass-blur);
  padding: 6px;
  border-radius: 20px;
  margin-top: 32px;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 95%;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  border-radius: 14px;
  cursor: pointer;
  color: var(--text-slate);
  transition: all 0.3s ease;
  min-width: 72px;
}

.tab-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  background: var(--accent-cyan);
  color: var(--text-dark);
  box-shadow: 0 4px 15px var(--accent-cyan-glow);
}

.tab-icon {
  font-size: 18px;
  margin-bottom: 4px;
}

.tab-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tab-btn.active .tab-label {
  color: var(--text-dark);
}

/* ----------------------------------------------------
   Standard Glassmorphism Cards System
   ---------------------------------------------------- */
.glass-card {
  background: var(--glass-bg-low);
  border: 1px solid var(--glass-border-light);
  border-radius: 24px;
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ----------------------------------------------------
   Section Template Styling
   ---------------------------------------------------- */
.section-features, .section-demo, .section-tokenomics {
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.section-container {
  width: 90%;
  max-width: 1200px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-purple);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-slate);
  max-width: 600px;
  margin: 0 auto;
}

/* ----------------------------------------------------
   Günün Nabzı (Daily Poll) Section
   ---------------------------------------------------- */
.poll-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Left Card: Poll details */
.poll-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.poll-badge {
  display: inline-block;
  background: var(--accent-cyan-glow);
  color: var(--accent-cyan);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  border: 1px solid var(--accent-cyan);
}

.poll-question {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.poll-option-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-light);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-white);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: left;
}

.poll-option-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
}

.poll-option-btn.selected[data-vote="yes"] {
  border-color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.15);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.poll-option-btn.selected[data-vote="more"] {
  border-color: var(--accent-orange);
  background: rgba(255, 159, 67, 0.15);
  box-shadow: 0 0 20px rgba(255, 159, 67, 0.2);
}

.option-percentage-label {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 800;
}

.voted .option-percentage-label {
  opacity: 1;
  transform: scale(1);
}

.voted .poll-option-btn {
  pointer-events: none;
}

.poll-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--glass-border-light);
  padding-top: 20px;
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-slate);
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff3366;
  border-radius: 50%;
  margin-right: 4px;
  box-shadow: 0 0 8px #ff3366;
  animation: pulse 1s infinite;
}

/* Right Card: Results and Visualization */
.results-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.results-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.results-desc {
  font-size: 14px;
  color: var(--text-slate);
  margin-bottom: 32px;
}

.results-chart {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.chart-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chart-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}

.chart-pct-value {
  font-family: var(--font-headings);
  font-weight: 800;
}

.cyan-text { color: var(--accent-cyan); }
.orange-text { color: var(--accent-orange); }

.chart-bar-container {
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-bar-fill {
  height: 100%;
  width: 0%; /* Initial state for animation */
  border-radius: 6px;
  transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

.cyan-bar {
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  box-shadow: 0 0 15px var(--accent-cyan-glow);
}

.orange-bar {
  background: linear-gradient(90deg, #ff9f43, #ff5e3a);
  box-shadow: 0 0 15px var(--accent-orange-glow);
}

.results-info-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-light);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 12px;
  color: var(--text-slate);
}

/* ----------------------------------------------------
   Canlı Dene (Interactive Mini Step-Tracker) Section
   ---------------------------------------------------- */
.demo-interactive-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

/* Left: Radial Step Tracker Ring */
.circular-tracker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.radial-progress-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 32px;
}

.radial-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-progress {
  transition: stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.radial-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.radial-steps {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.radial-goal {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-slate);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.demo-action-buttons {
  display: flex;
  gap: 12px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-action {
  flex: 2;
  background: var(--accent-cyan);
  color: var(--text-dark);
  padding: 16px 24px;
  border: none;
  box-shadow: 0 0 15px var(--accent-cyan-glow);
}

.btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--accent-cyan);
}

.btn-action:active {
  transform: translateY(0);
}

.btn-action-outline {
  flex: 1;
  background: transparent;
  border: 1px solid var(--glass-border-light);
  color: var(--text-slate);
  padding: 16px;
}

.btn-action-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Right: Step simulation earnings & live RLS feed */
.earnings-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.earnings-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.earnings-desc {
  font-size: 14px;
  color: var(--text-slate);
  margin-bottom: 24px;
}

.earnings-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.earnings-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-light);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.earnings-stat-box:hover {
  border-color: var(--accent-cyan-glow);
}

.earnings-stat-box:nth-child(2):hover {
  border-color: var(--accent-orange-glow);
}

.earnings-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-slate);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.earnings-value {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}

.earnings-unit {
  font-size: 16px;
  font-weight: 700;
}

.earnings-sub {
  font-size: 11px;
  color: var(--text-slate);
  opacity: 0.8;
}

/* Milestones and level bars */
.milestone-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border-light);
  border-radius: 16px;
  padding: 16px 20px;
}

.milestone-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.milestone-bar-container {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.milestone-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange), #ff5e3a);
  box-shadow: 0 0 10px var(--accent-orange-glow);
  width: 0%;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.milestone-caption {
  font-size: 11px;
  color: var(--text-slate);
  line-height: 1.4;
}

/* Celebration Overlay */
.celebration-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 41, 0.95);
  backdrop-filter: blur(20px);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.celebration-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.celebration-content {
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.celebration-overlay.active .celebration-content {
  transform: scale(1);
}

.celebration-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 16px;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

.celebration-content h4 {
  font-size: 28px;
  color: var(--accent-cyan);
  text-shadow: 0 0 15px var(--accent-cyan-glow);
  margin-bottom: 8px;
}

.celebration-content p {
  color: var(--text-slate);
  font-size: 15px;
  margin-bottom: 24px;
}

/* ----------------------------------------------------
   Tokenomics Economy (Sleek 3-Card Grid)
   ---------------------------------------------------- */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.tokenomics-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 32px;
}

.token-card-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg-high);
  border: 1px solid var(--glass-border-light);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tokenomics-card:hover .token-card-icon-container {
  transform: scale(1.1) rotate(5deg);
}

.token-svg-icon {
  width: 28px;
  height: 28px;
}

.tokenomics-card.cyan-theme .token-svg-icon {
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 8px var(--accent-cyan));
}

.tokenomics-card.purple-theme .token-svg-icon {
  color: var(--accent-purple);
  filter: drop-shadow(0 0 8px var(--accent-purple));
}

.tokenomics-card.orange-theme .token-svg-icon {
  color: var(--accent-orange);
  filter: drop-shadow(0 0 8px var(--accent-orange));
}

.tokenomics-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.tokenomics-card.cyan-theme:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.15);
}

.tokenomics-card.purple-theme:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 0 30px rgba(209, 188, 255, 0.15);
}

.tokenomics-card.orange-theme:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 0 30px rgba(255, 159, 67, 0.15);
}

.token-card-title {
  font-size: 20px;
  font-weight: 800;
}

.token-card-desc {
  font-size: 14px;
  color: var(--text-slate);
  line-height: 1.6;
}

/* Card 3 Custom Shelter Image Overlay */
.tokenomics-card.shelter-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--glass-border-light);
  overflow: hidden;
}

.shelter-photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(17, 28, 68, 0.92) 0%,
    rgba(6, 14, 32, 0.97) 100%
  );
  z-index: 1;
}

.token-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Glowing Neon Corners */
.token-card-glow-point {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tokenomics-card.cyan-theme .token-card-glow-point {
  background: var(--accent-cyan);
}
.tokenomics-card.purple-theme .token-card-glow-point {
  background: var(--accent-purple);
}
.tokenomics-card.orange-theme .token-card-glow-point {
  background: var(--accent-orange);
}

.tokenomics-card:hover .token-card-glow-point {
  opacity: 0.35;
}

/* ----------------------------------------------------
   Footer Section
   ---------------------------------------------------- */
.footer-wrapper {
  background: #060e20;
  border-top: 1px solid var(--glass-border-light);
  padding: 80px 0 0;
  position: relative;
  z-index: 10;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--accent-cyan-glow));
}

.footer-brand-name {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-slate);
  max-width: 420px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-slate);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  transform: translateY(-4px);
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan-glow);
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-slate);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-link:hover {
  color: var(--text-white);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  background: #040813;
}

.footer-bottom-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-slate);
  opacity: 0.8;
}

/* ----------------------------------------------------
   Responsive Mobile Styling
   ---------------------------------------------------- */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }
  
  .hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats-row {
    justify-content: center;
    width: 100%;
  }
  
  .poll-grid-wrapper, .demo-interactive-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .nav-menu {
    gap: 16px;
    padding: 8px 16px;
  }
  
  .btn-nav-cta {
    display: none; /* Hide on small screen for layout sanity */
  }
  
  .section-hero {
    padding-top: 200px;
  }
  
  .hero-headline {
    font-size: 38px;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  
  .hero-stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .poll-question {
    font-size: 20px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ----------------------------------------------------
   Toast Notification (Glassmorphism)
   ---------------------------------------------------- */
.toast-notification {
  position: fixed;
  bottom: -100px;
  right: 30px;
  background: rgba(11, 19, 41, 0.85);
  border: 1px solid var(--accent-cyan-glow);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 15px var(--accent-cyan-glow);
  padding: 16px 24px;
  border-radius: 16px;
  backdrop-filter: var(--glass-blur);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.toast-notification.show {
  bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  font-size: 20px;
}

.toast-text-container {
  display: flex;
  flex-direction: column;
}

.toast-title {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-cyan);
}

.toast-message {
  font-size: 12px;
  color: var(--text-slate);
}

/* ----------------------------------------------------
   Premium Glassmorphic Modal Component
   ---------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 8, 19, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 90%;
  max-width: 750px;
  max-height: 80vh;
  background: rgba(11, 19, 41, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.15) !important;
  padding: 40px 32px 32px !important;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

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

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 32px;
  line-height: 1;
  color: var(--text-slate);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px var(--accent-cyan);
  transform: scale(1.1);
}

.modal-content-area {
  overflow-y: auto;
  padding-right: 12px;
  font-family: var(--font-body);
  color: var(--text-slate);
  font-size: 15px;
  line-height: 1.7;
}

/* Custom Scrollbar for Modal content */
.modal-content-area::-webkit-scrollbar {
  width: 6px;
}

.modal-content-area::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
}

.modal-content-area::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.modal-content-area::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan-glow);
}

/* Modal Content Rich Formatting */
.modal-header-title {
  font-family: var(--font-headings);
  font-size: 24px;
  color: var(--text-white);
  margin-bottom: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-meta {
  font-size: 13px;
  color: var(--accent-purple);
  margin-bottom: 16px;
}

.modal-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-cyan-glow) 0%, transparent 100%);
  margin-bottom: 24px;
}

.modal-section-title {
  font-family: var(--font-headings);
  font-size: 18px;
  color: var(--accent-cyan);
  margin: 28px 0 14px;
  font-weight: 700;
  text-shadow: 0 0 12px var(--accent-cyan-glow);
}

.modal-content-area p {
  margin-bottom: 16px;
}

.modal-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.modal-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.modal-list li::before {
  content: '🐾';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 11px;
}

.modal-alert-box {
  background: rgba(209, 188, 255, 0.08);
  border-left: 4px solid var(--accent-purple);
  padding: 16px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-white);
}

/* ----------------------------------------------------
   Privacy Policy Page Standalone Styling
   ---------------------------------------------------- */
#yurubi-privacy-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.privacy-page-wrapper {
  flex: 1;
  padding: 140px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.privacy-container {
  width: 100%;
  max-width: 850px;
}

.privacy-card {
  background: rgba(11, 19, 41, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 242, 254, 0.05) !important;
  padding: 50px 40px !important;
  border-radius: 24px;
}

.privacy-card-header {
  margin-bottom: 30px;
  text-align: center;
}

.privacy-badge {
  display: inline-block;
  background: rgba(0, 242, 254, 0.1);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan-glow);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-shadow: 0 0 8px var(--accent-cyan-glow);
}

.privacy-headline {
  font-family: var(--font-headings);
  font-size: 32px;
  line-height: 1.3;
  color: var(--text-white);
  font-weight: 900;
  margin-bottom: 12px;
}

.privacy-meta {
  font-size: 14px;
  color: var(--accent-purple);
}

.privacy-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-cyan-glow) 50%, transparent 100%);
  margin-top: 24px;
}

.privacy-body-content {
  font-family: var(--font-body);
  color: var(--text-slate);
  font-size: 16px;
  line-height: 1.8;
}

.privacy-body-content p {
  margin-bottom: 20px;
}

.privacy-section-title {
  font-family: var(--font-headings);
  font-size: 20px;
  color: var(--accent-cyan);
  margin: 36px 0 16px;
  font-weight: 700;
  text-shadow: 0 0 12px var(--accent-cyan-glow);
}

.privacy-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.privacy-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.privacy-list li::before {
  content: '🐾';
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 12px;
}

.privacy-alert-box {
  background: rgba(0, 242, 254, 0.04);
  border: 1px solid var(--accent-cyan-glow);
  border-left: 4px solid var(--accent-cyan);
  padding: 20px;
  border-radius: 12px;
  margin: 32px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-white);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.privacy-alert-box .alert-icon {
  font-size: 24px;
}

.privacy-contact-card {
  background: rgba(209, 188, 255, 0.06);
  border: 1px solid rgba(209, 188, 255, 0.15);
  padding: 16px 24px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 8px;
}

.privacy-inline-link {
  color: var(--accent-cyan);
  font-weight: 600;
  border-bottom: 1px dashed var(--accent-cyan-glow);
  transition: all 0.3s ease;
}

.privacy-inline-link:hover {
  color: var(--text-white);
  border-bottom-color: var(--text-white);
  text-shadow: 0 0 8px var(--accent-cyan-glow);
}

/* Adjustments for Mobile Privacy Screen */
@media (max-width: 768px) {
  .privacy-page-wrapper {
    padding-top: 180px;
    padding-bottom: 60px;
  }
  
  .privacy-card {
    padding: 30px 20px !important;
  }
  
  .privacy-headline {
    font-size: 24px;
  }
}

