/* style.css */
:root {
  --primary-color: #6e45e2;
  --secondary-color: #88d3ce;
  --accent-color: #ff7e5f;
  --dark-color: #1a1a2e;
  --light-color: #f8f9fa;
  --text-color: #333;
  --text-light: #f8f9fa;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --neon-glow: 0 0 10px rgba(110, 69, 226, 0.8), 0 0 20px rgba(110, 69, 226, 0.6);
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: 3px;
}

/* Background Elements */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.aurora-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.aurora-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-color), transparent 70%);
  top: -200px;
  left: -200px;
  animation: float 15s infinite alternate;
}

.aurora-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--secondary-color), transparent 70%);
  bottom: -300px;
  right: -200px;
  animation: float 18s infinite alternate-reverse;
}

.aurora-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-color), transparent 70%);
  top: 50%;
  left: 50%;
  animation: float 12s infinite alternate;
}

.cyber-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(30px);
  z-index: -1;
  opacity: 0.1;
}

.cyber-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: 20%;
  right: 10%;
  animation: pulse 4s infinite;
}

.cyber-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  bottom: 15%;
  left: 10%;
  animation: pulse 5s infinite reverse;
}

/* Animations */
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 50px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.15;
  }
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}

/* Glassmorphism Effect */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  padding: 30px;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.2);
}

.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.glass-nav.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.glass-footer {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  padding: 50px 0 20px;
}

/* Neumorphism Effect */
.neumorphic-btn {
  background: linear-gradient(145deg, #1e1e3a, #232347);
  border: none;
  border-radius: 10px;
  padding: 12px 25px;
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2),
              -5px -5px 10px rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.neumorphic-btn:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.2),
              -8px -8px 15px rgba(255, 255, 255, 0.05);
}

.neumorphic-btn:active {
  transform: translateY(0);
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2),
              inset -2px -2px 5px rgba(255, 255, 255, 0.05);
}

.neumorphic-box {
  background: linear-gradient(145deg, #1e1e3a, #232347);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2),
              -5px -5px 10px rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.neumorphic-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e1e3a, #232347);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2),
              -5px -5px 10px rgba(255, 255, 255, 0.05);
  color: var(--secondary-color);
  font-weight: bold;
  margin-right: 15px;
}

/* Neon/Cyberpunk Effect */
.neon-text {
  color: var(--secondary-color);
  text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color);
}

.neon-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(110, 69, 226, 0.5);
  margin-bottom: 20px;
}

.neon-title span {
  display: inline-block;
  animation: neon-pulse 2s infinite alternate;
}

.neon-border {
  position: relative;
  overflow: hidden;
}

.neon-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 2px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes neon-pulse {
  0% {
    text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color);
  }
  100% {
    text-shadow: 0 0 10px var(--secondary-color), 0 0 20px var(--secondary-color), 0 0 30px var(--accent-color);
  }
}

/* Aurora Gradient */
.gradient-text {
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: white;
  box-shadow: 0 4px 15px rgba(110, 69, 226, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(110, 69, 226, 0.6);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(5px);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 500px;
}

.phone-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  animation: float-phone 6s infinite ease-in-out;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--primary-color), transparent 70%);
  filter: blur(30px);
  opacity: 0.3;
  z-index: 1;
  animation: pulse 4s infinite alternate;
}

@keyframes float-phone {
  0%, 100% {
    transform: translateY(-50%) rotate(-5deg);
  }
  50% {
    transform: translateY(-50%) rotate(5deg);
  }
}

/* Steps Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-number {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.step-card p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.step-icons {
  display: flex;
  gap: 15px;
  margin-top: auto;
  font-size: 1.5rem;
  color: var(--accent-color);
}

.referral-box {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

#referralCode {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--secondary-color);
}

.small-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Cashout Section */
.cashout-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.option-card {
  padding: 30px;
  height: 100%;
}

.option-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.option-header i {
  font-size: 2rem;
  color: var(--accent-color);
}

.option-card ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.option-card li {
  margin-bottom: 10px;
}

.option-footer {
  margin-top: 20px;
}

.tag {
  display: inline-block;
  background: rgba(255, 126, 95, 0.2);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.cashback-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cashback-box h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cashback-box h3 i {
  color: var(--accent-color);
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Chart Section */
.chart-container {
  height: 500px;
  padding: 20px;
}

.chart-notes {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding-bottom: 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Footer */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  visibility: visible;
}

/* Coin Animation */
.coin-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.coin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, #ffd700, #daa520);
  border-radius: 50%;
  box-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700;
  animation: coin-fall linear;
}

@keyframes coin-fall {
  to {
    transform: translateY(100vh);
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--dark-color);
  z-index: 1001;
  padding: 80px 30px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu.show {
  left: 0;
}

.mobile-link {
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.mobile-link.active, .mobile-link:hover {
  background: rgba(110, 69, 226, 0.2);
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navbar */
.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: var(--transition);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Overlay for mobile menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-image {
    width: 45%;
  }
  
  .neon-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-image {
    display: none;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .neon-title {
    font-size: 2.8rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .container {
    width: 95%;
    padding: 0 15px;
  }
  
  .neon-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .steps-container, .cashout-options {
    gap: 20px;
  }
  
  .glass-card {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .chart-container {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .section-title::after {
    width: 80px;
  }
  
  .neon-title {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .steps-container, .cashout-options {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    flex-direction: column;
  }
  
  .contact-btn {
    width: 100%;
    justify-content: center;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .chart-container {
    height: 300px;
    padding: 10px;
  }
  
  .mobile-menu {
    width: 85%;
  }
}

@media (max-width: 400px) {
  .section-title {
    font-size: 1.6rem;
  }
  
  .neon-title {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 12px 20px;
  }
  
  .glass-card {
    padding: 15px;
  }
  
  .option-card {
    padding: 20px;
  }
  
  .footer-brand h3 {
    font-size: 1.5rem;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-content {
    max-width: 60%;
  }
  
  .hero-image {
    width: 35%;
    display: block;
  }
  
  .section {
    padding: 40px 0;
  }
}