/* ===================================================
   $CHAIN TOKEN CLAIM - STYLESHEET
   Aesthetic: Blood Red Crimson & Onyx Dark Anime / Web3
   =================================================== */

:root {
  --bg-dark: #07070a;
  --bg-darker: #040405;
  --bg-card: rgba(18, 5, 8, 0.72);
  --bg-card-hover: rgba(30, 8, 14, 0.85);
  
  --primary-red: #ff003c;
  --crimson-glow: #e50914;
  --dark-red: #8b0000;
  --accent-red: #ff2a55;
  --accent-gold: #ffd700;
  
  --border-red: rgba(255, 0, 60, 0.28);
  --border-glow: rgba(255, 0, 60, 0.65);
  
  --text-white: #ffffff;
  --text-muted: #a0a0a8;
  --text-dark-muted: #6b6b75;
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  
  --shadow-red-glow: 0 0 25px rgba(255, 0, 60, 0.45);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.7);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

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

::selection {
  background: var(--primary-red);
  color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #09090c;
}
::-webkit-scrollbar-thumb {
  background: #ff003c44;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Canvas for Particles & Confetti */
#embers-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* Background Artwork Layer */
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  max-width: 90vw;
  height: auto;
  object-fit: contain;
  opacity: 0.22;
  filter: drop-shadow(0 0 60px rgba(255, 0, 60, 0.4));
  animation: pulseBg 8s ease-in-out infinite alternate;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255, 0, 60, 0.12) 0%, rgba(7, 7, 10, 0.75) 55%, var(--bg-darker) 85%);
}

.bg-glow-orb {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.25) 0%, transparent 70%);
  filter: blur(80px);
}

@keyframes pulseBg {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.20; }
  100% { transform: translate(-50%, -50%) scale(1.04); opacity: 0.28; }
}

/* ================= HEADER & NAV ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 7, 10, 0.85);
  border-bottom: 1px solid rgba(255, 0, 60, 0.18);
  transition: var(--transition);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.65);
  border: 2px solid var(--primary-red);
  overflow: hidden;
  transition: var(--transition);
  flex-shrink: 0;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.logo-group:hover .logo-img {
  transform: scale(1.15) rotate(5deg);
}

.logo-group:hover .logo-icon {
  box-shadow: 0 0 28px rgba(255, 0, 60, 0.9);
  border-color: #ff3366;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-symbol {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #ffffff 30%, #ff6b8b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-red);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(255, 0, 60, 0.8);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-red);
  transition: var(--transition);
  box-shadow: 0 0 8px var(--primary-red);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-ca {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 0, 60, 0.08);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-ca:hover {
  background: rgba(255, 0, 60, 0.2);
  border-color: var(--primary-red);
  box-shadow: 0 0 14px rgba(255, 0, 60, 0.35);
  transform: translateY(-1px);
}

.btn-wallet {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary-red), #b30026);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
}

.btn-wallet:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 0, 60, 0.7);
  background: linear-gradient(135deg, #ff1a4b, #d9002e);
}

.btn-wallet.is-connected {
  background: rgba(46, 213, 115, 0.14);
  border: 1px solid rgba(46, 213, 115, 0.6);
  color: #2ed573;
  box-shadow: 0 0 20px rgba(46, 213, 115, 0.35);
}

.btn-wallet.is-connected:hover {
  background: rgba(46, 213, 115, 0.25);
  box-shadow: 0 0 30px rgba(46, 213, 115, 0.6);
  border-color: #2ed573;
}

.btn-header-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 60, 0.3);
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 12px rgba(255, 0, 60, 0.2);
}

.btn-header-x:hover {
  background: rgba(255, 0, 60, 0.2);
  border-color: var(--primary-red);
  color: #ffffff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 22px rgba(255, 0, 60, 0.65);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
}

/* ================= HERO & COMMON LAYOUT ================= */
.hero-section {
  position: relative;
  z-index: 10;
  padding-top: 130px;
  padding-bottom: 60px;
  text-align: center;
}

.page-hero-padding {
  padding-top: 130px;
  padding-bottom: 70px;
  min-height: 80vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Live Pill */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 0, 60, 0.12);
  border: 1px solid rgba(255, 0, 60, 0.4);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffb3c1;
  margin-bottom: 22px;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.2);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-red);
  box-shadow: 0 0 10px var(--primary-red);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 18px var(--primary-red); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Hero Title */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}

.title-sub {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: #ff6b8b;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.title-main {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 15%, #ff2a55 60%, #99001b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 35px rgba(255, 0, 60, 0.6));
}

.hero-subtitle {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 700;
}

