:root {
  --primary: #10B981;
  --primary-dark: #059669;
  --secondary: #3B82F6;
  --secondary-dark: #2563EB;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --purple: #8B5CF6;
  --pink: #EC4899;
}

body {
  font-size: 16px;
  background: linear-gradient(to bottom, #f0fff4, #fff0f5, #fff9e6);
  color: #1a1a1a;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><circle cx="20" cy="20" r="5" fill="%2310B981"/><circle cx="50" cy="50" r="8" fill="%23F59E0B"/><circle cx="80" cy="80" r="5" fill="%238B5CF6"/><circle cx="10" cy="80" r="7" fill="%23EC4899"/><circle cx="90" cy="30" r="6" fill="%233B82F6"/></svg>');
  z-index: -1;
  pointer-events: none;
}

.dark body {
  background: linear-gradient(to bottom, #111827, #1f2937, #1a202c) !important;
  color: #f0f0f0 !important;
}

.dark {
  background: #111827 !important;
  color: #f0f0f0 !important;
}

.dark .bg-white {
  background-color: #1f2937 !important;
  color: #f0f0f0 !important;
  border-color: #374151;
}

.logo-float {
  animation: fluffi-float 3s ease-in-out infinite;
}

@keyframes fluffi-float {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-15px) scale(1.05) rotate(2deg); }
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.dark input[type="text"], 
.dark input[type="email"],
.dark select,
.dark input[type="checkbox"] {
  background-color: #374151;
  color: white !important;
  border-color: #4B5563;
}

.wallet-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: #f1f1f1;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
}

.wallet-btn:hover {
  background: #e1e1e1;
}

.wallet-btn img {
  width: 24px;
  height: 24px;
}

.dark .wallet-btn {
  background: #374151;
  color: white;
}

.dark .wallet-btn:hover {
  background: #4B5563;
}

.wallet-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.wallet-modal.active {
  opacity: 1;
  pointer-events: all;
}

.wallet-modal-content {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-size: 16px;
  max-height: 90vh;
  overflow-y: auto;
}

.dark .wallet-modal-content {
  background: #1f2937;
  color: #f0f0f0;
  border: 1px solid #374151;
}

.wallet-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
  position: relative;
}

.wallet-option:hover {
  background: #f5f5f5;
  transform: translateX(5px);
}

.dark .wallet-option:hover {
  background: #374151;
}

.wallet-option img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}

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

.wallet-close {
  cursor: pointer;
  font-size: 24px;
}

.task-completed {
  color: var(--primary);
}

.task-incomplete {
  color: #EF4444;
}

.dark .text-gray-700 {
  color: #f0f0f0 !important;
}

.dark .text-gray-600 {
  color: #d1d5db !important;
}

.dark .text-gray-500 {
  color: #9ca3af !important;
}

.wallet-connect-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.wallet-connect-modal.active {
  opacity: 1;
  pointer-events: all;
}

.wallet-connect-content {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 320px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
  font-size: 16px;
}

.dark .wallet-connect-content {
  background: #1f2937;
  color: #f0f0f0;
  border: 1px solid #374151;
}

#walletConnectQrCode {
  margin: 20px auto;
  padding: 10px;
  background: white;
  border-radius: 8px;
}

.dark #walletConnectQrCode {
  background: white;
}

.wallet-connect-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.dark .wallet-connect-close {
  color: #aaa;
}

.wallet-connect-link {
  margin-top: 15px;
  color: var(--secondary);
  cursor: pointer;
  font-size: 16px;
}

.referral-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 16px;
}

.referral-table th, 
.referral-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.dark .referral-table th,
.dark .referral-table td {
  border-bottom-color: #4b5563;
  color: #f0f0f0;
}

.referral-table th {
  font-weight: 600;
  background-color: #f9fafb;
}

.dark .referral-table th {
  background-color: #374151;
}

.referral-rank {
  font-weight: bold;
  color: var(--primary);
}

.disconnect-btn {
  background-color: #EF4444;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  margin-left: 8px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s;
}

.disconnect-btn:hover {
  background-color: #DC2626;
}

