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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(20, 20, 30, 0.98);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  height: 64px;
}

.logo-img {
  max-width: 180px;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.logo-text {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #0066ff;
}

/* Hero Section */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  margin-top: 72px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
  animation: fadeInUp 0.6s ease-out;
}

.hero-intro {
  font-size: 18px;
  color: #666;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-features {
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-features p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

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

.btn {
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #0066cc;
  color: white;
}

.btn-primary:hover {
  background: #0052a3;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #f0f0f0;
  color: #1a1a1a;
  border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
  background: #e8e8e8;
  border-color: #d0d0d0;
  transform: translateY(-2px);
}

.hero-image {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Brand Introduction Section */
.brand-intro {
  padding: 100px 0;
  background: #fafafa;
}

.brand-intro h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #000;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 600;
}

.brand-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

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

.features h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #000;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  padding: 32px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  background: #f0f0f0;
  transform: translateY(-4px);
}

.feature-icon {
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  padding: 0;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 600;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Screenshots Section */
.screenshots {
  padding: 100px 0;
  background: #fafafa;
}

.screenshots h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #000;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0;
}

.screenshot-item {
  aspect-ratio: 9/20;
  border-radius: 12px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Security Section */
.security {
  padding: 100px 0;
  background: #fff;
}

.security h2 {
  font-size: 40px;
  margin-bottom: 50px;
  color: #000;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.security-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.security-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-weight: 600;
}

.security-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.security-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Technology Section */
.technology {
  padding: 100px 0;
  background: #fafafa;
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.tech-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.tech-text h2 {
  font-size: 40px;
  margin-bottom: 50px;
  color: #000;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.tech-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tech-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-weight: 600;
}

.tech-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* Use Cases Section */
.use-cases {
  padding: 100px 0;
  background: #fff;
}

.use-cases h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #000;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.use-cases-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.usecase-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.usecase-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.usecase-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-weight: 600;
}

.usecase-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* Timeline Section */
.timeline {
  padding: 100px 0;
  background: #fafafa;
}

.timeline h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #000;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.timeline-track {
  position: relative;
  padding: 40px 0;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #0066cc, #ccc);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  width: calc(50% - 20px);
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  text-align: right;
  padding-right: 40px;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  text-align: left;
  padding-left: 40px;
}

.timeline-marker {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #0066cc;
  border: 4px solid #fff;
  border-radius: 50%;
  right: -42px;
  top: 8px;
  box-shadow: 0 0 0 2px #0066cc;
}

.timeline-item:nth-child(even) .timeline-marker {
  right: auto;
  left: -42px;
  box-shadow: 0 0 0 2px #0066cc;
}

.timeline-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-weight: 600;
}

.timeline-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Networks Section */
.networks {
  padding: 100px 0;
  background: #fafafa;
}

.networks h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #000;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.networks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.network-item {
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.network-item:hover {
  border-color: #0066cc;
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.08);
  transform: translateY(-2px);
}

.network-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 600;
}

.network-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Tokens Section */
.tokens {
  padding: 100px 0;
  background: #fff;
}

.tokens h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #000;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.tokens-intro {
  font-size: 15px;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tokens-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.token-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.token-item:hover {
  background: #f0f0f0;
  transform: translateY(-4px);
}

.token-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  margin-bottom: 12px;
  position: relative;
}

.token-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.plus-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0066cc, #004499);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 24px;
}

.token-item h4 {
  font-size: 14px;
  margin-bottom: 4px;
  color: #1a1a1a;
  font-weight: 600;
}

.token-item p {
  font-size: 12px;
  color: #999;
}

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

.faq h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #000;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.faq-items {
  width: 100%;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
}

.faq-item:first-child {
  border-top: 1px solid #e8e8e8;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #0066cc;
}

.faq-icon {
  font-size: 24px;
  color: #0066cc;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 16px 0;
}

.faq-answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  height: 56px;
}

