/* Crypto.com inspired static site styles */
:root {
  --cdc-navy: #061121;
  --cdc-navy-2: #0a1a30;
  --cdc-card: #12203a;
  --cdc-blue: #1199fa;
  --cdc-blue-hover: #0d7fd1;
  --cdc-text: #ffffff;
  --cdc-muted: #a7b1c2;
  --cdc-border: rgba(255, 255, 255, 0.08);
  --cdc-green: #17c784;
  --cdc-red: #ff5c5c;
}

body {
  background: var(--cdc-navy);
  color: var(--cdc-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

a { color: var(--cdc-blue); text-decoration: none; }
a:hover { color: var(--cdc-blue-hover); }
h1, h2, h3, h4, h5 { color: #fff; font-weight: 700; }

/* Navbar */
.navbar {
  background: rgba(6, 17, 33, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--cdc-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  color: #fff !important;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--cdc-muted) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.2s;
}

.nav-link:hover { 
  color: #fff !important; 
}

.connect-wallet-btn {
  background: var(--cdc-blue);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
  cursor: pointer;
}

.connect-wallet-btn:hover { 
  background: var(--cdc-blue-hover); 
}

/* Hero */
.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #061121 0%, #0a1a30 60%, #0a2540 100%);
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--cdc-muted);
  margin-bottom: 2rem;
}

.get-started-btn {
  display: inline-block;
  background: var(--cdc-blue);
  color: #fff !important;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
}

.get-started-btn:hover { 
  background: var(--cdc-blue-hover);
  transform: translateY(-2px); 
}

.hero-image { 
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto; 
}

/* Stats */
.stats-section { 
  padding: 3rem 0;
  background: var(--cdc-navy-2); 
}

.stat-card {
  background: var(--cdc-card);
  border: 1px solid var(--cdc-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s;
}

.stat-card:hover { 
  transform: translateY(-4px);
  border-color: var(--cdc-blue); 
}

.stat-icon { 
  color: var(--cdc-blue);
  font-size: 1.5rem;
  margin-bottom: 0.5rem; 
}

.stat-value { 
  font-size: 2rem;
  font-weight: 700;
  color: #fff; 
}

.stat-label { 
  color: var(--cdc-muted);
  font-size: 0.9rem; 
}

/* Section titles */
.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

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

/* Prices */
.crypto-prices-section { 
  padding: 5rem 0; 
}

.crypto-card {
  background: var(--cdc-card);
  border: 1px solid var(--cdc-border);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s;
}

.crypto-card:hover { 
  transform: translateY(-4px);
  border-color: var(--cdc-blue); 
}

.crypto-header { 
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem; 
}

.crypto-icon { 
  width: 40px;
  height: 40px; 
}

.crypto-name { 
  font-weight: 600;
  color: #fff; 
}

.crypto-symbol { 
  color: var(--cdc-muted);
  font-size: 0.85rem;
  text-transform: uppercase; 
}

.crypto-price { 
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff; 
}

.crypto-change { 
  font-size: 0.9rem;
  font-weight: 600; 
}

.crypto-change.positive { 
  color: var(--cdc-green); 
}

.crypto-change.negative { 
  color: var(--cdc-red); 
}

.buy-btn {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--cdc-blue);
  border: 1px solid var(--cdc-blue);
  padding: 0.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.buy-btn:hover { 
  background: var(--cdc-blue);
  color: #fff; 
}

.btn-outline-primary {
  color: var(--cdc-blue);
  border-color: var(--cdc-blue);
}

.btn-outline-primary:hover { 
  background: var(--cdc-blue);
  border-color: var(--cdc-blue);
  color: #fff; 
}

/* Features */
.features-section { 
  padding: 5rem 0;
  background: var(--cdc-navy-2); 
}

.feature-card {
  background: var(--cdc-card);
  border: 1px solid var(--cdc-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s;
}

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

.feature-img { 
  width: 100%;
  height: 180px;
  object-fit: cover; 
}

.feature-content { 
  padding: 1.5rem; 
}

.feature-title { 
  font-size: 1.25rem;
  margin-bottom: 0.5rem; 
}

.feature-description { 
  color: var(--cdc-muted);
  margin-bottom: 1rem; 
}

.feature-link { 
  color: var(--cdc-blue);
  font-weight: 600; 
}

.feature-link i { 
  margin-left: 0.35rem;
  transition: transform 0.2s; 
}

.feature-link:hover i { 
  transform: translateX(4px); 
}

/* App section */
.app-section { 
  padding: 5rem 0; 
}

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

@media (max-width: 991px) { 
  .app-content { 
    grid-template-columns: 1fr; 
  } 
}

.app-title { 
  font-size: 2.4rem;
  margin-bottom: 0.75rem; 
}

.app-description { 
  color: var(--cdc-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem; 
}

.app-benefits { 
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem; 
}

.app-benefit { 
  display: flex;
  gap: 1rem;
  align-items: flex-start; 
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(17,153,250,0.12);
  color: var(--cdc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-benefit h4 { 
  font-size: 1rem;
  margin-bottom: 0.25rem; 
}

.app-benefit p { 
  color: var(--cdc-muted);
  font-size: 0.9rem;
  margin: 0; 
}

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

.app-btn {
  background: var(--cdc-blue);
  color: #fff !important;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.app-btn:hover { 
  background: var(--cdc-blue-hover); 
}

.app-img img { 
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto; 
}

/* Footer */
footer { 
  background: #030812;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--cdc-border); 
}

.footer-logo { 
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

footer p { 
  color: var(--cdc-muted); 
}

.social-icons { 
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem; 
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cdc-card);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  text-decoration: none;
}

.social-icon:hover { 
  background: var(--cdc-blue); 
}

.footer-column h5 { 
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem; 
}

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

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

.footer-column a { 
  color: var(--cdc-muted); 
}

.footer-column a:hover { 
  color: var(--cdc-blue); 
}

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

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

/* Wallet modal (hidden by default) */
.wallet-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.wallet-modal.open { 
  display: flex; 
}

.wallet-content {
  background: var(--cdc-card);
  border-radius: 16px;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  position: relative;
}

.wallet-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.wallet-title { 
  margin-bottom: 1.5rem; 
}

.wallet-options { 
  display: flex;
  flex-direction: column;
  gap: 0.75rem; 
}

.wallet-option {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--cdc-navy-2);
  border: 1px solid var(--cdc-border);
  padding: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.wallet-option:hover { 
  border-color: var(--cdc-blue); 
}

.wallet-icon { 
  width: 40px;
  height: 40px;
  object-fit: contain; 
}

.wallet-name { 
  font-weight: 600;
  color: #fff; 
}

.wallet-description { 
  color: var(--cdc-muted);
  font-size: 0.85rem; 
}

@media (max-width: 767px) {
  .hero-content h1 { 
    font-size: 2.2rem; 
  }
  .section-title { 
    font-size: 1.8rem; 
  }
  .app-title { 
    font-size: 1.8rem; 
  }
}