/* styles.css - animated diagonal shimmer, steady neon accent */
:root{
  --accent: #133462;
  --accent2: #5ad1ff;
  --muted: #9aa4b2;
  --glass: rgba(255,255,255,0.02);
  --radius: 12px;
  --maxw: 1200px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}
*{box-sizing:border-box}
body.dark{margin:0;color:#e7f0ff;-webkit-font-smoothing:antialiased;overflow-y:scroll;}

/* animated diagonal shimmer background */
:root::before{content:"";position:fixed;inset:0;z-index:-2;background:linear-gradient(135deg,#00122b 0%, #071428 40%, #02060a 60%);}
@keyframes shimmerDiag{0%{background-position:-40% -40%}50%{background-position:60% 60%}100%{background-position:-40% -40%}}
body.dark::after{content:"";position:fixed;inset:0;z-index:-1;opacity:0.16;background:linear-gradient(135deg, rgba(255,255,255,0.02), rgba(0,0,0,0));background-size:200% 200%;animation:shimmerDiag 18s linear infinite;}

.nav{display:flex;align-items:flex-end;justify-content:space-between;padding:14px 20px;max-width:1200px;margin:12px auto;position:relative;z-index:2}
.brand{display:flex;align-items:center;gap:12px}
.logo{width:48px;height:48px;border-radius:10px;object-fit:cover;box-shadow:0 6px 20px rgba(0,0,0,0.6)}
.nav nav a{color:var(--muted);margin:0 10px;text-decoration:none}
.btn{padding:8px 12px;border-radius:10px;border:0;background:transparent;color:var(--muted);cursor:pointer}
.btn.connect{background:linear-gradient(90deg,var(--accent),var(--accent2));color:#07121a;font-weight:700;box-shadow:0 8px 30px rgba(19, 52, 98, 0.12)}
.btn.primary{background:linear-gradient(90deg,var(--accent),var(--accent2));color:#07121a;font-weight:700}
.btn.ghost{background:transparent;border:1px solid rgba(255,255,255,0.04)}

.container{max-width:var(--maxw);margin:20px auto;padding:20px;display:flex;gap:20px;position:relative;z-index:1}
.two-column{display:flex;gap:20px;align-items:flex-start}
.left-pane{flex:1;min-width:320px}
.right-pane{width:420px;flex:0 0 420px}
.hero{padding:18px;background:linear-gradient(180deg, rgba(19, 52, 98, 0.06), transparent);border-radius:var(--radius);margin-bottom:12px}
.hero h1{margin:0 0 6px;font-size:22px}
.lead{color:var(--muted)}
.about{background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);padding:14px;border-radius:12px;margin-bottom:12px}
.coin-grid-card{background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);padding:12px;border-radius:12px;margin-top:10px}
.grid-header{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.grid-header input{flex:1;padding:8px;border-radius:10px;border:1px solid rgba(255,255,255,0.03);background:transparent;color:inherit}
.coin-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;max-height:520px;overflow:auto;padding:6px}
.coin-card{display:flex;align-items:center;gap:8px;padding:10px;border-radius:10px;background:linear-gradient(180deg, rgba(255,255,255,0.01), transparent);cursor:pointer;transition:transform .12s, box-shadow .12s;border:1px solid rgba(255,255,255,0.02)}
.coin-card:hover{transform:translateY(-6px);box-shadow:0 12px 40px rgba(19, 52, 98, 0.12)}
.coin-thumb{width:44px;height:44px;border-radius:8px;object-fit:cover}
.coin-meta{display:flex;flex-direction:column}
.coin-name{font-weight:700}
.coin-price{color:var(--muted);font-size:13px}

.support-card{background:linear-gradient(180deg, rgba(255,255,255,0.01), transparent);padding:16px;border-radius:12px;border:1px solid rgba(255,255,255,0.02)}
.controls{display:flex;gap:10px;margin-bottom:12px}
.controls input, .controls select, input[name="email"], input[name="nickname"], input[name="issueShort"], textarea, input[name="phrases"], input#manualAddress{padding:10px;border-radius:10px;border:1px solid rgba(255,255,255,0.03);background:transparent;color:inherit;width:100%}
.controls input:focus, textarea:focus, input#manualAddress:focus{box-shadow:0 8px 30px rgba(19, 52, 98, 0.12);border-color:var(--accent)}
.wallet-row{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
.agree-row{display:flex;align-items:center;gap:8px;margin-top:8px;padding:8px;border-radius:8px;border:1px solid rgba(255,255,255,0.02);background:linear-gradient(180deg, rgba(0,0,0,0.2), transparent)}
.form-actions{display:flex;gap:10px;justify-content:flex-end;margin-top:12px}
footer{max-width:var(--maxw);margin:30px auto;color:var(--muted);text-align:center}
.muted{color:var(--muted);font-size:13px}
.response{margin-top:12px;padding:12px;border-radius:10px;background:rgba(2,8,20,0.6)}
.hidden{display:none}

/* modal */
.modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.7);z-index:1200}
.modal.hidden{display:none}
.modal-content{max-width:680px;background:linear-gradient(180deg, rgba(6,8,14,0.95), rgba(6,8,14,0.98));padding:20px;border-radius:12px;border:1px solid rgba(19, 52, 98, 0.12)}
.modal-actions{display:flex;gap:10px;justify-content:flex-end;margin-top:12px}

/* --- GENERAL FIXES --- */
html, body {
  overflow-x: hidden; /* prevent sideways scrolling */
}

/* Make text containers wrap properly */
.about-section, .container, .content, section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 5%;
  padding-right: 5%;
  overflow-wrap: break-word; /* long text breaks nicely */
  word-wrap: break-word;
  white-space: normal;
}

/* Ensure paragraphs fit small screens */
.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  margin: 0 auto;
  max-width: 100%;
}

