/* Feature Box Enhanced */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-box {
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.5s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.05);
  z-index: 1;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  transform: translateX(-100%);
  transition: all 0.5s ease;
  z-index: -1;
}

.feature-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.feature-box:hover::before {
  transform: translateX(0);
}

.feature-box:hover::after {
  opacity: 1;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 215, 0, 0.1);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.3);
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.feature-box:hover .feature-icon {
  transform: scale(1.1);
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-box p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.feature-hover {
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.feature-box:hover .feature-hover {
  opacity: 1;
  transform: translateY(0);
}

.feature-link {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--primary);
  color: var(--dark);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.feature-link:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Section Divider Bottom */
.section-divider-bottom {
  position: relative;
  height: 100px;
  margin-bottom: -100px;
  z-index: 1;
}

.section-divider-bottom svg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
}

/* How to Buy Section Enhanced */
#how-to-buy {
  position: relative;
  overflow: hidden;
}

.floating-coins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.coin {
  position: absolute;
  background: url("logo.png") center/contain no-repeat;
  opacity: 0.1;
  animation: float-coin 15s infinite linear;
}

.coin-1 {
  width: 50px;
  height: 50px;
  top: 10%;
  left: 10%;
  animation-duration: 25s;
}

.coin-2 {
  width: 30px;
  height: 30px;
  top: 20%;
  right: 15%;
  animation-duration: 20s;
  animation-delay: 2s;
}

.coin-3 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  right: 30%;
  animation-duration: 22s;
  animation-delay: 6s;
}

.coin-4 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-duration: 28s;
  animation-delay: 4s;
}

@keyframes float-coin {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-50px) translateX(50px) rotate(90deg);
  }
  50% {
    transform: translateY(0px) translateX(100px) rotate(180deg);
  }
  75% {
    transform: translateY(50px) translateX(50px) rotate(270deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(360deg);
  }
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  gap: 30px;
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.step-connector {
  width: 4px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  margin-left: 42px;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), transparent);
  opacity: 0;
  transition: all 0.5s ease;
}

