/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&family=Space+Grotesk:wght@400;700;900&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Section Transitions */
section {
  position: relative;
  transition: opacity 0.6s ease;
}

/* Fade-in on scroll animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-section {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Connection line between steps */
@keyframes drawLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.step-connector {
  transform-origin: left;
  animation: drawLine 1s ease-out 0.5s forwards;
}

/* Custom Animations */
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(200%) rotate(45deg); }
}

@keyframes float-card {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-30px) translateX(10px) rotate(2deg);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-50px) translateX(-10px) rotate(-1deg);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-30px) translateX(15px) rotate(1deg);
    opacity: 0.6;
  }
}

@keyframes drift-left {
  0%, 100% { 
    transform: translateX(0px) translateY(0px) rotate(-5deg);
    opacity: 0.3;
  }
  50% { 
    transform: translateX(-50px) translateY(-20px) rotate(-8deg);
    opacity: 0.5;
  }
}

@keyframes drift-right {
  0%, 100% { 
    transform: translateX(0px) translateY(0px) rotate(5deg);
    opacity: 0.3;
  }
  50% { 
    transform: translateX(50px) translateY(-20px) rotate(8deg);
    opacity: 0.5;
  }
}

@keyframes pulse-glow {
  0%, 100% { 
    opacity: 0.3;
    transform: scale(1);
  }
  50% { 
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes slide-up {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient 8s ease infinite;
}

.animate-gradient-text {
  background-size: 200% 200%;
  animation: gradient-text 4s ease infinite;
}

.animate-gradient-text-reverse {
  background-size: 200% 200%;
  animation: gradient-text 4s ease infinite reverse;
}

.animate-bounce-slow {
  animation: bounce-slow 2s ease-in-out infinite;
}

/* BONK Pattern Background */
.bonk-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 210, 63, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

/* Elegant Floating Card Outlines - Storytelling Elements */
.floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.floating-card-outline {
  position: absolute;
  width: 280px;
  height: 176px;
  border: 2px solid rgba(255, 107, 53, 0.15);
  border-radius: 16px;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.03) 0%, 
    rgba(255, 210, 63, 0.03) 100%);
  backdrop-filter: blur(2px);
  box-shadow: 
    0 8px 32px rgba(255, 107, 53, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Position variants for visual storytelling */
.floating-card-outline.top-left {
  top: 10%;
  left: -5%;
  animation: drift-right 25s ease-in-out infinite;
  animation-delay: 0s;
}

.floating-card-outline.top-right {
  top: 15%;
  right: -8%;
  animation: drift-left 30s ease-in-out infinite;
  animation-delay: 3s;
}

.floating-card-outline.middle-left {
  top: 40%;
  left: -10%;
  width: 320px;
  height: 200px;
  animation: float-card 35s ease-in-out infinite;
  animation-delay: 5s;
  opacity: 0.3;
}

.floating-card-outline.middle-right {
  top: 45%;
  right: -12%;
  width: 300px;
  height: 188px;
  animation: float-card 40s ease-in-out infinite reverse;
  animation-delay: 8s;
  opacity: 0.35;
}

.floating-card-outline.bottom-left {
  bottom: 20%;
  left: -6%;
  animation: drift-right 28s ease-in-out infinite;
  animation-delay: 10s;
}

.floating-card-outline.bottom-right {
  bottom: 15%;
  right: -7%;
  animation: drift-left 32s ease-in-out infinite;
  animation-delay: 12s;
}

/* Card detail elements for depth */
.floating-card-outline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 107, 53, 0.2);
  animation: pulse-glow 4s ease-in-out infinite;
}

.floating-card-outline::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 210, 63, 0.3);
}