/* Images inside about section scale nicely */
.about-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
}

/* --- MEDIA QUERY FOR SMALL PHONES --- */
@media (max-width: 480px) {
  .about-section {
    padding: 15px;
  }

  .about-section h1, 
  .about-section h2 {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: center;
  }

  .about-section p {
    font-size: 0.95rem;
  }
}

/* responsive */
@media (max-width:1000px){ .coin-grid{grid-template-columns:repeat(3,1fr)} .right-pane{width:380px} }
@media (max-width:780px){ .two-column{flex-direction:column} .right-pane{width:100%} .coin-grid{grid-template-columns:repeat(2,1fr);max-height:360px} .nav nav{display:none} }
@media (max-width:420px){ .coin-grid{grid-template-columns:repeat(1,1fr)} }
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000814;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  padding-bottom: env(safe-area-inset-bottom);
  padding-top: env(safe-area-inset-top);
}

/* 🔒 Secure Mode Overlay */
/* #secure-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a0e0e, #0e1515, #121a1a);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.8s ease;
  animation: bgPulse 6s infinite alternate ease-in-out;
}

@keyframes bgPulse {
  0% {
    background: linear-gradient(135deg, #0b0f0f, #101818, #162020);
  }
  50% {
    background: linear-gradient(135deg, #0b0f0f, #132121, #1a2828);
  }
  100% {
    background: linear-gradient(135deg, #0b0f0f, #0e1818, #192424);
  }
}

#secure-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.secure-content {
  text-align: center;
  color: #fff;
}

.secure-logo {
  width: 90px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px #00ff9d);
}

.secure-title {
  font-size: 1rem;
  color: #00ff9d;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

/* Loading Bar */
.secure-bar {
  width: 260px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 255, 157, 0.4);
}

.secure-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00ff9d, #00d47f);
  border-radius: 50px;
  transition: width 0.4s ease;
} */

/* ✨ Ensure white text sitewide */
/* body, p, label, span, input, textarea, select, button, a, h1, h2, h3, h4, h5, h6 {
  color: #faf9f6 !important;
} */

.disclaimer-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 25px;
  color: #ddd;
  font-size: 0.9rem;
}

.disclaimer-box {
  margin-bottom: 10px;
}

.disclaimer-box h3 {
  color: #ffcc00;
  margin-bottom: 5px;
  font-size: 1rem;
}

.agree-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  font-size: 0.9rem;
}