.step:hover {
  border-left-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.step:hover::before {
  opacity: 1;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 50px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.step:hover .step-number {
  background: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.step-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.step-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  transform: scale(1.2) rotate(15deg);
  color: rgba(255, 215, 0, 0.2);
}

/* Tokenomics Enhanced */
.tokenomics-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.tokenomics-chart {
  flex: 1;
  min-width: 300px;
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.tokenomics-chart:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.2);
}

.chart-legend {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.legend-color {
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.tokenomics-details {
  flex: 1;
  min-width: 300px;
}

.token-allocation,
.token-info {
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.token-allocation:hover,
.token-info:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.2);
}

.token-allocation h3,
.token-info h3 {
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
  padding-bottom: 15px;
}

.token-allocation h3::after,
.token-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.tokenomics-description {
  margin-bottom: 25px;
  color: var(--text-muted);
}

.token-metrics {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.metric {
  text-align: center;
  padding: 15px;
  background-color: rgba(34, 34, 34, 0.7);
  border-radius: 8px;
  min-width: 100px;
  flex: 1;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.metric:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.metric-value {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.allocation-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.allocation-item:hover {
  padding-left: 5px;
  border-bottom-color: rgba(255, 215, 0, 0.2);
}

.allocation-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.allocation-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.allocation-percentage {
  font-weight: 700;
  color: var(--primary);
}

/* Mining App Enhanced */
.mining-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.mining-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.phone-mockup {
  width: 280px;
  height: 580px;
  background-color: #000;
  border-radius: 40px;
  margin: 0 auto;
  padding: 15px;
  border: 8px solid #333;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.phone-mockup:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.7);
}

.phone-screen {
  background-color: #111;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background-color: #000;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 2;
}

.app-header {
  width: 100%;
  padding: 40px 0 20px;
  text-align: center;
}

.app-logo {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: bold;
  font-size: 20px;
  color: #000;
}

.app-title {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.mining-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 20px 0;
}

.mining-stats .stat {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
  min-width: 100px;
}

.mining-stats .stat-value {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
}

.mining-stats .stat-label {
  color: #aaa;
  font-size: 12px;
}

.mining-progress {
  width: 100%;
  margin: 20px 0;
}

.progress-bar {
  height: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 5px;
}

.progress-fill {
  height: 100%;
  width: 65%;
  background-color: var(--primary);
  border-radius: 5px;
  animation: progress 3s infinite linear;
}

@keyframes progress {
  0% {
    width: 10%;
  }
  50% {
    width: 65%;
  }
  100% {
    width: 10%;
  }
}

.progress-label {
  color: #aaa;
  font-size: 12px;
  text-align: center;
}

.mining-button {
  background-color: var(--primary);
  color: #000;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  margin: 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mining-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.app-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 0;
  border-radius: 15px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #777;
  font-size: 12px;
}

.nav-item.active {
  color: var(--primary);
}

.nav-item i {
  font-size: 16px;
  margin-bottom: 5px;
}

.mining-text {
  flex: 1;
  min-width: 300px;
}

.mining-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.mining-text p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

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

.mining-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(34, 34, 34, 0.5);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mining-feature:hover {
  transform: translateX(5px);
  background-color: rgba(34, 34, 34, 0.7);
  border-left-color: var(--primary);
}

.mining-feature-icon {
  color: var(--primary);
  font-size: 1.5rem;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
}

.mining-feature h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.mining-feature p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mining-cta {
  margin-top: 30px;
  display: inline-block;
} /* Variables */
:root {
  --primary: #ffd700;
  --primary-dark: #e6c200;
  --primary-light: #ffeb99;
  --dark: #111111;
  --dark-light: #222222;
  --dark-lighter: #333333;
  --text-light: #f5f5f5;
  --text-muted: #aaaaaa;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--primary-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bg-dark-light {
  background-color: var(--dark-light);
}

/* Glowing Effect */
.glow {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.glow-box {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Header Styles with Animation */
header {
  background-color: rgba(17, 17, 17, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

header.scrolled {
  background-color: rgba(17, 17, 17, 0.98);
  padding: 5px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: all 0.4s ease;
}

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

.logo img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

header.scrolled .logo img {
  width: 35px;
  height: 35px;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
}

.logo h1::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.logo:hover h1::after {
  width: 100%;
}

header.scrolled .logo h1 {
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.7)),
    #111;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Animated Background */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: float 15s infinite;
}

.particle:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.particle:nth-child(2) {
  width: 40px;
  height: 40px;
  left: 20%;
  top: 80%;
  animation-delay: 2s;
  animation-duration: 30s;
}

.particle:nth-child(3) {
  width: 60px;
  height: 60px;
  right: 15%;
  top: 30%;
  animation-delay: 5s;
  animation-duration: 35s;
}

.particle:nth-child(4) {
  width: 50px;
  height: 50px;
  right: 10%;
  top: 70%;
  animation-delay: 7s;
  animation-duration: 20s;
}

.particle:nth-child(5) {
  width: 70px;
  height: 70px;
  left: 30%;
  top: 40%;
  animation-delay: 10s;
  animation-duration: 28s;
  opacity: 0.2;
}

.particle:nth-child(6) {
  width: 30px;
  height: 30px;
  right: 30%;
  top: 40%;
  animation-delay: 12s;
  animation-duration: 32s;
  opacity: 0.4;
}

.particle:nth-child(7) {
  width: 90px;
  height: 90px;
  left: 50%;
  top: 10%;
  animation-delay: 3s;
  animation-duration: 27s;
  opacity: 0.1;
}

.particle:nth-child(8) {
  width: 55px;
  height: 55px;
  left: 75%;
  top: 60%;
  animation-delay: 6s;
  animation-duration: 22s;
}

.particle:nth-child(9) {
  width: 35px;
  height: 35px;
  left: 85%;
  top: 25%;
  animation-delay: 9s;
  animation-duration: 34s;
}

.particle:nth-child(10) {
  width: 45px;
  height: 45px;
  left: 5%;
  top: 60%;
  animation-delay: 14s;
  animation-duration: 26s;
  opacity: 0.2;
}

.particle:nth-child(11) {
  width: 65px;
  height: 65px;
  right: 5%;
  top: 10%;
  animation-delay: 8s;
  animation-duration: 33s;
  opacity: 0.3;
}

.particle:nth-child(12) {
  width: 25px;
  height: 25px;
  left: 40%;
  top: 85%;
  animation-delay: 11s;
  animation-duration: 24s;
  opacity: 0.4;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(-100px) translateX(100px) rotate(180deg);
    opacity: 0.2;
  }
  75% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(0) translateX(0) rotate(360deg);
    opacity: 0.3;
  }
}

/* Hero Content */
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.logo-animation {
  margin-bottom: 20px;
}

.logo-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 32px;
  font-weight: bold;
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
  position: relative;
}

.logo-icon::before,
.logo-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: var(--primary);
  opacity: 0.3;
  z-index: -1;
  animation: ripple 2s infinite;
}

.logo-icon::after {
  animation-delay: 1s;
}

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

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--primary);
  background: linear-gradient(to right, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.animated-text {
  animation: fadeInUp 1s both;
}

.animated-text-delay {
  animation: fadeInUp 1s 0.3s both;
}

.ticker {
  position: relative;
  display: inline-block;
  animation: tickerPulse 1.5s infinite;
}

@keyframes tickerPulse {
  0%,
  100% {
    color: #ffd700;
  }
  50% {
    color: #ffa500;
  }
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f5f5f5;
  line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat-item {
  background-color: rgba(34, 34, 34, 0.7);
  padding: 15px 25px;
  border-radius: 10px;
  min-width: 150px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.3);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #aaa;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.wheel {
  background-color: var(--primary);
  width: 6px;
  height: 10px;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.arrow-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.arrow-scroll span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
  animation: arrowDown 2s infinite;
}

.arrow-scroll span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow-scroll span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes arrowDown {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
  padding: 100px 0;
  scroll-margin-top: 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
}

/* About Section Enhancements */
#about {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text {
  padding-right: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: #f0f0f0;
  line-height: 1.8;
}

.about-highlights {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background-color: rgba(34, 34, 34, 0.7);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-left-color: var(--primary);
}

.highlight-icon {
  font-size: 1.8rem;
  color: var(--primary);
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.highlight-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

.about-video {
  width: 100%;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  background-color: var(--dark-light);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(34, 34, 34, 0.9),
    rgba(17, 17, 17, 0.9)
  );
}

.play-button {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  position: relative;
}

.play-button::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-color: rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.play-button i {
  color: var(--dark);
  font-size: 1.5rem;
  margin-left: 5px;
}

.play-button:hover {
  transform: scale(1.1);
}

.video-text {
  color: var(--text-light);
  font-weight: 500;
}

/* Section Divider */
.section-divider {
  position: relative;
  height: 100px;
  margin-top: -100px;
  z-index: 1;
}

.section-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
}

/* Flying Airplanes */
.flying-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.airplane {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.plane-img {
  width: 60px;
  height: 60px;
  filter: invert(80%) sepia(60%) saturate(1000%) hue-rotate(7deg)
    brightness(105%) contrast(105%);
  display: block;
}

.airplane-1 .plane-img {
  width: 70px;
  height: 70px;
}

.airplane-2 .plane-img {
  width: 65px;
  height: 65px;
}

.airplane-3 .plane-img {
  width: 55px;
  height: 55px;
}

.airplane-extra-1 .plane-img {
  width: 50px;
  height: 50px;
}

.airplane-extra-2 .plane-img {
  width: 60px;
  height: 60px;
}

.airplane-extra-3 .plane-img {
  width: 45px;
  height: 45px;
}

.airplane-1 {
  top: 15%;
  left: -50px;
  animation: flyAcross1 30s linear infinite;
  transform: rotate(25deg);
}

.airplane-2 {
  top: 40%;
  right: -50px;
  animation: flyAcross2 25s linear infinite;
  animation-delay: 5s;
  transform: rotate(-25deg);
}

.airplane-3 {
  top: 65%;
  left: -50px;
  animation: flyAcross3 35s linear infinite;
  animation-delay: 12s;
  transform: rotate(15deg);
}

.airplane-extra-1 {
  top: 25%;
  right: -50px;
  animation: flyAcross2 28s linear infinite;
  animation-delay: 3s;
  transform: rotate(-20deg);
}

.airplane-extra-2 {
  top: 50%;
  left: -50px;
  animation: flyAcross1 32s linear infinite;
  animation-delay: 8s;
  transform: rotate(22deg);
}

.airplane-extra-3 {
  top: 75%;
  right: -50px;
  animation: flyAcross2 40s linear infinite;
  animation-delay: 15s;
  transform: rotate(-18deg);
}

@keyframes flyAcross1 {
  0% {
    left: -100px;
    transform: rotate(25deg) translateY(0);
  }
  20% {
    transform: rotate(15deg) translateY(-20px);
  }
  40% {
    transform: rotate(25deg) translateY(0);
  }
  60% {
    transform: rotate(35deg) translateY(20px);
  }
  80% {
    transform: rotate(25deg) translateY(0);
  }
  100% {
    left: calc(100% + 100px);
    transform: rotate(25deg) translateY(0);
  }
}

@keyframes flyAcross2 {
  0% {
    right: -100px;
    transform: rotate(-25deg) translateY(0);
  }
  20% {
    transform: rotate(-35deg) translateY(20px);
  }
  40% {
    transform: rotate(-25deg) translateY(0);
  }
  60% {
    transform: rotate(-15deg) translateY(-20px);
  }
  80% {
    transform: rotate(-25deg) translateY(0);
  }
  100% {
    right: calc(100% + 100px);
    transform: rotate(-25deg) translateY(0);
  }
}

@keyframes flyAcross3 {
  0% {
    left: -100px;
    transform: rotate(15deg) translateY(0);
  }
  25% {
    transform: rotate(25deg) translateY(-15px);
  }
  50% {
    transform: rotate(15deg) translateY(0);
  }
  75% {
    transform: rotate(5deg) translateY(15px);
  }
  100% {
    left: calc(100% + 100px);
    transform: rotate(15deg) translateY(0);
  }
}

/* Clouds */
.cloud {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(10px);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cloud-1 {
  width: 100px;
  height: 60px;
  top: 25%;
  left: -120px;
  animation: moveCloud 45s linear infinite;
}

.cloud-1::before {
  width: 60px;
  height: 60px;
  top: -30px;
  left: 15px;
}

.cloud-1::after {
  width: 80px;
  height: 80px;
  top: -20px;
  right: 15px;
}

.cloud-2 {
  width: 120px;
  height: 70px;
  top: 50%;
  right: -150px;
  animation: moveCloud 55s linear infinite reverse;
  animation-delay: 10s;
}

.cloud-2::before {
  width: 70px;
  height: 70px;
  top: -35px;
  left: 20px;
}

.cloud-2::after {
  width: 90px;
  height: 90px;
  top: -25px;
  right: 20px;
}

.cloud-3 {
  width: 80px;
  height: 50px;
  top: 70%;
  left: -100px;
  animation: moveCloud 60s linear infinite;
  animation-delay: 20s;
}

.cloud-3::before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 10px;
}

.cloud-3::after {
  width: 65px;
  height: 65px;
  top: -15px;
  right: 10px;
}

@keyframes moveCloud {
  0% {
    left: -150px;
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    left: calc(100% + 150px);
    opacity: 0;
  }
}

/* Flight Routes and Destination Markers */
.flight-route {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 215, 0, 0.2),
    transparent
  );
  z-index: 1;
  transform-origin: left center;
  animation: routePulse 3s infinite alternate;
}

