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

        body {
            font-family: 'Rubik', Helvetica, Arial, sans-serif;
            background-color: #061d13;
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }
		    /* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            background: linear-gradient(180deg, rgba(45, 44, 44, 0.3) 0%, rgba(45, 44, 44, 0) 100%);
            min-height: 600px;
            /* padding: 48px 16px; */
            text-align: center;
        }

        .badges {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(4px);
        }

        .badge-icon {
            width: 24px;
            height: 24px;
            background: #55fe66;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero-title span {
            color: #55fe66;
        }

        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            background: rgba(85, 254, 102, 0.1);
            border: 1px solid rgba(85, 254, 102, 0.2);
            border-radius: 12px;
            padding: 16px 32px;
            color: #55fe66;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn:hover {
            background: rgba(85, 254, 102, 0.15);
            border-color: rgba(85, 254, 102, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(85, 254, 102, 0.2);
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 48px 16px;
        }

        .airdrop-card {
            background: rgba(26, 61, 58, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
        }

        .airdrop-header h2 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .airdrop-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
        }

        .badges-wrapper {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .feature-badge {
            padding: 6px 12px;
            background: rgba(85, 254, 102, 0.1);
            color: #55fe66;
            border: 1px solid rgba(85, 254, 102, 0.2);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .claim-area {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
        }

        .wallet-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 16px;
        }

        .wallet-status.connected {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .wallet-status.disconnected {
            background: rgba(234, 179, 8, 0.1);
            border: 1px solid rgba(234, 179, 8, 0.2);
            color: #eab308;
        }

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

        .status-dot.pulse {
            animation: pulse 2s infinite;
        }

        /* How it Works */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }

        .step {
            background: rgba(0, 0, 0, 0.2);
            padding: 24px;
            border-radius: 12px;
            text-align: center;
        }

        .step-icon {
            width: 48px;
            height: 48px;
            background: rgba(85, 254, 102, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 24px;
        }

        .step h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .step p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 16px;
        }

        .modal.show {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: linear-gradient(135deg, #1a3d3a 0%, #2d5a56 100%);
            border-radius: 16px;
            padding: 32px;
            width: 100%;
            max-width: 480px;
            position: relative;
            animation: slideIn 0.3s ease;
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 24px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: white;
        }

        .modal-header {
            text-align: center;
            margin-bottom: 14px;
        }

        .modal-icon {
            width: 64px;
            height: 64px;
            background: rgba(85, 254, 102, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 32px;
        }

        .modal h2 {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .modal p {
            color: rgba(255, 255, 255, 0.8);
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 6px;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-family: 'Courier New', monospace;
            font-size: 14px;
        }

        .form-control:focus {
            outline: none;
            border-color: #55fe66;
            box-shadow: 0 0 0 2px rgba(85, 254, 102, 0.2);
        }

        .validation-status {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 8px;
        }

        .validation-status.validating {
            background: rgba(234, 179, 8, 0.1);
            border: 1px solid rgba(234, 179, 8, 0.2);
            color: #eab308;
        }

        .validation-status.valid {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .validation-status.invalid {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        .security-notice {
            margin-top: 20px;
            padding: 16px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
        }

        .security-notice h4 {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .security-notice p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Congratulations Modal */
        .congrats-content {
            text-align: center;
        }

        .congrats-emoji {
            font-size: 4rem;
           
        }

        .pepe-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: #55fe66;
            margin: 16px 0;
            text-shadow: 0 0 20px rgba(85, 254, 102, 0.3);
        }

        .timer-display {
            background: rgba(0, 0, 0, 0.3);
            padding: 12px;
            border-radius: 8px;
            margin: 16px 0;
        }

        .timer-display p {
            margin: 4px 0;
        }

        .timer-time {
            font-weight: 700;
            font-size: 1.1rem;
            color: #55fe66;
        }

        /* Loading State */
        .loading-content {
            text-align: center;
        }

        .loading-spinner {
            width: 64px;
            height: 64px;
            background: rgba(85, 254, 102, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            animation: pulse 1.5s infinite;
        }

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

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

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

        @keyframes floatAnimation {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        @keyframes greenGlow {
            0% {
                box-shadow: 0 0 5px rgba(85, 254, 102, 0.4);
            }
            50% {
                box-shadow: 0 0 20px rgba(85, 254, 102, 0.8);
            }
            100% {
                box-shadow: 0 0 5px rgba(85, 254, 102, 0.4);
            }
        }

        @keyframes blueGlow {
            0% {
                box-shadow: 0 0 5px rgba(39, 165, 231, 0.4);
            }
            50% {
                box-shadow: 0 0 20px rgba(39, 165, 231, 0.8);
            }
            100% {
                box-shadow: 0 0 5px rgba(39, 165, 231, 0.4);
            }
        }

        @keyframes yellowGlow {
            0% {
                box-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
            }
            50% {
                box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
            }
            100% {
                box-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
            }
        }

        @keyframes purpleGlow {
            0% {
                box-shadow: 0 0 5px rgba(153, 69, 255, 0.4);
            }
            50% {
                box-shadow: 0 0 20px rgba(153, 69, 255, 0.8);
            }
            100% {
                box-shadow: 0 0 5px rgba(153, 69, 255, 0.4);
            }
        }

        @keyframes shineAnimation {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        @keyframes breatheAnimation {
            0% {
                transform: scale(1);
                box-shadow: 0 0 10px rgba(85, 254, 102, 0.3);
            }
            50% {
                transform: scale(1.01);
                box-shadow: 0 0 20px rgba(85, 254, 102, 0.6);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 10px rgba(85, 254, 102, 0.3);
            }
        }

        @keyframes hoverAnimation {
            0% {
                transform: translateY(0);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            }
            100% {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px rgba(85, 254, 102, 0.5);
            }
        }

        @keyframes zoomAnimation {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes pulsationAnimation {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes titleReveal {
            0% {
                transform: translateY(20px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes descriptionReveal {
            0% {
                transform: translateY(20px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes airdropTitleGlow {
            0% {
                text-shadow: 0 0 5px rgba(85, 254, 102, 0.4);
            }
            50% {
                text-shadow: 0 0 15px rgba(85, 254, 102, 0.8);
            }
            100% {
                text-shadow: 0 0 5px rgba(85, 254, 102, 0.4);
            }
        }

        @keyframes buttonGlow {
            0% {
                box-shadow: 0 0 5px rgba(85, 254, 102, 0.4), 0 0 10px rgba(85, 254, 102, 0.2);
            }
            50% {
                box-shadow: 0 0 20px rgba(85, 254, 102, 0.8), 0 0 30px rgba(85, 254, 102, 0.5);
            }
            100% {
                box-shadow: 0 0 5px rgba(85, 254, 102, 0.4), 0 0 10px rgba(85, 254, 102, 0.2);
            }
        }

        @keyframes rippleAnimation {
            0% {
                transform: scale(0.8);
                opacity: 1;
            }
            100% {
                transform: scale(1.2);
                opacity: 0;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .nav {
                gap: 16px;
            }
            
            .nav-text {
                font-size: 14px;
            }
            
            .badges {
                gap: 12px;
            }
            
            .steps {
                grid-template-columns: 1fr;
            }
        }
/* Rubik font classes */
.rubik-light {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.rubik-regular {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.rubik-medium {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.rubik-bold {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

html {
  height: 100%;
  width: 100%;
  font-family: "Rubik", sans-serif;
}

body {
  font-family: "Rubik", sans-serif;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(135deg, #1a3d3a 0%, #2d5a56 100%);
  margin: 5% auto;
  padding: 40px;
  border: none;
  border-radius: 12px;
  width: 85%;
  max-width: 600px;
  position: relative;
  animation: slideIn 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
}

.modal-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-content h2::before {
  content: "👥";
  font-size: 1.8rem;
}

.modal-content p {
  color: #e0f2f1;
  font-size: 1rem;
  line-height: 1.6;

  text-align: left;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
}

.close {
  color: #b0bec5;
  float: right;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: white;
}

.cta-button {
  background-color: rgba(85, 254, 102, 0.1);
  border: 1px solid rgba(85, 254, 102, 0.2);
  border-radius: 12px;
  padding: 12px 34px;
  color: #55fe66;
  font-size: 16px;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin: 10px;
}

.cta-button:hover {
  background-color: rgba(85, 254, 102, 0.15);
  border-color: rgba(85, 254, 102, 0.3);
  transform: translateY(-1px);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.pepe-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: auto;
  z-index: 2;
}

.pepe-logo img {
  width: 150px;
  height: auto;
  opacity: 0.9;
}

.pepe-astronaut {
  position: absolute;
  bottom: 10px;
  right: 1px;
  width: 150px;
  height: 140px;
  z-index: 1;
}

.pepe-astronaut img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Congratulations Modal Styles */
.congrats-modal-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  margin: 15% auto;
  padding: 50px 40px;
  border: none;
  border-radius: 16px;
  width: 85%;
  max-width: 450px;
  position: relative;
  animation: slideIn 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
}

.congrats-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #55fe66;
}

.congrats-modal-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
}

.pepe-amount {
  color: #55fe66;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(85, 254, 102, 0.3);
}

.congrats-text {
  color: #e0e0e0;
  font-size: 1.2rem;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: center;
}

.congrats-subtext {
  color: #b0b0b0;
  font-size: 1rem;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.5;
}

/* FAQ Modal Styles */
.faq-modal-content {
  background: linear-gradient(135deg, #1a3d3a 0%, #2d5a56 100%);
  margin: 5% auto;
  padding: 40px;
  border: none;
  border-radius: 12px;
  width: 85%;
  max-width: 700px;
  position: relative;
  animation: slideIn 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  max-height: 80vh;
  overflow-y: auto;
}

.faq-modal-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.faq-modal-content h2::before {
  content: "❓";
  font-size: 1.8rem;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 20px;
  text-align: left;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  color: #e0f2f1;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
}

/* Support Modal Styles */
.support-modal-content {
  background: linear-gradient(135deg, #1a3d3a 0%, #2d5a56 100%);
  margin: 10% auto;
  padding: 40px;
  border: none;
  border-radius: 12px;
  width: 85%;
  max-width: 600px;
  position: relative;
  animation: slideIn 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
}

.support-modal-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.support-modal-content h2::before {
  content: "🛠️";
  font-size: 1.8rem;
}

.support-description {
  color: #e0f2f1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
}

.support-options {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.support-block {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px 20px;
  width: 200px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.support-block:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(85, 254, 102, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.support-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.support-block h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
  margin-bottom: 10px;
}

.support-block p {
  color: #b0bec5;
  font-size: 0.9rem;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* Header Styles */
        .header-wrapper {
            position: relative;
            width: 100%;
        }

        .logo {
            position: absolute;
            top: 8px;
            left: 32px;
            z-index: 10;
        }

        .logo img {
            width: 140px;
            height: 48px;
        }

        .header {
            width: 100%;
            height: 70px;
            background-color: rgba(4, 5, 6, 0.98);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(2.5px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 16px;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 16px;
            height: 40px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .nav-item:hover {
            opacity: 0.8;
        }

        .nav-icon {
            width: 15px;
            height: 16px;
        }

        .nav-text {
            font-weight: 500;
            font-size: 15.2px;
            line-height: 24.3px;
            white-space: nowrap;
            color: rgba(255, 255, 255, 0.8);
        }

        .nav-text.active {
            background: linear-gradient(8deg, rgba(85, 254, 102, 1) 0%, rgba(255, 225, 76, 1) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            background: linear-gradient(180deg, rgba(45, 44, 44, 0.3) 0%, rgba(45, 44, 44, 0) 100%);
            overflow: hidden;
        }

        .badges {
            display: flex;
            justify-content: center;
            gap: 16px;
            padding-top: 50px;
            margin-bottom: 64px;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 12px;
            height: 41px;
            padding: 0 16px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            backdrop-filter: blur(1px);
            animation: greenGlow 2s ease-in-out infinite alternate;
        }

        .badge-icon {
            width: 18px;
            height: 19px;
            animation: pulsationAnimation 1.5s ease-in-out infinite alternate;
        }

        .badge-text {
            font-weight: 500;
            font-size: 14.4px;
            line-height: 23px;
            text-align: center;
            color: white;
            white-space: nowrap;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            min-height: 596px;
            z-index: 0;
        }

        .hero-title {
            font-weight: 700;
            font-size: 56px;
            line-height: 67.2px;
            text-align: center;
            color: white;
            margin-bottom: 32px;
            max-width: 800px;
            animation: titleReveal 1s ease-out forwards, shineAnimation 6s ease-in-out infinite;
            background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,1) 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-description {
            font-weight: 400;
            font-size: 19.2px;
            line-height: 30.7px;
            text-align: center;
            color: #adb5bd;
            margin-bottom: 48px;
            max-width: 600px;
            animation: descriptionReveal 1s ease-out forwards; /* Added animation with a delay */
        }

        #heroGetBonus {
            position: relative;
            overflow: hidden;
            animation: continuousButtonPulse 2s ease-in-out infinite alternate,
                gradientMove 4s ease-in-out infinite;
                background-image: linear-gradient(90deg, #46af34 0%, #275c51 50%, #178279 100%); /* Darker gradient colors */
            background-size: 200% 100%;
            color: white; /* Changed text color to white */
            font-weight: bold; /* Make text bold */
        }

        #heroGetBonus::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(85, 254, 102, 0.7);
            border-radius: 50%;
            opacity: 0;
            transform: translate(-50%, -50%);
            animation: none; /* Remove ripple animation from pseudo-element */
        }

        #heroGetBonus:hover {
            animation: none; /* Remove hover animation */
            transform: scale(1.03);
            box-shadow: 0 0 15px rgba(85, 254, 102, 0.7);
        }

        .btn {
            width: 198px;
            height: 50px;
            background-color: rgba(85, 254, 102, 0.1);
            border: 1px solid rgba(85, 254, 102, 0.2);
            border-radius: 12px;
            color: #55fe66;
            font-weight: 400;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .btn:hover {
            background-color: rgba(85, 254, 102, 0.15);
            transform: translateY(-1px);
        }

        .pepe-container{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 16px;
            position: relative;
        }



        .pepe-character {
            position: absolute;
            width: 426px;
            height: 421px;
            bottom: 0;
            right: 0;
            padding-right: 16px;
            max-width: 1320px;
            margin: 0 auto;
            border-radius: 35px;
        }

        .pepe-left {
            position: absolute;
            width: 306px;
            height: 337px;
            top: 70px;
            left: 0;
            animation: floatAnimation 4s ease-in-out infinite alternate;
        }

        /* Airdrop Section */
        .airdrop-section {
            padding: 64px 0;
        }

        .airdrop-card {
            position: relative;
            background: linear-gradient(90deg, rgba(85, 254, 102, 0.1) 0%, rgba(85, 254, 102, 0.03) 50%, rgba(85, 254, 102, 0.1) 100%);
            border: 1px solid rgba(85, 254, 102, 0.2);
            border-radius: 20px;
            padding: 32px;
            margin-bottom: 32px;
            overflow: hidden;
            z-index: 0;
            animation: breatheAnimation 6s ease-in-out infinite alternate;
        }

        .airdrop-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 32px;
        }

        .airdrop-info {
            flex: 1;
            min-width: 300px;
        }

        .airdrop-title-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .airdrop-icon {
            width: 48px;
            height: 48px;
            background-color: rgba(85, 254, 102, 0.1);
            border: 1px solid rgba(85, 254, 102, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .airdrop-title {
            font-weight: 700;
            font-size: 32px;
            color: white;
            animation: airdropTitleGlow 2s ease-in-out infinite alternate;
        }

        .airdrop-description {
            font-weight: 400;
            font-size: 18px;
            color: #adb5bd;
            margin-bottom: 32px;
            animation: fadeInUp 1s ease-out forwards 0.3s;
        }

        .badges-wrapper {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .feature-badge {
            background-color: rgba(85, 254, 102, 0.1);
            border: 1px solid rgba(85, 254, 102, 0.2);
            color: #55fe66;
            font-size: 14px;
            padding: 4px 12px;
            border-radius: 16px;
        }

        .airdrop-actions {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .btn-learn {
            background-color: rgba(85, 254, 102, 0.1);
            border: 1px solid rgba(85, 254, 102, 0.2);
            color: #55fe66;
        }

        .btn-buy {
            background-color: rgba(39, 165, 231, 0.1);
            border: 1px solid rgba(39, 165, 231, 0.2);
            color: #27a5e7;
        }

        .pepe-decoration {
            position: absolute;
            width: 209px;
            height: 186px;
            top: -145px;
            z-index: 999;
        }

        /* Info Cards */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .info-card {
            height: 190px;
            background-color: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(2.5px);
            padding: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            animation: none; /* Remove previous animation */
            background: rgba(255, 255, 255, 0.02);
            transition: all 0.3s ease-in-out; /* Add transition for smooth hover */
        }

        .info-card:hover {
            animation: hoverAnimation 0.5s forwards;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 24px;
        }

        .info-icon.airdrop {
            background-color: rgba(39, 165, 231, 0.1);
            color: #27a5e7;
        }

        .info-icon.supply {
            background-color: rgba(85, 254, 102, 0.1);
            color: #55fe66;
        }

        .info-icon.market {
            background-color: rgba(255, 215, 0, 0.5);
            color: #ffd700;
        }

        .info-title {
            font-weight: 600;
            font-size: 18px;
            color: white;
            margin-bottom: 16px;
        }

        .info-description {
            font-weight: 400;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 20px;
            white-space: pre-line;
        }

        /* Participation Steps */
        .participation-section {
            padding: 64px 0;
        }

        .section-main-content{
            padding: unset;
        }

        .participation-card {
            background-color: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(2.5px);
            padding: 32px;
        }

        .participation-title {
            font-weight: 700;
            font-size: 24px;
            text-align: center;
            color: white;
            margin-bottom: 48px;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .step-number {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 1px solid;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 24px;
        }

        .step-number.step1 {
            background-color: rgba(39, 165, 231, 0.1);
            border-color: rgba(39, 165, 231, 0.2);
            color: #27a5e7;
            animation: blueGlow 2s ease-in-out infinite alternate;
        }

        .step-number.step2 {
            background-color: rgba(85, 254, 102, 0.1);
            border-color: rgba(85, 254, 102, 0.2);
            color: #55fe66;
            animation: greenGlow 2s ease-in-out infinite alternate;
        }

        .step-number.step3 {
            background-color: rgba(255, 215, 0, 0.5);
            border-color: rgba(255, 215, 0, 0.4);
            color: #ffd700;
            animation: yellowGlow 2s ease-in-out infinite alternate;
        }

        .step-number.step4 {
            background-color: rgba(153, 69, 255, 0.5);
            border-color: rgba(153, 69, 255, 0.4);
            color: #9945ff;
            animation: purpleGlow 2s ease-in-out infinite alternate;
        }

        .step-title {
            font-weight: 600;
            font-size: 16px;
            color: white;
            margin-bottom: 16px;
        }

        .step-description {
            font-weight: 400;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 20px;
            white-space: pre-line;
        }

        /* How to Earn Section */
        .earn-section {
            padding: 64px 0;
        }

        .earn-title {
            font-weight: 700;
            font-size: 24px;
            color: white;
            margin-bottom: 48px;
        }

        .earn-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .earn-card {
            height: 128px;
            background-color: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(2.5px);
            padding: 28px 26px;
            position: relative;
        }

        .earn-card-title {
            font-weight: 600;
            font-size: 20px;
            color: white;
            margin-bottom: 12px;
        }

        .earn-card-description {
            font-weight: 400;
            font-size: 15.2px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 22.8px;
            white-space: pre-line;
        }

        .earn-card-icon {
            position: absolute;
            width: 48px;
            height: 48px;
            top: 41px;
            right: 26px;
        }

        .earn-card-icon.special {
            background-color: rgba(85, 254, 102, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .earn-card-icon.special img {
            width: 38px;
            height: 41px;
        }

        /* Bonus History Section */
        .bonus-section {
            padding: 64px 0;
        }

        /* Withdraw Section */
        .withdraw-section {
            padding: 0 0 64px 0;
            text-align: center;
        }

        .withdraw-btn {
            background: rgba(85, 254, 102, 0.1);
            border: 1px solid rgba(85, 254, 102, 0.2);
            border-radius: 12px;
            padding: 16px 32px;
            color: #55fe66;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .withdraw-btn:hover {
            background: rgba(85, 254, 102, 0.15);
            border-color: rgba(85, 254, 102, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(85, 254, 102, 0.2);
        }

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

        .withdraw-icon {
            font-size: 20px;
            color: #55fe66;
        }

        .bonus-title {
            font-weight: 700;
            font-size: 24px;
            text-align: center;
            color: white;
            margin-bottom: 53px;
        }

        .bonus-card {
            width: 100%;
            height: 321px;
            background-color: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(2.5px);
            overflow: hidden;
        }

        .bonus-table-header {
            height: 55px;
            background-color: rgba(255, 255, 255, 0.03);
            display: grid;
            grid-template-columns: 361px 303px 275px 322px;
            align-items: center;
        }

        .bonus-header-cell {
            padding: 15px 16px;
            border-left: 1px solid rgba(255, 255, 255, 0.05);
            font-weight: 600;
            font-size: 14.4px;
            color: rgba(255, 255, 255, 0.9);
        }

        .bonus-header-cell:first-child {
            border-left: none;
        }

        .bonus-header-cell.right {
            text-align: right;
        }

        .bonus-cell {
            padding: 15px 16px;
            border-left: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .bonus-cell:first-child {
            border-left: none;
        }

        .bonus-cell.right {
            text-align: right;
        }

        .pepe-icon {
            width: 100px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
            display: inline-block;
            vertical-align: middle;
            margin-right: 8px;
        }

        .time-icon {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            vertical-align: middle;
        }

        .money-icon {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            vertical-align: middle;
        }

        .bonus-entry {
            height: 55px;
            display: grid;
            grid-template-columns: 361px 303px 275px;
            align-items: center;
            width: 100%;
            box-sizing: border-box;
            padding: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background-color 0.2s ease;
        }

        .bonus-entry:hover {
            background-color: rgba(255, 255, 255, 0.02);
        }

        .bonus-entry:last-child {
            border-bottom: none;
        }

        .bonus-content {
            height: 230px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .bonus-empty-icon {
            width: 40px;
            height: 42px;
            margin-bottom: 17px;
        }

        .bonus-empty-text {
            font-weight: 300;
            font-size: 14.4px;
            color: #adb5bd;
            margin-bottom: 4px;
        }

        .bonus-empty-subtext {
            font-weight: 300;
            font-size: 12.6px;
            color: #adb5bd;
        }

        /* Footer */
        .footer {
            width: 100%;
            background-color: transparent;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 64px 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            max-width: 478px;
        }

        .footer-logo {
            width: 281px;
            height: 97px;
            object-fit: cover;
            margin-bottom: 24px;
        }

        .footer-description {
            font-weight: 400;
            font-size: 15.2px;
            line-height: 24.3px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-section {
            min-width: 150px;
        }

        .footer-title {
            font-weight: 600;
            font-size: 17.6px;
            line-height: 21.1px;
            color: white;
            margin-bottom: 24px;
        }

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

        .footer-link {
            font-weight: 400;
            font-size: 15.2px;
            line-height: 24.3px;
            color: white;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-separator {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.05);
            margin: 32px 0;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copyright {
            font-weight: 400;
            font-size: 14.4px;
            line-height: 23px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-legal {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .footer-legal-link {
            font-weight: 400;
            font-size: 14.4px;
            line-height: 23px;
            color: white;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-legal-link:hover {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .pepe-character {
                width: 350px;
                height: 346px;
            }
        }

        @media (max-width: 968px) {
            .hero-title {
                font-size: 48px;
                line-height: 57.6px;
            }

            .pepe-character {
                width: 300px;
                height: 296px;
            }

            .nav {
                gap: 24px;
            }

            .airdrop-header {
                flex-direction: column;
                gap: 24px;
            }

            .airdrop-actions {
                align-self: stretch;
                flex-direction: row;
                gap: 16px;
            }

            .bonus-table-header {
                grid-template-columns: 1fr 1fr 1fr 1fr;
                font-size: 12px;
            }

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

        @media (max-width: 768px) {
            .badges {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .hero-title {
                font-size: 40px;
                line-height: 48px;
            }

            .hero-description {
                font-size: 16px;
                line-height: 25px;
            }

            .pepe-character {
                margin-top: 32px;
                width: 250px;
                height: 246px;
            }

            .pepe-left {
                display: none;
            }

            .nav {
                gap: 16px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .nav-text {
                font-size: 14px;
            }

            .logo {
                position: relative;
                left: auto;
                top: auto;
                text-align: center;
                margin: 16px 0;
            }

            .header-wrapper {
                flex-direction: column;
            }

            .steps {
                grid-template-columns: 1fr;
            }

            .earn-cards {
                grid-template-columns: 1fr;
            }

            .info-cards {
                grid-template-columns: 1fr;
            }

            .airdrop-actions {
                flex-direction: column;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }

            .hero-title {
                font-size: 32px;
                line-height: 38px;
            }

            .hero-description {
                font-size: 14px;
                line-height: 22px;
            }

            .btn {
                width: 160px;
                height: 44px;
                font-size: 14px;
            }

            .airdrop-card,
            .participation-card,
            .bonus-card {
                padding: 20px;
            }

            .logo img {
                width: 120px;
                height: 40px;
            }
        }

        @keyframes continuousButtonPulse {
            0% {
                box-shadow: 0 0 0 rgba(85, 254, 102, 0.4);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 10px rgba(85, 254, 102, 0.7);
                transform: scale(1.02);
            }
            100% {
                box-shadow: 0 0 0 rgba(85, 254, 102, 0.4);
                transform: scale(1);
            }
        }

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

        @keyframes pulseEffect {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(85, 254, 102, 0.4);
            }
            50% {
                transform: scale(1.02);
                box-shadow: 0 0 10px rgba(85, 254, 102, 0.7);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(85, 254, 102, 0.4);
            }
        }

        /* Confetti and Firework Animations */
        .confetti-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9998;
            overflow: hidden;
        }

        .confetti {
            position: absolute;
            width: 8px;
            height: 8px;
            opacity: 0;
            animation: confettiFall 3s linear forwards;
        }

        .confetti:nth-child(odd) {
            animation-delay: 0.1s;
        }

        .confetti:nth-child(even) {
            animation-delay: 0.2s;
        }

        .confetti:nth-child(3n) {
            animation-delay: 0.3s;
        }

        .confetti:nth-child(4n) {
            animation-delay: 0.4s;
        }

        .confetti:nth-child(5n) {
            animation-delay: 0.5s;
        }

        .firework {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            opacity: 0;
            animation: fireworkBurst 2s ease-out forwards;
        }

        .firework:nth-child(odd) {
            animation-delay: 0.5s;
        }

        .firework:nth-child(even) {
            animation-delay: 0.7s;
        }

        .firework:nth-child(3n) {
            animation-delay: 0.9s;
        }

        @keyframes confettiFall {
            0% {
                opacity: 1;
                transform: translateY(-10px) rotateZ(0deg);
            }
            10% {
                opacity: 1;
                transform: translateY(10vh) rotateZ(90deg);
            }
            20% {
                opacity: 1;
                transform: translateY(20vh) rotateZ(180deg);
            }
            30% {
                opacity: 1;
                transform: translateY(30vh) rotateZ(270deg);
            }
            40% {
                opacity: 1;
                transform: translateY(40vh) rotateZ(360deg);
            }
            50% {
                opacity: 0.8;
                transform: translateY(50vh) rotateZ(450deg);
            }
            60% {
                opacity: 0.6;
                transform: translateY(60vh) rotateZ(540deg);
            }
            70% {
                opacity: 0.4;
                transform: translateY(70vh) rotateZ(630deg);
            }
            80% {
                opacity: 0.2;
                transform: translateY(80vh) rotateZ(720deg);
            }
            90% {
                opacity: 0.1;
                transform: translateY(90vh) rotateZ(810deg);
            }
            100% {
                opacity: 0;
                transform: translateY(100vh) rotateZ(900deg);
            }
        }

        @keyframes fireworkBurst {
            0% {
                opacity: 1;
                transform: scale(1);
            }
            20% {
                opacity: 1;
                transform: scale(2);
            }
            40% {
                opacity: 0.8;
                transform: scale(3);
            }
            60% {
                opacity: 0.6;
                transform: scale(4);
            }
            80% {
                opacity: 0.3;
                transform: scale(5);
            }
            100% {
                opacity: 0;
                transform: scale(6);
            }
        }

        .confetti-red { background-color: #ff4757; }
        .confetti-blue { background-color: #3742fa; }
        .confetti-green { background-color: #55fe66; }
        .confetti-yellow { background-color: #ffa502; }
        .confetti-purple { background-color: #9c88ff; }
        .confetti-pink { background-color: #ff6b81; }
        .confetti-orange { background-color: #ff7f50; }
        .confetti-teal { background-color: #00d2d3; }

        .firework-red { background-color: #ff4757; box-shadow: 0 0 10px #ff4757; }
        .firework-blue { background-color: #3742fa; box-shadow: 0 0 10px #3742fa; }
        .firework-green { background-color: #55fe66; box-shadow: 0 0 10px #55fe66; }
        .firework-yellow { background-color: #ffa502; box-shadow: 0 0 10px #ffa502; }
        .firework-purple { background-color: #9c88ff; box-shadow: 0 0 10px #9c88ff; }
        .firework-pink { background-color: #ff6b81; box-shadow: 0 0 10px #ff6b81; }

        @keyframes fill {
            0% {
                width: 0%;
            }
            100% {
                width: 100%;
            }
        }

        /* Bonus Button Styles */
        .bonus-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #1a3d3a;
            border: none;
            border-radius: 12px;
            padding: 12px 24px;
            color: #55fe66;
            font-family: 'Rubik', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
            width: 100%;
            max-width: 200px;
            margin-left: auto;
            margin-right: auto;
        }

        .bonus-btn:hover {
            background: #2d5a56;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(85, 254, 102, 0.2);
        }

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

        .bonus-icon {
            width: 20px;
            height: 20px;
            color: #55fe66;
        }

        /* Initially hidden bonus button */
        .bonus-btn {
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .bonus-btn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        /* Initially hidden anchor container */
        #anchor-container {
            display: none;
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        #anchor-container.show {
            display: flex;
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Circle spinner animation for captcha checkbox */
        @keyframes circle-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

/* Mobile Device Detection Popup Styles */
.mobile-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000000; /* Higher than iframe container */
    animation: fadeIn 0.5s ease-out;
}

.mobile-popup-overlay.show {
    display: flex;
}

.mobile-popup-content {
    background: linear-gradient(135deg, #1a3d3a 0%, #2d5a56 100%);
    border: 1px solid rgba(85, 254, 102, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideIn 0.5s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.mobile-popup-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.mobile-popup-content h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    font-family: "Rubik", sans-serif;
}

.mobile-popup-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
}

.mobile-popup-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.feature-icon {
    font-size: 2rem;
    color: #55fe66;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.mobile-popup-note {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.mobile-popup-note small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Animations for mobile popup */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive styles for mobile popup */
@media (max-width: 768px) {
    .mobile-popup-content {
        padding: 30px 20px;
        margin: 20px;
        max-width: 90%;
    }

    .mobile-popup-content h2 {
        font-size: 1.5rem;
    }

    .mobile-popup-content p {
        font-size: 1rem;
    }

    .mobile-popup-icon {
        font-size: 3rem;
    }

    .mobile-popup-features {
        gap: 15px;
    }

    .feature-item {
        min-width: 100px;
    }

    .feature-icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .mobile-popup-content {
        padding: 25px 15px;
        margin: 10px;
        border-radius: 15px;
    }

    .mobile-popup-content h2 {
        font-size: 1.3rem;
    }

    .mobile-popup-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .mobile-popup-features {
        gap: 10px;
        margin-bottom: 20px;
    }

    .feature-item {
        min-width: 80px;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    .mobile-popup-note {
        padding-top: 15px;
        margin-top: 15px;
    }
}