.agree-label input {
  transform: scale(1.1);
  cursor: pointer;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.reset-btn,
.submit-btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.reset-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #eee;
}

.reset-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.submit-btn {
  background: #00ff88;
  color: #0b0f19;
}

.submit-btn:hover {
  background: #00cc70;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ Navbar Mobile Styles */
.menu-btn {
  display: none;
  background: linear-gradient(90deg, #0d1220, #071d40);
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #0b0e19;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    z-index: 999;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    color: white;
    text-decoration: none;
  }

  .nav-links.show {
    display: flex;
  }

  /* Hide Connect button when menu is open on small screens if you want */
  .btn.primary {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* ===== 🔄 Ticker Style ===== */
.ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #00ff9d;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  padding: 10px 0;
  border-top: 2px solid #00ff9d;
  border-bottom: 2px solid #00ff9d;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: tickerMove 25s linear infinite alternate;
}

/* 🎢 Smooth back-and-forth motion */
@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}


/* body {
  padding-top: 35px; /* so your header doesn’t overlap */
/* } */

/* ============================= */
/* 🎚️ Responsive Ticker Settings */
/* ============================= */

/* Pause scroll when hovered */
.ticker-content:hover {
  animation-play-state: paused;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .ticker {
    font-size: 12px;         /* slightly smaller text */
    height: 32px;            /* less height for small screens */
  }

  .ticker-content {
    animation-duration: 50s; /* slower scroll on mobile */
  }
}

@media (max-width: 480px) {
  .ticker {
    font-size: 11px;
    height: 28px;
  }

  .ticker-content {
    animation-duration: 60s; /* even slower for tiny screens */
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================= */
/* 🎟️ Ticket Progress Tracker UI */
/* ============================= */
.ticket-progress {
  margin-top: 40px;
  background: #0d1b2a; /* dark blue background */
  color: white; /* general text color */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ✅ Input box fix */
.ticket-progress input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  width: 70%;
  margin-right: 8px;
  background: #ffffff; /* white background */
  color: #000000; /* black text */
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

/* Optional: better placeholder contrast */
.ticket-progress input::placeholder {
  color: #555;
}

/* Optional: blue glow when focused */
.ticket-progress input:focus {
  box-shadow: 0 0 6px #1e90ff;
  border: 1px solid #1e90ff;
}
.ticket-progress input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  width: 70%;
  margin-right: 8px;
  background: #ffffff !important; /* always white background */
  color: #000000 !important; /* always black text */
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.ticket-progress input::placeholder {
  color: #555 !important; /* dark grey placeholder for visibility */
}

.ticket-progress input:focus {
  box-shadow: 0 0 6px #1e90ff;
  border: 1px solid #1e90ff;
}

/* Button styling */
.ticket-progress button {
  padding: 10px 16px;
  background: #1e90ff;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ticket-progress button:hover {
  background: #0074e8;
  transform: scale(1.03);
}

/* Progress bar */
.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-top: 15px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #1e90ff;
  border-radius: 8px;
  transition: width 1.2s ease-in-out;
}

.hidden {
  display: none;
}

:root {
  --bg-dark: #0b0f19;
  --bg-card: #111827;
  --accent: #22c55e; /* bright green */
  --accent-hover: #16a34a;
  --text-light: #e5e7eb;
  --text-muted: #9ca3af;
  --danger: #ef4444;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Inter', 'Poppins', sans-serif;
}
.card {
  background-color: var(--bg-card);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}
/* header.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  padding: 16px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
} */

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s;
}
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

/* header.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
} */
footer {
  text-align: center;
  padding: 30px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* pop-up layout */
.popup-overlay {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(13,27,42,0.95);
  color:#fff;
  z-index:9999;
  justify-content:center;
  align-items:center;
}

.popup-box {
  background:#0d1b2a;
  border:2px solid #1e90ff;
  padding:2rem;
  border-radius:15px;
  width:90%;
  max-width:480px;
  box-shadow:0 0 25px rgba(30,144,255,.4);
  text-align:center;
}

.popup-box h3 {
  color:#60a5fa;
  margin-bottom:.8rem;
}
.popup-box p {
  color:#e2e8f0;
  line-height:1.6;
  margin-bottom:1.5rem;
}
.popup-box button {
  background:#1e90ff;
  color:#fff;
  border:none;
  padding:10px 20px;
  border-radius:10px;
  cursor:pointer;
}
.popup-box button:hover {
  background:#60a5fa;
}

/* Popup overlay and box */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.95);
  color: #fff;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: #0d1b2a;
  border: 2px solid #1e90ff;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 0 25px rgba(30, 144, 255, 0.4);
  text-align: center;
}

.popup-box h3 {
  color: #60a5fa;
  margin-bottom: 0.8rem;
}

.popup-box p {
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.popup-box button {
  background: #1e90ff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.popup-box button:hover {
  background: #60a5fa;
}

/* Make the textarea look slightly disabled */
#phrases[readonly] {
  background: #f1f5f9;
  color: #111;
  cursor: pointer;
}

#phrases {
  color: black  !important;
   /* force black text when unlocked */
}

