/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #000;
  color: #eee;
  line-height: 1.4;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}

/* Header */
header {
  background: #111;
  border-bottom: 1px solid #333;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  color: #b688f6;
  font-weight: 800;
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 24px;
  color: #eee;
  cursor: pointer;
}

nav ul li.lang-selector {
  color: #b688f6;
  font-weight: 700;
}

nav ul li a {
  color: #eee;
  text-decoration: none;
}

.btn-primary {
  background: #b688f6;
  padding: 8px 22px;
  border-radius: 24px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  color: #000;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #9a64da;
}

.cart-icon {
  font-weight: 700;
}

/* Hero section */
.hero {
  padding: 50px 0;
}

.hero h1 {
  font-weight: 900;
  font-size: 2.7rem;
  line-height: 1.2;
  max-width: 700px;
}

.highlight {
  color: #b688f6;
  display: block;
  margin-top: 8px;
}

.hero p {
  margin: 15px 0 25px 0;
  max-width: 500px;
  color: #ccc;
}

.btn-group {
  display: flex;
  gap: 12px;
}

.btn-secondary {
  background: #222;
  color: #bbb;
  border: 1px solid #444;
  border-radius: 18px;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background: #333;
  color: #eee;
}

.version-info {
  margin-top: 10px;
  color: #666;
  font-size: 0.8rem;
}

/* Features */
.features {
  margin-bottom: 40px;
}

.feature-card {
  background: #111;
  margin-bottom: 36px;
  padding: 26px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1 1 300px;
}

.feature-text h2 {
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.feature-text p {
  color: #aaa;
  max-width: 480px;
}

.feature-image {
  flex: 1 1 280px;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 12px;
}

.feature-image-1 {
  background-image: url('https://cryptologos.cc/logos/ledger-logo.png');
}

.feature-image-2 {
  background-image: url('https://drive.google.com/uc?id=1-YourImgHere'); /* Replace with your own */
  background-color: #e0ccff;
}

.feature-image-3 {
  background-image: url('https://cryptologos.cc/logos/ledger-logo.png');
  background-color: #d9c7ff;
}

/* Extras section */
.extras {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.extra-item {
  background: #222;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  width: calc(50% - 8px);
  gap: 16px;
}

.extra-item img {
  border-radius: 8px;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.extra-item h3 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #ddd;
}

.extra-item a {
  font-size: 0.9rem;
  color: #b688f6;
  text-decoration: none;
}

.extra-item a:hover {
  text-decoration: underline;
}

/* Supported tokens section */
.supported-tokens {
  text-align: center;
  margin-bottom: 40px;
  color: #b688f6;
}

.tokens-row {
  margin: 18px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tokens-row img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 2px #b688f6);
  transition: transform 0.3s ease;
}

.tokens-row img:hover {
  transform: scale(1.15);
}

.supported-tokens input[type="search"] {
  width: 100%;
  max-width: 360px;
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 40px;
  border: none;
  outline: none;
  color: #000;
  background: #b688f6;
  font-weight: 700;
}

/* Footer */
.footer {
  background: #111;
  color: #666;
  padding: 30px 20px;
  font-size: 0.85rem;
}

.footer-logo {
  font-weight: 700;
  color: #b688f6;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 36px;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links div {
  flex: 1 1 150px;
}

.footer-links h4 {
  margin-bottom: 12px;
  font-weight: 700;
  color: #ddd;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li a {
  text-decoration: none;
  color: #888;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #b688f6;
}

.copyright {
  text-align: center;
  color: #444;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-card {
    flex-direction: column;
  }
  .feature-card.reverse {
    flex-direction: column;
  }
  nav ul {
    flex-wrap: wrap;
  }
  nav ul li {
    margin-left: 12px;
    font-size: 0.9rem;
  }
  .extra-item {
    width: 100%;
  }
}