.wallet-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wallet-address-display {
  font-family: monospace;
  background: rgba(0,0,0,0.05);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 16px;
}

.dark .wallet-address-display {
  background: rgba(255,255,255,0.1);
  color: #f0f0f0;
}

.username-input {
  margin-left: 12px;
  padding: 4px 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  width: 120px;
  font-size: 16px;
}

.dark .username-input {
  background: #374151;
  border-color: #4b5563;
  color: white;
}

.verify-btn {
  background-color: var(--secondary);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  margin-left: 8px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s;
}

.verify-btn:hover {
  background-color: var(--secondary-dark);
}

.verify-btn.completed {
  background-color: var(--primary);
  cursor: default;
}

.verify-btn.completed:hover {
  background-color: var(--primary);
}

.timer-digit {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
  min-width: 60px;
  text-align: center;
  backdrop-filter: blur(10px);
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timer-digit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.dark .timer-digit {
  background: rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.timer-reset-btn {
  margin-top: 10px;
  padding: 4px 10px;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.dark .timer-reset-btn {
  background: var(--secondary-dark);
}

.sections-container {
  display: flex;
  flex-direction: column;
}

.tasks-section {
  order: 1;
}

.airdrop-section {
  order: 2;
}

.wallet-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.dark .wallet-icon {
  background: #374151;
}

.guide-section {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.guide-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent), var(--purple));
}

.dark .guide-section {
  background: #1f2937;
  color: #f0f0f0;
  border: 1px solid #374151;
}

.guide-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.guide-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.guide-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  color: white;
  font-size: 24px;
}

.guide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .guide-content {
    grid-template-columns: 1fr;
  }
}

.guide-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dark .guide-column h3 {
  color: var(--primary);
}

.guide-column ul {
  list-style-type: none;
  padding-left: 0;
}

.guide-column li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  color: #4b5563;
}

.dark .guide-column li {
  color: #d1d5db;
}

.guide-column li:before {
  content: "•";
  position: absolute;
  left: 10px;
  color: var(--primary);
  font-size: 20px;
}