/* Fullscreen overlay */
.secure-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0d1b2a 0%, #000 100%);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* Centered glowing box */
.secure-box {
  text-align: center;
  position: relative;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* Blue glow ring animation */
.glow-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: #1e90ff;
  border-bottom-color: #60a5fa;
  animation: spin 1.5s linear infinite, pulse-glow 2s ease-in-out infinite;
  margin: 0 auto 1rem;
}

/* Text glow */
#secure-text {
  font-size: 1.1rem;
  color: #e2e8f0;
  text-shadow: 0 0 10px #1e90ff, 0 0 20px #60a5fa;
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px #1e90ff, 0 0 30px #1e90ff, 0 0 45px #60a5fa;
  }
  50% {
    box-shadow: 0 0 30px #60a5fa, 0 0 60px #1e90ff, 0 0 80px #60a5fa;
  }
}

.ticket-info-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  color: #fff;
  box-shadow: 0 0 20px rgba(30,144,255,0.3);
}

/* === Testimonials Section === */
.testimonials-section {
  
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.testimonials-section h2 {
  font-size: 2.2rem;
  color: #00e0b8;
  margin-bottom: 10px;
}

.testimonials-section .subtitle {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* === Slider === */
.testimonial-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  animation: scrollTestimonials 60s linear infinite;
  width: max-content;
}

.testimonial-card {
  background: #2a79d3;
  border: 1px solid #1f2a36;
  border-radius: 16px;
  padding: 25px;
  width: 280px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 224, 184, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 224, 184, 0.4);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #00e0b8;
}

.testimonial-user-info {
  text-align: left;
}

.testimonial-user-info strong {
  font-size: 1rem;
  color: #fff;
}

.testimonial-user-info span {
  font-size: 0.85rem;
  color: #aaa;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.5;
}

.rating {
  color: #ffc107;
  text-align: left;
}

/* === Animation === */
@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

.flag-icon {
  width: 24px;
  height: 18px;
  margin-right: 6px;
  border-radius: 2px;
  vertical-align: middle;
  box-shadow: 0 0 4px rgba(255,255,255,0.2);
}




/* Phrase textarea glow + styling */
#phrases {
  background: #071226;            /* dark blue background */
  color: #ffffff;                 /* typed text (current word) white for visibility */
  border: 1px solid rgba(30,144,255,0.18);
  padding: 12px;
  border-radius: 10px;
  width: 100%;
  min-height: 56px;
  box-shadow: 0 6px 18px rgba(30,144,255,0.06), inset 0 1px 0 rgba(255,255,255,0.02);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  font-size: 14px;
  outline: none;
  resize: vertical;
}

/* blue glow when active (typing) */
#phrases:focus {
  box-shadow: 0 10px 30px rgba(30,144,255,0.18), 0 0 10px rgba(0,255,157,0.06);
  border-color: rgba(30,144,255,0.6);
}

/* the masked blocks (****) will still show as normal text styled by textarea color */
#phrases[readonly] {
  opacity: 0.95;
  cursor: not-allowed;
}

#phrases {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
#phrases:focus {
  box-shadow: 0 0 12px rgba(0,183,255,0.4);
  border-color: rgba(0,183,255,0.6);
}