/* Responsive card outlines - hide on mobile for clean look */
@media (max-width: 768px) {
  .floating-card-outline {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .floating-card-outline {
    width: 200px;
    height: 125px;
  }
  
  .floating-card-outline.middle-left,
  .floating-card-outline.middle-right {
    width: 220px;
    height: 138px;
  }
}

/* BonkCard 3D Styling */
.bonk-card-container {
  perspective: 1500px;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  position: relative;
}

/* Elegant glow effect around main card */
.bonk-card-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(
    circle at center,
    rgba(255, 107, 53, 0.15) 0%,
    rgba(255, 210, 63, 0.1) 30%,
    transparent 70%
  );
  border-radius: 32px;
  filter: blur(40px);
  animation: pulse-glow 8s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.bonk-card {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1.586;
  background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 50%, #FF6B35 100%);
  background-size: 200% 200%;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 
    0 25px 50px -12px rgba(255, 107, 53, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  overflow: hidden;
  animation: gradient 8s ease infinite, float 6s ease-in-out infinite;
}

/* Responsive Card Styling */
@media (min-width: 640px) {
  .bonk-card {
    border-radius: 20px;
    padding: 1.75rem;
  }
}

@media (min-width: 768px) {
  .bonk-card {
    border-radius: 24px;
    padding: 2rem;
  }
}
  animation: gradient 6s ease infinite;
}

.bonk-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 10;
  color: #000;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Feature Cards */
.feature-card {
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* Subtle card outline effect */
.feature-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.3) 0%,
    rgba(255, 210, 63, 0.3) 50%,
    rgba(255, 107, 53, 0.3) 100%);
  background-size: 200% 200%;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  animation: gradient 6s ease infinite;
}

.feature-card:hover::before {
  opacity: 1;
}

@media (min-width: 640px) {
  .feature-card {
    border-radius: 14px;
    padding: 1.75rem;
  }
  
  .feature-card::before {
    border-radius: 14px;
  }
}

@media (min-width: 768px) {
  .feature-card {
    border-radius: 16px;
    padding: 2rem;
  }
  
  .feature-card::before {
    border-radius: 16px;
  }
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 
    0 10px 30px rgba(255, 107, 53, 0.2),
    0 0 40px rgba(255, 210, 63, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FF6B35, #FFD23F);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

@media (min-width: 640px) {
  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 22px;
    margin-bottom: 0.875rem;
  }
}

@media (min-width: 768px) {
  .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    font-size: 24px;
    margin-bottom: 1rem;
  }
}

/* Step Cards */
.step-card {
  position: relative;
  background: rgba(26, 26, 26, 0.5);
  border: 2px solid rgba(255, 210, 63, 0.2);
  border-radius: 16px;
  padding: 3.5rem 1.5rem 2rem; /* Increased top padding for step number */
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: visible; /* Changed from hidden to visible */
  margin-top: 30px; /* Add margin to prevent cutting at container edge */
}

/* Elegant corner accents */
.step-card::before,
.step-card::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 210, 63, 0.15);
  transition: all 0.4s ease;
}

.step-card::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
  border-radius: 16px 0 0 0;
}

.step-card::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 16px 0;
}

@media (min-width: 768px) {
  .step-card {
    border-radius: 20px;
    padding: 2.5rem 2rem;
  }
  
  .step-card::before {
    border-radius: 20px 0 0 0;
  }
  
  .step-card::after {
    border-radius: 0 0 20px 0;
  }
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 210, 63, 0.5);
  box-shadow: 
    0 15px 40px rgba(255, 210, 63, 0.2),
    0 0 60px rgba(255, 107, 53, 0.1);
}

.step-card:hover::before,
.step-card:hover::after {
  border-color: rgba(255, 210, 63, 0.4);
  width: 80px;
  height: 80px;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FF6B35, #FFD23F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #000;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

@media (min-width: 768px) {
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

.step-icon {
  font-size: 36px;
  margin: 1rem 0;
  background: linear-gradient(135deg, #FF6B35, #FFD23F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .step-icon {
    font-size: 48px;
    margin: 1.5rem 0;
  }
}

/* Form Styling */
.form-container {
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

/* Elegant card pattern in form background */
.form-container::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 188px;
  border: 2px solid rgba(255, 107, 53, 0.08);
  border-radius: 20px;
  transform: rotate(15deg);
  pointer-events: none;
}

.form-container::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 156px;
  border: 2px solid rgba(255, 210, 63, 0.08);
  border-radius: 16px;
  transform: rotate(-12deg);
  pointer-events: none;
}

@media (min-width: 640px) {
  .form-container {
    border-radius: 20px;
    padding: 2rem;
  }
  
  .form-container::before {
    width: 350px;
    height: 220px;
  }
  
  .form-container::after {
    width: 300px;
    height: 188px;
  }
}

@media (min-width: 768px) {
  .form-container {
    border-radius: 24px;
    padding: 3rem;
  }
  
  .form-container::before {
    width: 400px;
    height: 250px;
  }
  
  .form-container::after {
    width: 350px;
    height: 220px;
  }
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .form-input {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 16px;
  }
}

.form-input:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input:disabled {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 53, 0.1);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:disabled::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.wallet-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .wallet-button {
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 16px;
  }
}