/* ================= CONTRACT BANNER (TOP & ECONOMY) ================= */
.contract-banner {
  background: radial-gradient(circle at 50% 50%, rgba(35, 5, 12, 0.9) 0%, rgba(10, 3, 5, 0.92) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
}

.hero-top-contract {
  width: 100%;
  max-width: 640px;
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.contract-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.contract-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffccd5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contract-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 0, 60, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  gap: 12px;
  overflow: hidden;
}

.contract-code-row code {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: #ffffff;
  word-break: break-all;
}

.btn-copy-main {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--primary-red);
  border: none;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-copy-main:hover {
  background: #ff1a4b;
  box-shadow: 0 0 15px rgba(255, 0, 60, 0.6);
}

/* ================= CENTRAL ART SHOWCASE & CLAIM BUTTON ================= */
.hero-card-portal {
  width: 100%;
  max-width: 640px;
  margin-bottom: 40px;
  position: relative;
}

.art-frame {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(40, 0, 10, 0.85) 0%, rgba(10, 3, 5, 0.95) 75%);
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 30px 24px 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 0, 60, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.art-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff003c, #ff6b8b, transparent);
  animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.portal-art {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary-red);
  box-shadow: 0 0 35px rgba(255, 0, 60, 0.7), inset 0 0 25px rgba(255, 0, 60, 0.5);
  margin-bottom: 24px;
  transition: var(--transition);
  animation: floatArt 5s ease-in-out infinite alternate;
}

.portal-art:hover {
  transform: scale(1.04);
  box-shadow: 0 0 50px rgba(255, 0, 60, 0.9);
}

@keyframes floatArt {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.floating-runes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.rune {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.6;
  filter: drop-shadow(0 0 8px var(--primary-red));
  animation: floatRune 6s infinite alternate ease-in-out;
}
.r1 { top: 20%; left: 15%; animation-delay: 0s; }
.r2 { top: 18%; right: 15%; animation-delay: 1.5s; }
.r3 { bottom: 35%; left: 10%; animation-delay: 3s; }

@keyframes floatRune {
  0% { transform: translateY(0) scale(0.9); opacity: 0.4; }
  100% { transform: translateY(-15px) scale(1.1); opacity: 0.8; }
}

.portal-action-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.token-rate-tag {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #ffccd5;
  background: rgba(255, 0, 60, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 0, 60, 0.3);
}

.token-rate-tag strong {
  color: #ffffff;
  font-weight: 700;
}

/* GIANT CLAIM BUTTON */
.btn-primary-claim {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 20px 32px;
  background: linear-gradient(135deg, #ff003c 0%, #d4002e 50%, #8b0000 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 0, 60, 0.65), 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
  display: block;
}

.btn-primary-claim:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 0, 60, 0.95), 0 15px 35px rgba(0, 0, 0, 0.8);
  border-color: #ffffff;
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary-claim:hover .btn-glow {
  opacity: 1;
}

.portal-gas-note {
  font-size: 0.85rem;
  color: #a0a0ab;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================= CLAIM STATS & COUNTDOWN ================= */
.claim-stats-card {
  width: 100%;
  max-width: 780px;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}

.timer-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.timer-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #ff99aa;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 0, 60, 0.3);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  min-width: 60px;
}

.time-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.time-text {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.colon {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-red);
}

.progress-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.progress-labels strong {
  color: #ffffff;
  font-family: var(--font-mono);
}

.progress-percent {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary-red);
}

.progress-track {
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(255, 0, 60, 0.2);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #b30026, #ff003c, #ff4d6d);
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px rgba(255, 0, 60, 0.8);
  transition: width 1s ease-in-out;
}

.progress-sub {
  font-size: 0.8rem;
  color: #8c8c98;
}

/* Quick Nav Cards on Home */
.quick-nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 780px;
  margin-bottom: 36px;
}

.quick-nav-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: var(--transition);
}

.quick-nav-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 0, 60, 0.3);
}

.quick-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 0, 60, 0.12);
  border: 1px solid rgba(255, 0, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.quick-card-text {
  flex: 1;
  text-align: left;
}

.quick-card-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.quick-card-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.quick-arrow {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.quick-nav-card:hover .quick-arrow {
  transform: translateX(4px);
  color: var(--primary-red);
}

/* Hero Social Bar */
.hero-social-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.social-pill:hover {
  color: #ffffff;
  background: rgba(255, 0, 60, 0.15);
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 0, 60, 0.3);
}

/* ================= SECTION COMMON ================= */
section {
  position: relative;
  z-index: 10;
  padding: 60px 0;
}

.section-header {
  margin-bottom: 40px;
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-red);
  background: rgba(255, 0, 60, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 0, 60, 0.25);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 12px;
}

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