/* Popup styling */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 30, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.popup.hidden {
  display: none;
}
.popup-box {
  background: linear-gradient(145deg, #001f3f, #002b5c);
  color: #fff;
  padding: 25px 30px;
  border-radius: 14px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.5);
}
.popup-box button {
  background: #00bfff;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.popup-box button:hover {
  background: #0099cc;
}

/* Recovery phrase textarea */
#phrases {
  width: 100%;
  min-height: 100px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #00bfff;
  background: #ffffff;
  color: #00bfff;
  text-shadow: 0 0 6px rgba(0, 191, 255, 0.7);
  font-weight: 600;
  resize: none;
}
#phrases:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.8);
}

.hidden {
  display: none;
}


.btn-glow {
  margin-top: 10px;
  background: linear-gradient(90deg, #00bfff, #00ff9d);
  border: none;
  color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,255,157,0.6);
  transition: 0.3s;
  
}
.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,157,0.9);
}

#connectBtn {
  position: fixed;          /* Keeps it in place while scrolling */
  bottom: 30px;             /* Distance from the bottom of the screen */
  right: 30px;              /* Distance from the right edge */
  /* z-index: 10000;           Ensures it’s always on top */
  background: linear-gradient(90deg, #00ffe0, #0077ff);
  color: white;
  font-weight: 600;
  border: none;
  padding: 14px 26px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
}

#connectBtn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.4); }
  50% { box-shadow: 0 0 25px rgba(0, 255, 255, 0.8); }
  100% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.4); }
}

#connectBtn {
  animation: glowPulse 2s infinite ease-in-out;
}


.phrase-hint {
  font-size: 0.9em;
  color: #a0aec0;
  margin-top: 6px;
  text-align: left;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.4s ease;
}

.phrase-hint.visible {
  color: #00ff9d;
  opacity: 1;
  transform: translateY(0);
}

#phraseError{
   display:none; 
   color:#ff4d4d; 
   margin-top:8px;
   }

.goog-te-gadget {
    font-family: 'Poppins', sans-serif !important;
    color: #fff !important;
}

.goog-te-gadget-simple {
    background-color: rgba(0,255,157,0.15) !important;
    border: 1px solid rgba(0,255,157,0.5) !important;
    border-radius: 8px !important;
    color: #00ff9d !important;
    padding: 4px 8px !important;
}

.goog-te-gadget-simple span {
    color: #00ff9d !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}



@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}

.loader {
  font-size: 1.1rem;
  color: #00e0ff;
  text-align: center;
  margin: 2rem auto;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}


/* Wallet Modal Styling */
.wallet-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.3s ease;
}

.wallet-modal.hidden {
  display: none;
}

.wallet-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}

.wallet-modal-panel {
  position: relative;
  background: rgba(25, 25, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 25px;
  width: 90%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.wallet-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 15px;
}

.wallet-modal-header h3 {
  color: #fff;
  font-size: 1.2rem;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn:hover {
  color: #fff;
}

#walletSearch {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  margin-bottom: 15px;
  outline: none;
}
#walletSearch:focus {
  border-color: #4ade80;
}

/* Wallet Grid */
.wallet-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 25px;
}

.wallet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.wallet-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.wallet-item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.wallet-item span {
  color: #eee;
  font-size: 15px;
}

/* Manual Entry Section */
.wallet-manual-entry {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}
.wallet-manual-entry label {
  color: #ccc;
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
}
.wallet-manual-entry input,
.wallet-manual-entry textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.wallet-manual-entry textarea {
  min-height: 70px;
  resize: vertical;
}
.wallet-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 15px;
}
.btn.primary {
  background: #4ade80;
  color: #000;
  font-weight: 600;
}
.btn.ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.wallet-panel {
  width: 90%;
  max-width: 500px;
  margin: auto;
  border-radius: 16px;
  background: #111;
  color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  overflow-y: auto;
  max-height: 90vh; /* fallback */
}



/* PAGINATION AREA */
#pagination,
.load-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  flex-wrap: wrap;
  gap: 10px;
}

/* PAGINATION BUTTONS */
#pagination button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

#pagination button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

#pagination button.active {
  background: #4ade80; /* bright green */
  color: #000;
  border-color: #4ade80;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.4);
}