@keyframes routePulse {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.6;
  }
}

.destination-marker {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.marker-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

.marker-pulse {
  width: 20px;
  height: 20px;
  background-color: rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  position: absolute;
  top: -7px;
  left: -7px;
  z-index: 2;
  animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  70% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.marker-label {
  position: absolute;
  top: -25px;
  left: -15px;
  background-color: rgba(17, 17, 17, 0.7);
  color: var(--primary);
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.destination-marker:hover .marker-label {
  opacity: 1;
  transform: translateY(0);
}

/* Contrails */
.contrail {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 1;
  pointer-events: none;
  animation: fadeContrail 3s linear forwards;
}

@keyframes fadeContrail {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* Shooting Stars */
.shooting-star {
  position: absolute;
  width: 100px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  z-index: 1;
  overflow: visible;
  opacity: 0;
  animation: shootingStar 5s linear infinite;
}

.shooting-star::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 50%;
  left: 70px;
  top: -1px;
  box-shadow: 0 0 10px var(--primary);
}

@keyframes shootingStar {
  0% {
    transform: translateX(-100px) translateY(0) rotate(45deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    transform: translateX(100vw) translateY(100vh) rotate(45deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Flight Routes and Destination Markers */
.flight-route {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 215, 0, 0.2),
    transparent
  );
  z-index: 1;
  transform-origin: left center;
  animation: routePulse 3s infinite alternate;
}

@keyframes routePulse {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.6;
  }
}

.destination-marker {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.marker-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

.marker-pulse {
  width: 20px;
  height: 20px;
  background-color: rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  position: absolute;
  top: -7px;
  left: -7px;
  z-index: 2;
  animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  70% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.marker-label {
  position: absolute;
  top: -25px;
  left: -15px;
  background-color: rgba(17, 17, 17, 0.7);
  color: var(--primary);
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.destination-marker:hover .marker-label {
  opacity: 1;
  transform: translateY(0);
}

/* Contrails */
.contrail {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 1;
  pointer-events: none;
  animation: fadeContrail 3s linear forwards;
}

@keyframes fadeContrail {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* World Map Background */
.world-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at center,
    transparent 0%,
    transparent 100%
  );
  opacity: 0.1;
  z-index: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Additional Flying Elements */
.shooting-star {
  position: absolute;
  width: 100px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  z-index: 1;
  overflow: visible;
  opacity: 0;
  animation: shootingStar 5s linear infinite;
}

.shooting-star::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 50%;
  left: 70px;
  top: -1px;
  box-shadow: 0 0 10px var(--primary);
}

@keyframes shootingStar {
  0% {
    transform: translateX(-100px) translateY(0) rotate(45deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    transform: translateX(100vw) translateY(100vh) rotate(45deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.nav-btn {
  padding: 8px 20px;
  background-color: var(--primary);
  color: var(--dark) !important;
  border-radius: 30px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.nav-btn::after {
  display: none;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-box {
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* How to Buy Section */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 30px;
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 50px;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

/* Tokenomics Section */
.tokenomics-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.tokenomics-chart {
  flex: 1;
  min-width: 300px;
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tokenomics-details {
  flex: 1;
  min-width: 300px;
}

.token-allocation,
.token-info {
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.token-allocation h3,
.token-info h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.allocation-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.allocation-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.allocation-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.allocation-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.allocation-percentage {
  font-weight: 700;
  color: var(--primary);
}

/* Mining App Section */
.mining-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.mining-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.phone-mockup {
  width: 280px;
  height: 580px;
  background-color: #000;
  border-radius: 40px;
  margin: 0 auto;
  padding: 15px;
  border: 8px solid #333;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}

.phone-screen {
  background-color: #111;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.app-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
}

.app-title {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.mining-stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary);
}

.stat-label {
  color: #aaa;
  font-size: 14px;
}

.mining-button {
  background-color: var(--primary);
  color: #000;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  margin-top: 30px;
}

.mining-text {
  flex: 1;
  min-width: 300px;
}

.mining-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

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

.mining-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.mining-feature-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 5px;
}

.mining-feature h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

/* Download Section */
.download-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--dark-light);
  color: var(--text-light);
  padding: 15px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

.app-btn-icon {
  font-size: 2rem;
}

.app-btn-text {
  text-align: left;
}

.app-btn-text small {
  display: block;
  font-size: 0.8rem;
}

.app-btn-text span {
  font-size: 1.2rem;
  font-weight: 600;
}

/* FAQ Section */
#faq {
  background-color: var(--dark);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--dark-light);
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  border-left-color: var(--primary);
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--text-light);
}

.faq-toggle {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

/* Disclaimer Section */
.disclaimer-content {
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.disclaimer-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
}

.disclaimer-content p {
  margin-bottom: 15px;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--dark-light);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.footer-col::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 215, 0, 0),
    rgba(255, 215, 0, 0.2),
    rgba(255, 215, 0, 0)
  );
  display: none;
}

@media (min-width: 992px) {
  .footer-col:not(:last-child)::after {
    display: block;
  }
}

.footer-col h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
}

.footer-col p {
  margin-bottom: 20px;
  color: #bbb;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.footer-links li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary);
  transition: all 0.3s ease;
}

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

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

.footer-links li:hover::before {
  left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--dark);
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s ease;
  color: var(--text-light);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--dark);
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Newsletter */
.newsletter {
  background-color: rgba(34, 34, 34, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), transparent);
  z-index: 0;
}

.newsletter h3 {
  color: var(--primary);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.newsletter p {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  background-color: var(--dark);
  color: var(--text-light);
  outline: none;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  background-color: var(--primary);
  color: var(--dark);
  border: none;
  padding: 0 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}

/* Features Section Enhancements */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-box {
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.5s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.05);
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  transform: translateX(-100%);
  transition: all 0.5s ease;
}

.feature-box:hover::before {
  transform: translateX(0);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1);
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Steps Enhancement */
.step {
  display: flex;
  gap: 30px;
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), transparent);
  opacity: 0;
  transition: all 0.5s ease;
}

.step:hover {
  border-left-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.step:hover::before {
  opacity: 1;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 50px;
  position: relative;
  z-index: 1;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Download Section Enhanced */
.download-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.download-text {
  flex: 1;
  min-width: 300px;
}

.download-text h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.download-text p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.download-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background-color: rgba(34, 34, 34, 0.7);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.download-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(34, 34, 34, 0.9);
}

.download-feature i {
  color: var(--primary);
  font-size: 1.5rem;
}

.download-feature span {
  color: var(--text-light);
  font-weight: 500;
}

.download-app-showcase {
  flex: 1;
  min-width: 300px;
}

.app-screenshots {
  position: relative;
  height: 500px;
  width: 100%;
}

.screenshot {
  width: 250px;
  height: 450px;
  background-color: var(--dark);
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: absolute;
  overflow: hidden;
  transition: all 0.5s ease;
  border: 8px solid #333;
}

.screenshot-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.screenshot-1 {
  left: 0;
  top: 50px;
  transform: rotate(-5deg);
  z-index: 1;
}

.screenshot-2 {
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.screenshot-3 {
  right: 0;
  top: 50px;
  transform: rotate(5deg);
  z-index: 2;
}

.app-screenshots:hover .screenshot-1 {
  transform: translateX(-20px) rotate(-10deg);
}

.app-screenshots:hover .screenshot-2 {
  transform: translateX(-50%) translateY(-10px);
}

.app-screenshots:hover .screenshot-3 {
  transform: translateX(20px) rotate(10deg);
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--dark-light);
  color: var(--text-light);
  padding: 15px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.app-btn-icon {
  font-size: 2rem;
}

.app-btn-text {
  text-align: left;
}

.app-btn-text small {
  display: block;
  font-size: 0.8rem;
}

.app-btn-text span {
  font-size: 1.2rem;
  font-weight: 600;
}

.qr-codes {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.qr-code {
  text-align: center;
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  background-color: var(--dark);
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin: 0 auto 10px;
  position: relative;
}

.qr-placeholder::before,
.qr-placeholder::after {
  content: "";
  position: absolute;
  background-color: var(--primary);
}

.qr-placeholder::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.qr-placeholder::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.qr-code span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ Section Enhanced */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--dark-light);
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.05);
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.2);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  border-left-color: var(--primary);
  background-color: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.faq-item:hover .faq-question h3 {
  color: var(--primary);
}

.faq-toggle {
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
}

.faq-item.active .faq-toggle {
  transform: rotate(135deg);
  background-color: var(--primary);
  color: var(--dark);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
  opacity: 1;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Disclaimer Section Enhanced */
.disclaimer-content {
  background-color: var(--dark-light);
  border-radius: 10px;
  padding: 30px 30px 30px 60px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.disclaimer-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
}

.disclaimer-icon {
  position: absolute;
  top: 30px;
  left: 20px;
  color: var(--primary);
  font-size: 1.5rem;
}

.disclaimer-content p {
  margin-bottom: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

/* Additional Animations & Effects */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  background: linear-gradient(
    to right,
    rgba(255, 215, 0, 0.1) 8%,
    rgba(255, 215, 0, 0.2) 18%,
    rgba(255, 215, 0, 0.1) 33%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}

/* Responsive Improvements */
@media screen and (max-width: 992px) {
  .about-grid,
  .mining-content,
  .download-content {
    grid-template-columns: 1fr;
  }

  .about-video,
  .mining-img,
  .download-app-showcase {
    margin-bottom: 40px;
  }

  .hero h2 {
    font-size: 2.8rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-item {
    min-width: 120px;
    padding: 12px 20px;
  }

  .feature-box,
  .step,
  .token-allocation,
  .token-info {
    padding: 25px;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    flex-direction: column;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

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

  .mobile-menu-btn {
    display: block;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .step {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 10px;
  }

  .step-icon {
    position: static;
    margin: 15px auto 0;
    font-size: 2rem;
  }

  .tokenomics-chart,
  .tokenomics-details,
  .mining-img,
  .mining-text {
    flex: 100%;
  }

  .mining-img {
    margin-bottom: 40px;
  }

  .app-screenshots {
    height: 400px;
  }

  .screenshot {
    width: 200px;
    height: 380px;
  }

  .screenshot-1 {
    left: 10%;
  }

  .screenshot-3 {
    right: 10%;
  }
}

@media screen and (max-width: 576px) {
  .hero h2 {
    font-size: 2rem;
  }

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

  .stat-item {
    width: 100%;
  }

  .about-highlights,
  .download-features {
    grid-template-columns: 1fr;
  }

  .features-grid {
    gap: 20px;
  }

  .app-screenshots {
    display: none;
  }

  .download-app-showcase {
    display: none;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }

  .newsletter-form button {
    width: 100%;
    padding: 12px;
  }
}
