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

:root {
  --primary-gold: #ffd700;
  --primary-dark: #1a2332;
  --secondary-dark: #0f1419;
  --accent-purple: #8b5cf6;
  --accent-pink: #ff6b9d;
  --text-white: #ffffff;
  --text-gray: #94a3b8;
  --text-light: #e2e8f0;
  --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ff6b9d 100%);
}

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

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 35, 50, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-social-link:hover {
  color: var(--primary-gold);
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.nav-social-icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.nav-social-link:hover .nav-social-icon {
  color: var(--primary-gold);
}

/* Tooltip effect */
.nav-social-link::after {
  content: attr(title);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-dark);
  color: var(--text-white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-social-link:hover::after {
  opacity: 1;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .nav-social-link {
    margin: 0.5rem 0;
  }

  .nav-social-link::after {
    display: none;
  }
}

.nav-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 14px;
}

.nav-btn.secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-gray);
}

.nav-btn.secondary:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

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

.nav-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-white);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.large {
  padding: 16px 32px;
  font-size: 18px;
}

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

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

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

.btn.secondary:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

.btn.full-width {
  width: 100%;
}

/* Token Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.token-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 400px;
  animation: float 6s ease-in-out infinite;
}

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

.card-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.card-dots {
  display: flex;
  gap: 8px;
}

.card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-gray);
}

.card-dots span:first-child {
  background: #ff5f57;
}

.card-dots span:nth-child(2) {
  background: #ffbd2e;
}

.card-dots span:last-child {
  background: #28ca42;
}

.card-content h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Form Styles */
.token-form {
  width: 100%;
}

.form-field {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-white);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-field input.error {
  border-color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: block;
  min-height: 16px;
}

.form-field small {
  color: var(--text-gray);
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.btn-loader {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 16px;
  height: 16px;
}

.toggle-switch {
  width: 50px;
  height: 24px;
  background: var(--text-gray);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--primary-gold);
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(26px);
}

/* Hero Stats */
.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1rem;
  font-weight: 500;
}

/* Chart Section */
.chart-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Enhanced Chart Styles */
.chart-mockup {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.chart-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.chart-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.chart-price {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.price-change {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.price-change.positive {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.price-change.negative {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.chart-controls {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.chart-tabs {
  display: flex;
  gap: 0.5rem;
}

.tab {
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
}

.tab.active {
  background: var(--primary-gold);
  color: var(--primary-dark);
}

.tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.chart-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator-btn {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--text-gray);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-btn.active {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.chart-content {
  position: relative;
}

.chart-grid {
  position: relative;
  height: 400px;
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}

.chart-volume {
  height: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#tradingChart,
#volumeChart {
  width: 100%;
  height: 100%;
  display: block;
}

.chart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.market-stats .stat-item {
  text-align: left;
}

.market-stats .stat-label {
  display: block;
  color: var(--text-gray);
  font-size: 12px;
  margin-bottom: 4px;
}

.market-stats .stat-value {
  display: block;
  font-weight: 600;
  font-size: 14px;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.change {
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.change.positive {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.chart-svg {
  width: 100%;
  height: 200px;
}

/* Chat Modal Styles */
.chat-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.chat-modal.active {
  display: flex;
}

.chat-container {
  background: var(--gradient-primary);
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  height: 600px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 215, 0, 0.2);
  animation: slideUp 0.3s ease;
}

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

.chat-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.1rem;
}

.chat-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.chat-close {
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.chat-close:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
}

.chat-messages {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  gap: 12px;
  animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-content {
  flex: 1;
}

.message-content p {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 12px;
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.bot-message .message-content p {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.error-message-content {
  background: rgba(239, 68, 68, 0.1) !important;
  border: 1px solid rgba(239, 68, 68, 0.2) !important;
  color: #fca5a5;
}

.message-time {
  font-size: 12px;
  color: var(--text-gray);
}

.chat-input-container {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 12px;
}

.chat-input-container input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-white);
  font-size: 14px;
}

.chat-input-container input:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.chat-input-container button {
  padding: 12px 20px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-input-container button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.chat-input-container button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Features Section */
.features {
  padding: 100px 0;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary-dark);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Process Section */
.process {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.2);
}

.process .section-title {
  margin-bottom: 1rem;
}

.process .section-description {
  text-align: center;
  margin-bottom: 4rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 auto 2rem;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Earn Section */
.earn-section {
  padding: 100px 0;
}

.earn-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.earning-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.earning-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.earning-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status.online {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.earning-stats {
  margin-bottom: 2rem;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
  border-bottom: none;
}

.stat .label {
  color: var(--text-gray);
}

.stat .value {
  font-weight: 600;
}

.stat .value.highlight {
  color: var(--primary-gold);
}

/* Roadmap Section */
.roadmap {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.2);
}

.roadmap .section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.roadmap-quarter h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-gold);
}

.roadmap-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--text-gray);
  transition: all 0.3s ease;
}

.roadmap-item.completed {
  border-left-color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.roadmap-item.in-progress {
  border-left-color: var(--primary-gold);
  background: rgba(255, 215, 0, 0.1);
}

.roadmap-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.roadmap-item p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
}

.faq .section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.faq .section-description {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

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

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

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

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 40px 0;
  background: var(--secondary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Footer Styles */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-center {
  flex: 1;
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.social-link:hover {
  color: var(--primary-gold);
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.social-icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

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

/* Mobile responsive footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-center {
    order: 2;
  }

  .footer-social {
    order: 3;
    justify-content: center;
  }

  .footer-logo {
    order: 1;
  }
}

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

.footer-text {
  color: var(--text-gray);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--primary-dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .features-content {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e6c200;
}
