/* ===== Base Styles ===== */
:root {
  --primary: #0a0a0a;
  --secondary: #121212;
  --accent: #00e676;
  --accent-dark: #00c853;
  --accent-light: rgba(0, 230, 118, 0.1);
  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --border: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(18, 18, 18, 0.6);
  --gradient-start: #00e676;
  --gradient-end: #00b0ff;
  --solana: #9945ff;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--primary);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

section {
  padding: 50px 0;
  position: relative;
}

a {
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

.btn {
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary);
  border: none;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
}

.btn-outline-accent {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline-accent:hover {
  background-color: var(--accent-light);
  color: var(--accent);
  transform: translateY(-2px);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.text-accent {
  color: var(--accent);
}

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

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulse-loader {
  display: flex;
  align-items: center;
}

.pulse-circle {
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  border-radius: 50%;
  margin: 0 10px;
  animation: pulse 1.5s infinite ease-in-out;
}

.pulse-circle:nth-child(2) {
  animation-delay: 0.2s;
}

.pulse-circle:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== Particles Background ===== */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* ===== Navbar ===== */
.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
}

.brand-text {
  background: linear-gradient(to right, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 8px 16px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:active,
.nav-link:focus {
  color: var(--accent);
  background: transparent !important;
  outline: none;
  box-shadow: none;
}

.nav-link:hover::after {
  width: 70%;
}

.navbar-toggler {
  border: none;
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  padding: 8px 12px;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "";
  display: block;
  height: 3px;
  width: 24px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 2px;
}

.navbar-toggler-icon span {
  margin: 0;
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(0, 230, 118, 0.1),
    transparent 70%
  );
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
}

.hero-image {
  position: relative;
  height: 400px;
  width: 100%;
}

.energy-grid {
  position: relative;
  width: 100%;
  height: 100%;
}

.energy-node {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent);
}

.node1 {
  top: 20%;
  left: 20%;
  animation: float 4s infinite ease-in-out;
}

.node2 {
  top: 70%;
  left: 30%;
  animation: float 5s infinite ease-in-out;
}

.node3 {
  top: 40%;
  left: 60%;
  animation: float 6s infinite ease-in-out;
}

.node4 {
  top: 20%;
  left: 80%;
  animation: float 7s infinite ease-in-out;
}

.node5 {
  top: 80%;
  left: 70%;
  animation: float 4.5s infinite ease-in-out;
}

.energy-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform-origin: left center;
}

.line1 {
  top: 20%;
  left: 20%;
  width: 40%;
  transform: rotate(30deg);
}

.line2 {
  top: 70%;
  left: 30%;
  width: 30%;
  transform: rotate(-20deg);
}

.line3 {
  top: 40%;
  left: 60%;
  width: 20%;
  transform: rotate(-40deg);
}

.line4 {
  top: 20%;
  left: 80%;
  width: 30%;
  transform: rotate(120deg);
}

.energy-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: pulse-move 3s infinite linear;
}

.pulse1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.pulse2 {
  top: 70%;
  left: 30%;
  animation-delay: 1s;
}

.pulse3 {
  top: 40%;
  left: 60%;
  animation-delay: 2s;
}

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

@keyframes pulse-move {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(100px, -50px) scale(0);
    opacity: 0;
  }
}