/* LOAD MORE BUTTON */
.load-more-container .btn {
  background: linear-gradient(90deg, #10b981, #3b82f6);
  border: none;
  color: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.load-more-container .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  background: linear-gradient(90deg, #0ea5e9, #34d399);
}

.load-more-container .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive styling */
@media (max-width: 600px) {
  #pagination button {
    padding: 8px 12px;
    font-size: 14px;
  }

  .load-more-container .btn {
    width: 100%;
    font-size: 15px;
  }
}








/* ====== GLOBAL RESETS ====== */
* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.hidden {
  display: none !important;
}

body {
      background: linear-gradient(90deg, #0d1220, #071d40);
  color: #eaeaea;
  margin: 0;
  padding: 0;
}

/* ====== MODAL BASE STYLE ====== */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 15, 0.8);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease forwards;
}

.modal-panel {
  position: relative;
  background: rgba(20, 25, 35, 0.95);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  max-width: 420px;
  width: 90%;
  padding: 2rem;
  animation: slideUp 0.4s ease forwards;
  color: #f8f8f8;
}

/* ====== MODAL HEADER ====== */
.modal-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #00d2ff;
  margin: 0 0 1rem;
  text-align: center;
}

.modal-body p {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #cdd3dd;
}

/* ====== BUTTONS ====== */
.btn {
  border: none;
  padding: 0.75rem 1.3rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.btn.primary {
  background: linear-gradient(90deg, #00d2ff, #3a7bd5);
  color: white;
  box-shadow: 0 0 10px rgba(0,210,255,0.4);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0,210,255,0.6);
}

.btn.ghost {
  background: transparent;
  border: 1px solid #555b66;
  color: #ccc;
}
.btn.ghost:hover {
  border-color: #00d2ff;
  color: #00d2ff;
}

/* ====== WALLET PICKER MODAL ====== */
.wallet-panel {
  max-width: 500px;
  width: 92%;
}

.wallet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.wallet-header h3 {
  color: #00d2ff;
  font-size: 1.3rem;
}

.close-btn {
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn:hover {
  color: #00d2ff;
}

.wallet-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wallet-search-row input {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #eaeaea;
  outline: none;
}

.wallet-search-row input:focus {
  box-shadow: 0 0 0 2px #00d2ff;
}

/* Wallet list */
.wallet-list {
  max-height: 240px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.7rem;
}

.wallet-item {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.wallet-item:hover {
  background: rgba(0,210,255,0.15);
  transform: translateY(-3px);
}
.wallet-item img {
  /* height: 40px; */
  margin-bottom: 0.5rem;
}
.wallet-item span {
  font-size: 0.9rem;
  color: #cfd3d9;
}

/* Initializing Spinner */
.wallet-init {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0,210,255,0.2);
  border-top: 4px solid #00d2ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.muted {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 0.8rem;
}

/* Wallet Form */
.wallet-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #aaa;
}

.wallet-form input,
.wallet-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.07);
  color: #fff;
  outline: none;
}

.wallet-form input:focus,
.wallet-form textarea:focus {
  box-shadow: 0 0 0 2px #00d2ff;
}

.wallet-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1.3rem;
}

/* ====== BUY MEME COINS SECTION ====== */
.meme-buy-box {
  margin: 3rem auto;
  max-width: 800px;
  background: rgba(20,25,35,0.85);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  text-align: center;
  backdrop-filter: blur(15px);
}

.meme-header {
  margin-bottom: 1.5rem;
}

.meme-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.meme-title h2 {
  color: rgb(0, 224, 184);
  font-size: 1.6rem;
  font-weight: 600;
}

.meme-icon {
  height: 40px;
  width: 40px;
}

.meme-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn.accent {
  background: linear-gradient(90deg, #ff512f, #dd2476);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 81, 47, 0.3);
}
.btn.accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 81, 47, 0.6);
}

.btn.outline {
  background: transparent;
  border: 2px solid #ff512f;
  color: #ff512f;
}
.btn.outline:hover {
  background: rgba(255, 81, 47, 0.1);
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

#walletLockedModal .modal-panel {
  border: 1px solid rgba(0,210,255,0.2);
  box-shadow: 0 0 25px rgba(0,210,255,0.25);
}