.wallet-help-btn {
  position: absolute;
  right: 15px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.wallet-help-btn:hover {
  background: rgba(0,0,0,0.2);
  transform: scale(1.1);
}

.dark .wallet-help-btn {
  background: rgba(255,255,255,0.1);
}

.dark .wallet-help-btn:hover {
  background: rgba(255,255,255,0.2);
}

.help-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.help-modal.active {
  opacity: 1;
  pointer-events: all;
}

.help-modal-content {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  position: relative;
}

.dark .help-modal-content {
  background: #1f2937;
  color: #f0f0f0;
  border: 1px solid #374151;
}

.help-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.dark .help-close {
  color: #aaa;
}

.help-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-platform {
  margin-bottom: 25px;
}

.help-platform h3 {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.help-steps {
  list-style-type: none;
  padding-left: 0;
  counter-reset: step-counter;
}

.help-steps li {
  counter-increment: step-counter;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
  line-height: 1.5;
}

.help-steps li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.help-icon-wrapper {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-icon {
  color: white;
  font-size: 24px;
}

.help-platform-icon {
  font-size: 24px;
  color: var(--primary);
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-icon {
  width: 32px;
  height: 32px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.dark .platform-icon {
  background: rgba(16, 185, 129, 0.2);
}

/* Responsive improvements */
@media (max-width: 768px) {
  .tasks-section .flex {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .username-input, .verify-btn {
    margin-left: 0;
    margin-top: 8px;
  }
  
  .timer-digit {
    min-width: 50px;
    padding: 6px;
  }
  
  .help-modal-content {
    padding: 20px;
  }
}

/* Animation for airdrop claim */
@keyframes confetti {
  0% { transform: translateY(0) rotate(0); opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: #f00;
  animation: confetti 3s ease-out forwards;
  z-index: 10000;
}

/* Logo styling */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dark .logo-container {
  background: #374151;
}

.logo-container img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

/* Dark mode improvements for all elements */
.dark header {
  background: #065f46 !important;
}

.dark footer {
  background: #1f2937 !important;
  color: #d1d5db !important;
}

.dark .border-gray-200 {
  border-color: #374151;
}

.dark .bg-green-100 {
  background-color: #065f46;
}

.dark .bg-green-900 {
  background-color: #064e3b;
}

.dark .text-green-800 {
  color: #6ee7b7;
}

.dark .text-green-200 {
  color: #a7f3d0;
}

.dark .bg-gray-200 {
  background-color: #374151;
}

.dark .bg-gray-700 {
  background-color: #4b5563;
}

.dark .referral-table {
  color: #f0f0f0;
}

/* Make all sections wider */
main {
  max-width: 1200px !important;
}

.bg-white, .guide-section, .tasks-section, .airdrop-section {
  width: 100%;
}

.guide-content {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.space-y-4 > div {
  width: 100%;
}
.dark .subtitle-text {
color: #d1d5db !important;
}

/* Rate limit message styling */
.rate-limit-message {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px;
  border-radius: 8px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dark .rate-limit-message {
  background-color: #7f1d1d;
  border-color: #ef4444;
  color: #fecaca;
}

.already-claimed {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  padding: 12px;
  border-radius: 8px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dark .already-claimed {
  background-color: #14532d;
  border-color: #22c55e;
  color: #bbf7d0;
}

/* New colorful enhancements */
.gradient-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.glow {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.task-item {
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.task-item:hover {
  border-left-color: var(--primary);
  transform: translateX(5px);
}

.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
}

/* Animated progress bar */
.progress-bar {
  height: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--purple) 100%);
  width: 38.22%;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

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

/* Colorful stats cards */
.stat-card {
  border-radius: 16px;
  padding: 20px;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
}

.dark .stat-card {
  background: #1f2937;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Colorful referral ranks */
.referral-rank-1 {
  color: #F59E0B !important;
}

.referral-rank-2 {
  color: #10B981 !important;
}

.referral-rank-3 {
  color: #3B82F6 !important;
}

/* Animated checkboxes */
input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Colorful buttons enhancements */
.claim-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  transition: all 0.3s ease;
}

.claim-button:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.3);
}
/* extra styles you can remove */
   /* Enhanced background styles for FLUFFI Airdrop */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: #1a1a1a;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Light theme background */
body {
  background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 50%, #ebf4ff 100%);
}

/* Dark theme background */
.dark body {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* Animated background elements */
.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
  background-image: 
    radial-gradient(circle at 5% 10%, rgba(16, 185, 129, 0.4) 0px, transparent 50%),
    radial-gradient(circle at 95% 20%, rgba(59, 130, 246, 0.4) 0px, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.4) 0px, transparent 50%);
  background-size: 100% 100%;
}

/* Floating particles animation */
.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
  }
}

/* Animated gradient background option */
.animated-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  opacity: 0.1;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Geometric pattern overlay */
.geometric-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.05;
  background-image: 
    linear-gradient(30deg, #10B981 12%, transparent 12.5%, transparent 87%, #10B981 87.5%, #10B981),
    linear-gradient(150deg, #10B981 12%, transparent 12.5%, transparent 87%, #10B981 87.5%, #10B981),
    linear-gradient(30deg, #10B981 12%, transparent 12.5%, transparent 87%, #10B981 87.5%, #10B981),
    linear-gradient(150deg, #10B981 12%, transparent 12.5%, transparent 87%, #10B981 87.5%, #10B981),
    linear-gradient(60deg, rgba(16, 185, 129, 0.5) 25%, transparent 25.5%, transparent 75%, rgba(16, 185, 129, 0.5) 75%, rgba(16, 185, 129, 0.5)),
    linear-gradient(60deg, rgba(16, 185, 129, 0.5) 25%, transparent 25.5%, transparent 75%, rgba(16, 185, 129, 0.5) 75%, rgba(16, 185, 129, 0.5));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

/* Content container with glassmorphism effect */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.dark .glass-card {
  background: rgba(26, 32, 44, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced button styles */
.btn-glow {
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.8);
  transform: translateY(-2px);
}