.footer-logo-img {
  max-width: 150px;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.footer-column:first-child p {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
  margin: 0;
  padding-top: 4px;
}

.footer-column h4 {
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.footer-column a:hover {
  color: #0066cc;
}

.footer-column p {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.footer-bottom {
  background: #0f0f0f;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.disclaimer {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.copyright {
  font-size: 12px;
  color: #555;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    height: 64px;
    padding: 0 12px;
  }

  .navbar-content {
    padding: 0;
  }

  .logo-section {
    gap: 6px;
  }

  .logo-img {
    max-width: 140px;
    height: 100%;
  }

  .nav-links {
    gap: 20px;
    font-size: 12px;
  }

  .nav-links a {
    padding: 0;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
    margin-top: 64px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .brand-intro {
    padding: 60px 0;
  }

  .brand-intro h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .brand-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features {
    padding: 60px 0;
  }

  .features h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

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

  .feature-card {
    padding: 24px;
  }

  .screenshots {
    padding: 60px 0;
  }

  .screenshots h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .screenshot-item {
    aspect-ratio: 9/20;
  }

  .security {
    padding: 60px 0;
  }

  .security h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .security-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .security-items {
    gap: 20px;
  }

  .technology {
    padding: 60px 0;
  }

  .tech-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tech-text h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .use-cases {
    padding: 60px 0;
  }

  .use-cases h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .networks {
    padding: 60px 0;
  }

  .networks h2 {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .networks-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .network-item {
    padding: 20px;
    border-radius: 8px;
  }

  .network-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .network-item p {
    font-size: 13px;
  }

  .tokens {
    padding: 60px 0;
  }

  .tokens h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .tokens-intro {
    margin-bottom: 32px;
    font-size: 13px;
  }

  .tokens-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .token-item {
    padding: 12px 8px;
  }

  .token-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
  }

  .plus-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .token-item h4 {
    font-size: 11px;
  }

  .token-item p {
    font-size: 10px;
  }

  .use-cases-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline {
    padding: 60px 0;
  }

  .timeline h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .timeline-track::before {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding-right: 0;
    padding-left: 40px;
    text-align: left;
    margin-left: 0 !important;
  }

  .timeline-marker {
    right: auto;
    left: -16px;
  }

  .faq {
    padding: 60px 0;
  }

  .faq h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 15px;
    padding: 14px 0;
  }

  .footer {
    padding: 60px 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-logo {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .footer-logo-img {
    max-width: 120px;
    height: 100%;
  }

  .footer-column h4,
  .footer-column a,
  .footer-column p {
    font-size: 12px;
  }

  .footer-bottom {
    padding: 24px 0;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
  }

  .copyright {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 16px);
  }

  .navbar {
    height: 56px;
  }

  .logo-section {
    gap: 6px;
  }

  .logo-img {
    max-width: 120px;
    height: 100%;
  }

  .logo-text {
    display: none;
  }

  .nav-links {
    gap: 16px;
    font-size: 12px;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
    margin-top: 56px;
  }

  .hero-text h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-intro {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-features {
    margin-bottom: 20px;
  }

  .hero-features p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 13px;
  }

  .brand-intro h2,
  .features h2,
  .screenshots h2,
  .security h2,
  .tech-text h2,
  .use-cases h2,
  .timeline h2,
  .faq h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .brand-content,
  .security-content,
  .tech-content,
  .use-cases-content {
    gap: 28px;
  }

  .feature-icon {
    height: 180px;
    margin-bottom: 16px;
  }

  .feature-card {
    padding: 16px;
  }

  .feature-card h3 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .screenshot-item {
    width: 80px;
  }

  .security-item h3,
  .tech-item h3,
  .usecase-item h3 {
    font-size: 15px;
  }

  .security-item p,
  .tech-item p,
  .usecase-item p {
    font-size: 13px;
  }

  .security-items {
    gap: 16px;
  }

  .faq-question {
    font-size: 14px;
    padding: 12px 0;
  }

  .faq-icon {
    font-size: 20px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-logo {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .footer-logo-img {
    max-width: 100px;
    height: 100%;
  }

  .footer-column h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .footer-column a,
  .footer-column p {
    font-size: 12px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .disclaimer {
    font-size: 11px;
  }

  .copyright {
    font-size: 11px;
  }

  .timeline-item {
    padding-left: 32px;
  }

  .timeline-marker {
    left: -12px;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .screenshot-item {
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 9/20;
  }

  .networks {
    padding: 40px 0;
  }

  .networks h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .networks-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .network-item {
    padding: 16px;
    border-radius: 8px;
  }

  .network-item h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .network-item p {
    font-size: 12px;
  }

  .tokens {
    padding: 40px 0;
  }

  .tokens h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .tokens-intro {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .tokens-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .token-item {
    padding: 10px 6px;
  }

  .token-logo {
    width: 42px;
    height: 42px;
    margin-bottom: 6px;
  }

  .plus-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .token-item h4 {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .token-item p {
    font-size: 9px;
  }
}