.wallet-button:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: #FF6B35;
  transform: translateY(-2px);
}

.wallet-button.connected {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

/* Exclusivity Banner */
.exclusivity-banner {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 210, 63, 0.1));
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .exclusivity-banner {
    border-radius: 20px;
    padding: 3rem 1.75rem;
  }
}

@media (min-width: 768px) {
  .exclusivity-banner {
    border-radius: 24px;
    padding: 4rem 2rem;
  }
}

.exclusivity-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}

/* Success/Error/Warning Messages */
.message-success {
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.message-error {
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.message-warning {
  padding: 1rem;
  background: rgba(255, 210, 63, 0.1);
  border: 1px solid rgba(255, 210, 63, 0.3);
  border-radius: 12px;
  color: #FFD23F;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.message-info {
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  color: #3b82f6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bonk-card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .step-card {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 3rem;
  }
}

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

.fa-spin {
  animation: spin 1s linear infinite;
}

/* Utility Classes */
.transition-all {
  transition: all 0.3s ease;
}

.cursor-pointer {
  cursor: pointer;
}

/* Scroll Indicator */
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Link Hover Effects */
a {
  transition: color 0.2s ease;
}

a:hover {
  color: #FF6B35;
}

/* ========================================
   🎉 EXCITING INTERACTIVE ANIMATIONS
   ======================================== */

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

/* Floating Coins Animation */
@keyframes float-coin {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50vh) translateX(30px) rotate(180deg) scale(1.2);
    opacity: 0.5;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(-20px) rotate(360deg) scale(0.8);
    opacity: 0;
  }
}

/* BONK Pop Effect */
@keyframes bonk-pop {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -80px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -120px) scale(0.8);
    opacity: 0;
  }
}

/* Slide In/Out Animations for Toasts */
@keyframes slide-in-right {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-out-right {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* Cursor Trail Fade Out */
@keyframes fade-out-trail {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

/* Card Flip Effect */
.bonk-card {
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
}

/* Scroll Progress Bar Pulse */
.scroll-progress-bar {
  animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.9), 0 0 30px rgba(255, 210, 63, 0.5);
  }
}

/* Enhance logo interactivity */
img[alt="BONK"] {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

img[alt="BONK"]:hover {
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8)) 
          drop-shadow(0 0 30px rgba(255, 210, 63, 0.6));
}

/* Form celebration animation */
#earlyAccessForm {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Floating coins container styling */
.floating-coins-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* ========================================
   🎨 END OF EXCITING ANIMATIONS
   ======================================== */

/* ========================================
   🎁 NEW EASTER EGG ANIMATIONS
   ======================================== */

/* Shake animation for Konami Code */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
  20%, 40%, 60%, 80% { transform: translateX(10px); }
}

/* Number rain effect for card number easter egg */
@keyframes number-rain {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Pulse glow for interactive elements */
@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 210, 63, 0.8));
  }
}

/* Make Visa logo subtly pulse to hint it's clickable */
img[alt="Visa"] {
  transition: all 0.3s ease;
}

img[alt="Visa"]:hover {
  animation: pulse-glow 1s ease-in-out infinite;
}

/* Make Solana logo subtly hint it's interactive */
img[alt="Solana"] {
  transition: all 0.3s ease;
}

img[alt="Solana"]:hover {
  animation: pulse-glow 1s ease-in-out infinite;
}

/* ========================================
   🎨 END OF EASTER EGG ANIMATIONS
   ======================================== */