/* ================= CLAIM DASHBOARD ================= */
.claim-dashboard-section {
  background: linear-gradient(180deg, transparent 0%, rgba(12, 2, 5, 0.8) 50%, transparent 100%);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.dash-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.dash-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 0, 60, 0.2);
}

.dash-card.highlight-card {
  border-color: rgba(255, 0, 60, 0.5);
  background: radial-gradient(circle at 50% 0%, rgba(60, 5, 15, 0.85) 0%, rgba(15, 4, 7, 0.8) 100%);
}

.dash-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--primary-red);
}

.dash-card-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.dash-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 20px;
}

.wallet-status-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.status-indicator.disconnected { color: #ff99aa; }
.status-indicator.connected { color: #2ed573; }

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.connected-address {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.connected-address strong { color: #ffffff; }

.btn-dash-connect,
.btn-dash-disconnect {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-dash-connect {
  background: rgba(255, 0, 60, 0.15);
  border: 1px solid var(--border-glow);
  color: #ffffff;
}

.btn-dash-connect:hover {
  background: var(--primary-red);
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
}

.btn-dash-disconnect {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.btn-dash-disconnect:hover {
  color: #ff6b8b;
  border-color: var(--primary-red);
}

/* Allocation Info */
.allocation-value-box {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 0, 60, 0.35);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  box-shadow: inset 0 0 15px rgba(255, 0, 60, 0.1);
}

.alloc-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.alloc-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin: 4px 0;
  text-shadow: 0 0 15px rgba(255, 0, 60, 0.6);
}

.alloc-symbol { color: var(--primary-red); }
.alloc-estimate {
  font-size: 0.8rem;
  color: #2ed573;
  font-family: var(--font-mono);
}

.alloc-details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alloc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 6px;
}

.alloc-val { color: #ffffff; font-weight: 600; }
.text-green { color: #2ed573; }
.text-crimson { color: var(--primary-red); }

.btn-execute-claim {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary-red), #b30026);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 25px rgba(255, 0, 60, 0.5);
  transition: var(--transition);
}

.btn-execute-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 0, 60, 0.8);
  background: linear-gradient(135deg, #ff1a4b, #cc002d);
}

.btn-execute-claim.is-locked {
  background: linear-gradient(135deg, rgba(35, 8, 14, 0.95), rgba(18, 4, 7, 0.98));
  border: 1px solid rgba(255, 0, 60, 0.45);
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.2), inset 0 0 15px rgba(255, 0, 60, 0.1);
  color: #ffb3c1;
  cursor: pointer;
}

.btn-execute-claim.is-locked:hover {
  background: linear-gradient(135deg, rgba(55, 12, 22, 0.98), rgba(28, 6, 11, 0.98));
  border-color: var(--primary-red);
  box-shadow: 0 0 30px rgba(255, 0, 60, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-execute-claim.is-locked i {
  color: #ff003c;
  animation: lockPulse 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px #ff003c);
}

.btn-timer-span {
  font-family: var(--font-mono);
  color: #ffd700;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.55);
  margin-left: 4px;
}

@keyframes lockPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 5px #ff003c); }
  100% { transform: scale(1.15); filter: drop-shadow(0 0 12px #ff003c); }
}

.btn-execute-claim.shake {
  animation: lockShake 0.45s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes lockShake {
  10%, 90% { transform: translate3d(-2px, 0, 0); }
  20%, 80% { transform: translate3d(3px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* ================= TOKENOMICS ================= */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.toko-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.toko-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-red);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 0, 60, 0.3);
}

.toko-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 0, 60, 0.12);
  border: 1px solid rgba(255, 0, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.toko-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.toko-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.toko-info {
  font-size: 0.85rem;
  color: #92929e;
  line-height: 1.5;
}

/* Claim CTA Banner on Tokenomics */
.claim-cta-banner {
  background: radial-gradient(circle at 0% 50%, rgba(60, 0, 15, 0.9) 0%, rgba(15, 3, 7, 0.9) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 0, 60, 0.2);
}

.cta-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-text-wrap {
  text-align: left;
  max-width: 580px;
}

.cta-text-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.cta-text-wrap p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn-cta-claim {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-red), #b30026);
  border-radius: var(--radius-full);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cta-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 0, 60, 0.8);
  background: linear-gradient(135deg, #ff1a4b, #d9002e);
}

/* ================= FOOTER ================= */
.site-footer {
  position: relative;
  z-index: 10;
  background: #040406;
  border-top: 1px solid rgba(255, 0, 60, 0.2);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

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

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social-links a:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 0, 60, 0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

/* ================= MODALS ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: radial-gradient(circle at 50% 0%, #20040a 0%, #0c0205 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 0, 60, 0.3);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.modal-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-title-group h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #ffffff;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--primary-red);
}

.modal-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Wallet Options */
.wallet-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.wallet-option {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 60, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
  color: #ffffff;
}

.wallet-option:hover {
  background: rgba(255, 0, 60, 0.15);
  border-color: var(--primary-red);
  transform: translateX(4px);
  box-shadow: 0 0 15px rgba(255, 0, 60, 0.25);
}

.wallet-opt-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wallet-icon-img {
  width: 30px;
  height: 30px;
}

.wallet-phantom-icon,
.wallet-coinbase-icon,
.wallet-trust-icon,
.wallet-wc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.wallet-robinhood-icon { background: #00c805; color: #000000; }
.wallet-phantom-icon { background: #ab9ff2; color: #1e1b2e; }
.wallet-coinbase-icon { background: #0052ff; color: #fff; }
.wallet-trust-icon { background: #3375bb; color: #fff; }
.wallet-wc-icon { background: #3b99fc; color: #fff; }

.wallet-opt-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.wallet-opt-info strong {
  font-size: 0.95rem;
}

.wallet-opt-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.wallet-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 0, 60, 0.15);
  border: 1px solid rgba(255, 0, 60, 0.3);
  color: #ff99aa;
}

.modal-connected-banner {
  background: rgba(46, 213, 115, 0.1);
  border: 1px solid rgba(46, 213, 115, 0.35);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.modal-conn-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot-green {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2ed573;
  box-shadow: 0 0 10px #2ed573;
  flex-shrink: 0;
}

.conn-sub {
  font-size: 0.75rem;
  color: #a0a0a8;
  display: block;
}

.modal-conn-info strong {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #ffffff;
}

.btn-modal-disconnect {
  padding: 6px 12px;
  background: rgba(255, 0, 60, 0.2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  color: #ff99aa;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-modal-disconnect:hover {
  background: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
}

.custom-wallet-input-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.custom-input-row {
  display: flex;
  gap: 8px;
}

.custom-input-row input {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 0, 60, 0.3);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.custom-input-row input:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 10px rgba(255, 0, 60, 0.4);
}

.btn-sub-custom {
  background: var(--primary-red);
  border: none;
  border-radius: var(--radius-sm);
  color: #ffffff;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-sub-custom:hover {
  background: #ff1a4b;
}

/* Success Modal */
.success-modal {
  text-align: center;
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(46, 213, 115, 0.15);
  border: 2px solid #2ed573;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ed573;
  font-size: 2.2rem;
  margin: 0 auto 16px;
  box-shadow: 0 0 25px rgba(46, 213, 115, 0.4);
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
}

.success-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.tx-summary-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 0, 60, 0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-align: left;
}

.tx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.badge-confirmed {
  color: #2ed573;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tx-summary-card code {
  font-family: var(--font-mono);
  color: #ff99aa;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-share-x {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #000000;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-share-x:hover {
  background: #e6e6e6;
  transform: translateY(-1px);
}

.btn-done-modal {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 0, 60, 0.15);
  border: 1px solid var(--border-red);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-done-modal:hover {
  background: rgba(255, 0, 60, 0.3);
  border-color: var(--primary-red);
}

/* ================= TOAST NOTIFICATIONS ================= */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: rgba(20, 4, 8, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glow);
  border-left: 4px solid var(--primary-red);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  color: #ffffff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 0, 60, 0.35);
  animation: slideInToast 0.3s ease forwards;
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast.toast-success { border-left-color: #2ed573; }
.toast.toast-success i { color: #2ed573; }
.toast.toast-info i { color: var(--primary-red); }

/* Sound Toggle */
.sound-toggle-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 5, 8, 0.85);
  border: 1px solid var(--border-red);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.sound-toggle-btn:hover {
  color: #ffffff;
  border-color: var(--primary-red);
  box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 900px) {
  .claim-stats-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: rgba(7, 7, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-red);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

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

  .mobile-toggle { display: flex; }
  .btn-ca .ca-text { display: none; }
  .portal-art { width: 200px; height: 200px; }
  .btn-primary-claim { padding: 16px 20px; }
  .btn-content { font-size: 1.05rem; letter-spacing: 1px; }
  .contract-code-row { flex-direction: column; align-items: stretch; }
  .footer-top, .footer-bottom { flex-direction: column; text-align: center; }
}