.hero-wave {
  background-color: var(--accent-dark);
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

/* ===== Features Section ===== */
.features-section {
  background-color: var(--secondary);
  position: relative;
  z-index: 2;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 30px;
  color: var(--accent);
}

.feature-card:hover .feature-icon {
  background-color: var(--accent);
}

.feature-card:hover .feature-icon i {
  color: var(--primary);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== Trading Section ===== */
.trading-section {
  background-color: var(--primary);
  position: relative;
}

.trading-features {
  margin-top: 30px;
}

.trading-feature {
  display: flex;
  margin-bottom: 20px;
}

.trading-feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.trading-feature-icon i {
  font-size: 20px;
  color: var(--accent);
}

.trading-feature-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.trading-feature-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.trading-chart-container {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trading-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.trading-chart-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.price-display {
  display: flex;
  align-items: center;
}

#energy-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 10px;
}

.live-badge {
  background-color: var(--accent-light);
  color: var(--accent);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.trading-chart {
  height: 250px;
  position: relative;
  margin-bottom: 20px;
  background: linear-gradient(to top, var(--accent-light), transparent);
  border-radius: 10px;
  overflow: hidden;
}

.energy-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trading-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.trading-actions .btn {
  padding: 8px 30px;
  font-weight: 600;
}

/* ===== Token Section ===== */
.token-section {
  background-color: var(--secondary);
  position: relative;
}

.token-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.token-circle {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: var(--accent-light);
  border: 4px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.3);
  animation: pulse-glow 3s infinite ease-in-out;
}

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

.token-symbol {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.token-price {
  font-size: 1.2rem;
}

.token-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.orbit-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.orbit-icon-1 {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-icon-2 {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-icon-3 {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-icon-4 {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.3);
  }
  50% {
    box-shadow: 0 0 50px rgba(0, 230, 118, 0.5);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.token-info {
  padding: 20px;
}

.token-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.token-info p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.token-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 15px;
  height: 100%;
  border: 1px solid var(--border);
}

.token-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.token-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.tokenomics {
  background-color: var(--accent-light);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.tokenomics h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.tokenomics-item {
  display: flex;
  flex-direction: column;
}

.tokenomics-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.tokenomics-item strong {
  font-size: 1rem;
}

/* ===== Staking Section ===== */
.staking-section {
  background-color: var(--primary);
  position: relative;
}

.staking-plan {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.staking-plan.featured {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.staking-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.staking-icon i {
  font-size: 30px;
  color: var(--accent);
}

.staking-plan h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.staking-plan p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.staking-apy {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.staking-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.staking-form-col {
  padding: 30px;
}

.staking-form-col h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.staking-form-col p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.staking-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--text);
  color: var(--text);
  padding: 12px 15px;
  border-radius: 8px;
}

.staking-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: none;
}

.staking-form .input-group-text {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--text);
  color: var(--accent);
}

.staking-plan-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.staking-stats-col {
  padding: 30px;
  border-top: 1px solid var(--border);
}

@media (min-width: 992px) {
  .staking-stats-col {
    border-top: none;
    border-left: 1px solid var(--border);
  }
}

.staking-stats-col h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.staking-stat {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.staking-stat span {
  color: var(--text-secondary);
}

.staking-progress .progress {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.staking-progress .progress-bar {
  background-color: var(--accent);
  border-radius: 4px;
}

/* ===== Airdrop Section ===== */
.airdrop-section {
  background-color: var(--secondary);
  position: relative;
}

.airdrop-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.airdrop-form-col {
  padding: 30px;
}

.airdrop-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-light);
  color: var(--accent);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.airdrop-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--text);
  color: var(--text);
  padding: 12px 15px;
  border-radius: 8px;
}

.airdrop-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: none;
}

.airdrop-success {
  background-color: var(--accent-light);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 230, 118, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.success-icon i {
  font-size: 30px;
  color: var(--accent);
}

.airdrop-success h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.airdrop-success p {
  color: var(--text-secondary);
}

.airdrop-image-col {
  position: relative;
  min-height: 300px;
  background-image: url("https://source.unsplash.com/random/600x800/?crypto,technology");
  background-size: cover;
  background-position: center;
}

.airdrop-image-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--primary), transparent);
}

.airdrop-details {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--border);
}

.airdrop-details h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.airdrop-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.airdrop-info li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.airdrop-info li span {
  color: var(--text-secondary);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--primary);
  padding: 80px 0 30px;
  position: relative;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-text {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
}

.social-icon i {
  font-size: 18px;
  color: var(--text);
}

.social-icon:hover i {
  color: var(--primary);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-subscribe .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 15px;
  border-radius: 8px 0 0 8px;
}

.footer-subscribe .form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: none;
}

.footer-subscribe .btn {
  border-radius: 0 8px 8px 0;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-powered {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-dark);
  transform: translateY(-5px);
}

/* ===== Responsive Styles ===== */
@media (max-width: 991.98px) {
  .navbar {
    background-color: #0a0a0a !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-collapse {
    background: #0a0a0a;
    padding: 20px 0;
    border-radius: 0 0 12px 12px;
  }
  .navbar-nav .nav-link {
    color: #fff;
    font-size: 1.2rem;
    padding: 12px 24px;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: nowrap;

    /* gap: 20px; */
    /* margin-bottom: 2rem; */
  }

  .hero-btn {
    flex: auto 1 1;
    margin-right: 0 !important;
  }

  .hero-image {
    display: none;
  }

  .token-visual {
    margin-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 70px 0;
  }

  .hero-section {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: row !important;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }

  .feature-card {
    margin-bottom: 20px;
  }

  .trading-feature {
    margin-bottom: 30px;
  }

  .staking-plan.featured {
    transform: scale(1);
  }

  .staking-plan-selector {
    display: flex;
    flex-direction: row;
    /* gap: 10px; */
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
  .staking-plan-selector .btn {
    flex: 1 1 100px;
    min-width: 100px;
    padding-left: 0;
    padding-right: 0;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 10px;
  }

  .token-circle {
    width: 200px;
    height: 200px;
  }

  .token-symbol {
    font-size: 2rem;
  }

  .airdrop-image-col {
    min-height: 250px;
  }
}

.email-input::-webkit-input-placeholder {
  color: var(--text-secondary);
}

.logo-div {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: cover;
  border-radius: 50%;
}

.img-logo {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;

}