/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0F0F0F;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Color Variables */
:root {
  --primary-gold: #D4A853;
  --secondary-gold: #B8932D;
  --dark-gold: #8B6914;
  --bg-dark: #0F0F0F;
  --bg-card: #1A1A1A;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted: #999999;
  --border-color: #333333;
  --logo: 45, 66%, 64%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 1rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.trade-btn {
  background: var(--primary-gold);
  color: var(--bg-dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trade-btn:hover {
  background: var(--secondary-gold);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid var(--primary-gold);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.trade-link {
  color: var(--primary-gold);
  text-decoration: underline;
  cursor: pointer;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

.btn-primary {
  background: var(--primary-gold);
  color: var(--bg-dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--secondary-gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.hero-graphics {
  position: relative;
  height: 400px;
}

.eagle-hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 120px;
  animation: eagleGlow 10s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(212, 168, 83, 0.4));
}

@keyframes eagleGlow {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: drop-shadow(0 20px 60px rgba(212, 168, 83, 0.4));
  }
  25% {
    transform: translate(-50%, -50%) scale(1.03) rotate(1deg);
    filter: drop-shadow(0 25px 80px rgba(212, 168, 83, 0.6));
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.05) rotate(0deg);
    filter: drop-shadow(0 30px 100px rgba(212, 168, 83, 0.7));
  }
  75% {
    transform: translate(-50%, -50%) scale(1.03) rotate(-1deg);
    filter: drop-shadow(0 25px 80px rgba(212, 168, 83, 0.6));
  }
}

.flying-eagle {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 60px;
  height: 40px;
  background: var(--primary-gold);
  clip-path: polygon(0% 50%, 30% 0%, 100% 30%, 70% 100%, 40% 70%);
  animation: fly 8s ease-in-out infinite;
}

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

@keyframes fly {
  0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  25% { transform: translateY(-15px) translateX(10px) rotate(5deg); }
  75% { transform: translateY(15px) translateX(-10px) rotate(-5deg); }
}

/* Partners Section */
.partners {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.partners-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.partners-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-logo {
  color: var(--text-muted);
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  color: var(--primary-gold);
  opacity: 1;
}

/* Unlock Section */
.unlock {
  padding: 6rem 0;
  background: var(--bg-dark);
}

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

.unlock-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

.unlock-buttons {
  display: flex;
  gap: 1rem;
}

.unlock-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eagle-logo {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fly 8s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(212, 168, 83, 0.3));
}

.eagle-logo svg {
  width: 120px;
  height: auto;
}

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

.networks-section {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

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

.networks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.network-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.network-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.network-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.network-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.network-details p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.network-details a {
  color: var(--primary-gold);
  text-decoration: none;
}

.bridge-info {
  text-align: center;
  padding: 2rem;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 16px;
  border: 1px solid var(--primary-gold);
}

.bridge-disclaimer {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Products Section */
.products {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.products-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.6;
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
}

.product-card.large {
  grid-row: span 2;
}

.product-visual {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-card) 0%, #222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-visual.soon {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
}

.soon-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.coins-animation {
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="30" fill="%23D4A853"/><circle cx="70" cy="80" r="20" fill="%23B8932D"/><circle cx="130" cy="120" r="25" fill="%23D4A853"/></svg>') center/contain no-repeat;
  animation: coinFloat 4s ease-in-out infinite;
}

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

.product-content {
  padding: 2rem;
}

.product-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.product-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-coming-soon {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: not-allowed;
}

/* Community Section */
.community {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  position: relative;
  overflow: hidden;
}

.community-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.community-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.community-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.community-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.community-graphics {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 168, 83, 0.1) 20%, 
    rgba(212, 168, 83, 0.2) 50%, 
    rgba(212, 168, 83, 0.1) 80%, 
    transparent 100%);
  opacity: 0.7;
}

.gradient-bars::before,
.gradient-bars::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to top, var(--primary-gold) 0%, transparent 100%);
  animation: bars 4s ease-in-out infinite;
}

.gradient-bars::before {
  left: 20%;
  animation-delay: 0s;
}

.gradient-bars::after {
  right: 20%;
  animation-delay: 2s;
}

@keyframes bars {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

/* Join Section */
.join {
  padding: 6rem 0;
  background: var(--bg-dark);
  text-align: center;
}

.join-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.join-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.join-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-gold);
}

.coming-soon-tag {
  background: var(--border-color);
  color: var(--text-muted);
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  font-size: 0.7rem;
  margin-left: 0.5rem;
}

.footer-disclaimer {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-brand {
  font-weight: 600;
  color: var(--text-primary);
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--primary-gold);
  background: rgba(212, 168, 83, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .unlock-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .networks-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .community-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .products-title,
  .unlock-title,
  .community-title,
  .join-title {
    font-size: 2rem;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
}