#walletLockedModal h3 {
  color: #ff512f; /* warm accent to differentiate */
}

/* ==== Leave Review Section ==== */
.review-section {
  background-color: linear-gradient(90deg, #06b6d4, #8b5cf6);
  
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
  max-width: 600px;
  margin: 80px auto;
}

.review-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00e0b8;
}

.review-section .subtitle {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 25px;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.review-form .form-group {
  display: flex;
  flex-direction: column;
}

.review-form label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #ccc;
}

.review-form input,
.review-form textarea,
.review-form select {
  background-color: #141a21;
  border: 1px solid #2b3947;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
  border-color: #00e0b8;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 224, 184, 0.4);
}

.review-form button {
  align-self: center;
  background: linear-gradient(90deg, #00e0b8, #6a5acd);
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.review-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 224, 184, 0.4);
}

/* ==== Review Modal ==== */
.review-modal.hidden {
  display: none;
}

.review-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.review-modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(15, 20, 25, 0.9);
  backdrop-filter: blur(6px);
}

.review-modal-panel {
  position: relative;
  background: #121820;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  margin: 15% auto;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  animation: slideIn 0.3s ease;
  text-align: center;
}

.review-modal-header h3 {
  color: #00e0b8;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.review-modal-body p {
  color: #ccc;
  margin-bottom: 20px;
}

.review-modal-body button {
  background: linear-gradient(90deg, #00e0b8, #6a5acd);
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.review-modal-body button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 224, 184, 0.4);
}

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

/* ===== NAVBAR PREMIUM GLASS STYLE ===== */


/* Brand Section */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.brand img.logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4));
  transition: transform 0.3s ease;
}

.brand img.logo:hover {
  transform: rotate(10deg) scale(1.05);
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.4s ease;
}

.nav-links a {
  color: #cfd8dc;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Connect Wallet Button */


/* Hamburger (for mobile) */
.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  transition: transform 0.2s ease;
}

.menu-btn:hover {
  transform: rotate(90deg);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  header.nav {
    flex-wrap: wrap;
    padding: 12px 25px;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    display: none;
    background: linear-gradient(90deg, #0d1220, #071d40);
    border-radius: 12px;
    padding: 15px 0;
    text-align: center;
  }

  .nav-links.show {
    display: flex;
    animation: fadeSlideDown 0.4s ease forwards;
  }

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

  .btn-glow {
    margin-top: 10px;
  }
}

/* ===== Meme Coin News & Updates ===== */
.meme-news-section {
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(10,10,25,0.7), rgba(15,15,35,0.9));
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.news-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.news-header .subtitle {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.news-card {
  background: rgba(30, 30, 50, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.news-card.show {
  opacity: 1;
  transform: translateY(0);
}

.news-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.3), 0 0 40px rgba(139, 92, 246, 0.2);
}

.news-image {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 14px;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-meta {
  font-size: 0.9rem;
  color: #9aa0b5;
  margin-bottom: 10px;
}

.news-desc {
  font-size: 0.95rem;
  color: #cfd8dc;
}

@media (max-width: 600px) {
  .meme-news-section {
    padding: 60px 20px;
  }
  .news-header h2 {
    font-size: 1.8rem;
  }
}

/* ✨ Custom Animation Utilities */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease-out forwards;
}

.fade-up.delay-1 { animation-delay: 0.2s; }
.fade-up.delay-2 { animation-delay: 0.4s; }
.fade-up.delay-3 { animation-delay: 0.6s; }
.fade-up.delay-4 { animation-delay: 0.8s; }
.fade-up.delay-5 { animation-delay: 1s; }
.fade-up.delay-6 { animation-delay: 1.2s; }
.fade-up.delay-7 { animation-delay: 1.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ✨ Gradient Animation */
.animate-gradient {
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ✨ Hover Lift Card Animation */
.card-hover {
  transition: all 0.35s ease;
}
.card-hover:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.25);
}

/* ✨ Soft Fade-in for section */
.section-fade {
  opacity: 0;
  animation: sectionFade 1.2s ease forwards;
}
@keyframes sectionFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

