/* MoonValve Theme (from DesignSheets) */

/* Base */
body {
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  z-index: 1000;
  padding: 1.1rem 2rem;
}
.nav-container { max-width: 1600px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 800; color: #ff6b35; }
.logo-image { width: 64px; height: 64px;  border: 0px solid #ff6b35; flex-shrink: 0; background-image: url('/images/moonvalve_logo.svg'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.nav-links { display: flex; gap: 2rem; flex: 1 1 auto; justify-content: center; align-items: center; }
.nav-link { color: #fff; text-decoration: none; font-weight: 500; transition: color .3s ease; }
.nav-link:hover, .nav-link.active { color: #ff6b35; }
.connect-btn { background: #ff6b35; color: #fff; padding: .55rem .9rem; border-radius: 10px; text-decoration: none; font-weight: 700; transition: all .3s ease; display: inline-block; text-align: center; border: none; cursor: pointer; max-width: 220px; white-space: nowrap; }
.connect-btn:hover { background: #e55a2b; transform: translateY(-1px); }
.connect-btn.connected { background: #4CAF50; }
.connect-btn.connected:hover { background: #45a049; }
.disconnect-btn { background: #1a1a1a; color: #bbb; padding: .5rem .75rem; border-radius: 8px; border: 1px solid #333; margin-left: .4rem; font-weight: 600; cursor: pointer; }
.disconnect-btn:hover { background: #222; color: #fff; }
.nav-actions { display: flex; align-items: center; gap: .4rem; position: relative; }

/* Wallet Info Panel (overlay above header; does not affect layout width) */
.wallet-info-panel { position: absolute; right: 0; top: 92%; transform: translateY(6px); background: rgba(0,0,0,0.85); border: 1px solid #333; border-radius: 10px; padding: .5rem .75rem; display: inline-flex; flex-direction: column; gap: .15rem; pointer-events: auto; backdrop-filter: blur(4px); box-shadow: 0 6px 18px rgba(0,0,0,0.4); z-index: 1000; transition: transform .25s ease; }
.wallet-info-panel .wallet-toggle { position: absolute; left: -10px; top: 10px; width: 10px; height: 44px; background: #ff6b35; border: 1px solid #333; border-right: none; border-radius: 8px 0 0 8px; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.wallet-info-panel .wallet-toggle:focus { outline: 2px solid #ff9a73; outline-offset: 2px; }
.wallet-info-panel .wallet-line { line-height: 1.1; }
.wallet-info-panel .wallet-username { color: #fff; font-weight: 700; font-size: .9rem; }
.wallet-info-panel .wallet-mask { color: #ddd; font-family: 'Courier New', monospace; font-size: .85rem; }
.wallet-info-panel .wallet-balance { color: #9be18d; font-weight: 700; font-size: .9rem; }
.wallet-info-panel .wallet-balance.xrp-syncing { color: #ff6b6b; }

@media (max-width: 768px) {
  .connect-btn { padding: .45rem .8rem; font-size: .9rem; }
  .disconnect-btn { padding: .45rem .7rem; font-size: .9rem; }
  .wallet-info-panel { transform: translateY(4px); padding: .45rem .6rem; right: 0; }
}
.connect-mobile { display: none; }
.connect-desktop { display: inline; }

/* Burger */
.burger-menu { display: none; flex-direction: column; cursor: pointer; padding: .5rem; gap: .25rem; }
.burger-line { width: 24px; height: 3px; background: #ff6b35; transition: all .3s ease; border-radius: 2px; }
.burger-menu.active .burger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-menu.active .burger-line:nth-child(2) { opacity: 0; }
.burger-menu.active .burger-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10, 10, 10, 0.98); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); z-index: 999; display: none; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; }
.mobile-menu.active { display: flex; }
.mobile-menu-item { color: #fff; text-decoration: none; font-size: 1.5rem; font-weight: 600; padding: 1rem 2rem; border-radius: 8px; transition: all .3s ease; text-align: center; }
.mobile-menu-item:hover { background: rgba(255, 107, 53, 0.1); color: #ff6b35; }

/* Hero */
.hero { min-height: 50vh; display: flex; align-items: center; padding: 4rem 0rem 2rem; position: relative; /*background: radial-gradient(1200px 600px at 20% 30%, rgba(255,107,53,0.06), transparent), radial-gradient(900px 600px at 80% 25%, rgba(255,107,53,0.04), transparent), linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%);*/ }
.hero-container { max-width: 1920px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.5rem; align-items: center; }
.hero-title-box { display: flex; align-items: flex-end; justify-content: center; min-height: 120px; }
.hero-subtitle-box { display: flex; align-items: flex-start; justify-content: center; min-height: 120px; }
.hero-subtitle-box.tight { min-height: 90px; }
.hero-left { z-index: 2; text-align: left; }
.hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.2rem; color: #ccc; margin-bottom: 2.5rem; line-height: 1.6; max-width: 800px; }
.title-highlight { color: #ff6b35; }

/* USP grid (hero feature bullets) */
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 3rem; }
.usp-item { background: rgba(255, 107, 53, 0.08); border: 1px solid rgba(255, 107, 53, 0.2); border-radius: 12px; padding: 1rem; display: flex; align-items: center; gap: 0.75rem; transition: all .3s ease; }
.usp-item:hover { transform: translateY(-2px); border-color: #ff6b35; background: rgba(255, 107, 53, 0.12); }
.usp-icon { width: 20px; height: 20px; background: #ff6b35; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; color: #0a0a0a; }
.usp-text { font-size: .95rem; font-weight: 600; color: #ffffff; }

/* CTAs */
.cta-container { display: flex; gap: 1rem; }
.cta-primary { background: #ff6b35; color: white; padding: 1rem 2rem; border-radius: 12px; font-weight: 700; font-size: 1.1rem; border: none; cursor: pointer; transition: all .3s ease; text-decoration: none; display: inline-block; }
.cta-primary:hover { background: #e55a2b; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3); }
.cta-secondary { color: #cccccc; padding: 1rem 2rem; border: 2px solid #333; border-radius: 12px; background: transparent; font-weight: 600; cursor: pointer; transition: all .3s ease; text-decoration: none; display: inline-block; }
.cta-secondary:hover { border-color: #ff6b35; color: #ff6b35; }

/* Stats dashboard */
.stats-dashboard { background: #1a1a1a; border: 1px solid #333; border-radius: 20px; padding: 2rem; position: relative; width: 100%; }
.stats-dashboard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #ff6b35, transparent); border-radius: 20px 20px 0 0; }
.stats-header { text-align: center; margin-bottom: 2rem; }
.stats-title { font-size: 1.4rem; font-weight: 700; color: #ff6b35; margin-bottom: .5rem; }
.stats-subtitle { color: #888; font-size: .9rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.stat-item { text-align: center; padding: 1.5rem 1rem; background: #262626; border-radius: 12px; border: 1px solid #333; transition: all .3s ease; }
.stat-item:hover { border-color: #ff6b35; transform: translateY(-2px); }
.stat-number { font-size: 2rem; font-weight: 800; color: #ff6b35; display: block; }
.stat-label { font-size: .8rem; color: #888; text-transform: uppercase; font-weight: 600; margin-top: .5rem; }

/* Trust indicators row beneath stats */
.trust-indicators { display: flex; justify-content: center; gap: 2.5rem; margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid #2a2a2a; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: #b0b0b0; font-size: .95rem; }
.trust-icon { width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, #2ecc71 60%, #24a85a 61%); position: relative; }
.trust-icon::after { content: ''; position: absolute; left: 3px; top: 1px; width: 4px; height: 7px; border-right: 2px solid #0a0a0a; border-bottom: 2px solid #0a0a0a; transform: rotate(45deg); }

/* Launches section */
.launches-section { padding: 4rem 2rem; background: #111; }
.section-container { max-width: 1920px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: #888; max-width: 900px; margin: 0 auto; }

/* Ensure H2 titles in launches section are centered even if .section-title elsewhere uses flex */
.launches-section .section-title { display: block; text-align: center; }

/* Search & filters */
.search-filters { background: #1a1a1a; border: 1px solid #333; border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; }
.search-controls { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.controls-row { display: flex; align-items: center; gap: 1rem; }
.search-box { position: relative; flex: 1; min-width: 250px; }
.search-input { width: 100%; background: #262626; border: 2px solid #333; border-radius: 12px; padding: .75rem 1rem .75rem 3rem; color: #fff; font-size: .9rem; transition: all .3s ease; }
.search-input:focus { outline: none; border-color: #ff6b35; }
.search-input::placeholder { color: #666; }
.search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #666; display: flex; align-items: center; }
.status-dropdown { background: #262626; border: 2px solid #333; border-radius: 12px; padding: .75rem 2.5rem .75rem 1rem; color: #fff; font-size: .9rem; cursor: pointer; transition: all .3s ease; appearance: none; min-width: 130px; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e"); background-position: right .75rem center; background-repeat: no-repeat; background-size: 1.5em 1.5em; }
/* Keep create-form selects neutral; ignore .valid/.invalid color states */
.token-form .form-select.valid,
.token-form .form-select.invalid { border-color: #333; background: #262626; color: #fff; }
.status-dropdown:focus { outline: none; border-color: #ff6b35; }
.refresh-btn { background: #ff6b35; border: none; border-radius: 12px; padding: .75rem 1rem; color: #fff; font-weight: 600; cursor: pointer; transition: all .3s ease; display: flex; align-items: center; gap: .5rem; white-space: nowrap; }
.refresh-btn:hover { background: #e55a2b; transform: translateY(-1px); }
.filter-buttons { display: flex; gap: .75rem; flex-wrap: wrap; }
.filter-btn { background: transparent; border: 2px solid #333; border-radius: 12px; padding: .6rem 1rem; color: #ccc; font-size: .85rem; font-weight: 600; cursor: pointer; transition: all .3s ease; white-space: nowrap; }
.filter-btn:hover { border-color: #ff6b35; color: #ff6b35; }
.filter-btn.active { background: #ff6b35; border-color: #ff6b35; color: #fff; }
.results-count { color: #888; font-size: .85rem; white-space: nowrap; margin-left: auto; }

/* Launch cards */
.launches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; max-width: 1470px; margin-left: auto; margin-right: auto; }

/* History grid specific styling - maximum 3 columns, minimum 450px per card */
.launches-grid.history-grid { 
  max-width: none !important; 
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Default: 1 column for safety */
  grid-template-columns: 1fr;
}

/* 3 columns on wide screens (3 * 450px + 2 * 1.5rem gap = 1353px minimum) */
@media (min-width: 1400px) {
  .launches-grid.history-grid { 
    grid-template-columns: 1fr 1fr 1fr; 
  }
}

/* 2 columns on medium screens (2 * 450px + 1 * 1.5rem gap = 901.5px minimum) */
@media (min-width: 950px) and (max-width: 1399px) {
  .launches-grid.history-grid { 
    grid-template-columns: 1fr 1fr; 
  }
}

/* 1 column on smaller screens */
@media (max-width: 949px) {
  .launches-grid.history-grid { 
    grid-template-columns: 1fr; 
  }
}
.launch-card { background: #111; border: 1px solid #333; border-radius: 16px; padding: 1.5rem; transition: all .3s ease; position: relative; overflow: hidden; }
.launch-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; width: auto; background: linear-gradient(90deg, transparent, #ff6b35, transparent); transition: none; }
.launch-card:hover::before { left: 0; }
.launch-card:hover { transform: translateY(-4px); border-color: #ff6b35; }
.launch-card.completed::before { background: linear-gradient(90deg, transparent, #4CAF50, transparent); }
.launch-card.failed::before { background: linear-gradient(90deg, transparent, #f44336, transparent); }
.launch-card .card-header { display:flex; align-items:center; gap: 12px; margin-bottom: 14px; padding-right: 100px; }
.launch-card .card-logo { width: 44px; height: 44px; border-radius: 10px; background: #222; object-fit: cover; border: 1px solid #333; }
.launch-card .card-title h3 { margin:0; font-size: 1.05rem; font-weight: 800; }
.launch-card .card-symbol { display:inline-block; margin-top: 2px; font-size: .7rem; padding: 2px 6px; border-radius: 6px; background: #ff6b35; color:#0a0a0a; font-weight: 800; }
/* Status pill styling aligned with preview */
.card-status { position: absolute; top: 14px; right: 14px; font-size: 12px; letter-spacing:.04em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; border:1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); }
.card-status.status-active { color: #ff6b35; border-color: rgba(255,107,53,0.5); background: rgba(255,107,53,0.12); }
.card-status.status-completed { color: #4CAF50; border-color: rgba(76,175,80,0.5); background: rgba(76,175,80,0.12); }
.card-status.status-failed { color: #f44336; border-color: rgba(244,67,54,0.5); background: rgba(244,67,54,0.12); }
.launch-header { margin-top: 160px; display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.launch-info { display: flex; align-items: center; gap: .75rem; }
.token-icon { width: 40px; height: 40px; border-radius: 8px; background: #333; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.token-details h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .25rem; }
.token-symbol { background: #ff6b35; color: #fff; padding: .25rem .5rem; border-radius: 4px; font-size: .75rem; font-weight: 600; }
.status-badge { padding: .5rem 1rem; border-radius: 20px; font-size: .8rem; font-weight: 600; text-transform: uppercase; }
.status-badge.active { background: rgba(255, 107, 53, 0.2); color: #ff6b35; border: 1px solid #ff6b35; }
.status-badge.completed { background: rgba(76, 175, 80, 0.2); color: #4CAF50; border: 1px solid #4CAF50; }
.status-badge.failed { background: rgba(244, 67, 54, 0.2); color: #f44336; border: 1px solid #f44336; }
.launch-progress { margin: 1.5rem 0; }
.progress-info { display: flex; justify-content: space-between; margin-bottom: .5rem; }
.progress-amount { font-weight: 700; }
.progress-percentage { font-weight: 700; color: #ff6b35; }
.card-progress .progress-info .progress-percentage { color: inherit; }
.progress-bar { height: 8px; background: #333; border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: #ff6b35; transition: width .3s ease; width: var(--progress, 0%); }
/* Progress meta: shows goal and remaining/over info beneath bar */
.progress-meta { display: flex; justify-content: space-between; gap: .75rem; margin-top: .4rem; font-size: .85rem; color: #aaa; }
.progress-meta .goal { color: #bbb; }
.progress-meta .goal-status.remaining { color: #ffcf99; }
.progress-meta .goal-status.over { color: #78e08f; }
.launch-stats { display: flex; justify-content: space-between; color: #888; font-size: .9rem; }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: .5rem; margin-top: 3rem; flex-wrap: wrap; }
.pagination-btn { background: transparent; border: 2px solid #333; color: #ccc; padding: .75rem 1rem; border-radius: 8px; cursor: pointer; transition: all .3s ease; font-weight: 600; font-size: .9rem; text-decoration: none; }
.pagination-btn:hover:not(.disabled) { border-color: #ff6b35; color: #ff6b35; }
.pagination-btn.disabled { opacity: .5; cursor: not-allowed; }
.pagination-numbers { display: flex; gap: .25rem; align-items: center; }
.pagination-number { background: transparent; border: 2px solid #333; color: #ccc; width: 40px; height: 40px; border-radius: 8px; cursor: pointer; transition: all .3s ease; font-weight: 600; font-size: .9rem; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.pagination-number:hover { border-color: #ff6b35; color: #ff6b35; }
.pagination-number.active { background: #ff6b35; border-color: #ff6b35; color: #fff; }
.pagination-ellipsis { color: #666; padding: 0 .5rem; font-weight: bold; }

/* Footer */
.footer { background: #111; border-top: 1px solid #333; padding: 3rem 2rem 2rem; margin-top: 4rem; }
.footer-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-section h4 { color: #ff6b35; font-weight: 700; margin-bottom: 1rem; }
.footer-section p { color: #888; line-height: 1.6; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #888; text-decoration: none; transition: color .3s ease; }
.footer-links a:hover { color: #ff6b35; }
.social-icons { display: flex; gap: .75rem; margin-top: 1rem; }
.social-icon { color: #ff6b35; text-decoration: none; transition: all .3s ease; display: flex; align-items: center; width: 28px; height: 28px; justify-content: center; }
.social-icon:hover { color: #e55a2b; transform: translateY(-2px); }
.twitter-icon { background: #ff6b35; mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z'/%3e%3c/svg%3e") no-repeat; -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z'/%3e%3c/svg%3e") no-repeat; mask-size: contain; -webkit-mask-size: contain; }
.telegram-icon { background: #ff6b35; mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/%3e%3c/svg%3e") no-repeat; -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/%3e%3c/svg%3e") no-repeat; mask-size: contain; -webkit-mask-size: contain; }
.footer-bottom { border-top: 1px solid #333; padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; color: #666; font-size: .9rem; }
.footer-bottom .heart { color: #ff6b35; }

/* Create page helpers */
.wallet-connection-state { background: #111; border-radius: 20px; padding: 3rem; text-align: center; margin-bottom: 3rem; border: 1px solid #333; }
.connection-icon { width: 120px; height: 120px; background: rgba(255, 107, 53, 0.1); border: 2px solid #ff6b35; border-radius: 50%; margin: 0 auto 2rem; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.connection-title { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; color: #ff6b35; }
.connection-subtitle { font-size: 1.1rem; color: #888; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.connection-benefits { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.benefit-item { background: rgba(255, 107, 53, 0.08); border: 1px solid rgba(255, 107, 53, 0.2); border-radius: 12px; padding: 1rem; display: flex; align-items: center; gap: 0.75rem; transition: all .3s ease; text-align: left; }
.benefit-item:hover { transform: translateY(-2px); border-color: #ff6b35; background: rgba(255, 107, 53, 0.12); }
.benefit-icon { width: 20px; height: 20px; background: #ff6b35; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; color: #0a0a0a; }
.benefit-title { font-size: .95rem; font-weight: 600; color: #ffffff; margin-bottom: 0.25rem; }
.benefit-description { font-size: .85rem; color: #ccc; line-height: 1.4; }
.token-creation-form { display: none; max-width: 1400px; margin: 0 auto; }
.token-creation-form.connected { display: block; }
.form-layout { display: grid; grid-template-columns: 1fr 350px; gap: 2rem; align-items: start; }
.form-section { background: #111; border: 1px solid #333; border-radius: 16px; padding: 2rem; margin-bottom: 2rem; }
.section-title { font-size: 1.5rem; font-weight: 700; color: #ff6b35; margin-bottom: .5rem; display: flex; align-items: center; gap: .75rem; }

/* Floating elements */
.floating-elements { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden; }
.floating-circle { position: absolute; border-radius: 50%; background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 143, 101, 0.02)); animation: float 8s ease-in-out infinite; }
.floating-circle:nth-child(1) { width: 120px; height: 120px; top: 15%; right: 10%; animation-delay: 0s; }
.floating-circle:nth-child(2) { width: 180px; height: 180px; bottom: 25%; left: 8%; animation-delay: 3s; }
.floating-circle:nth-child(3) { width: 100px; height: 100px; top: 50%; right: 25%; animation-delay: 6s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); opacity: .3; } 50% { transform: translateY(-30px) rotate(180deg); opacity: .6; } }

/* Responsive */
@media (max-width: 1024px) {

  .hero-container { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .hero-title { font-size: 3rem; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .section-title { font-size: 2rem; }
}
@media (max-width: 768px) {
  .nav { padding: .6rem 1rem; }
  .nav-container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; width: 100%; }
  .logo { font-size: 0; justify-self: start; }
  .logo-image { width: 35px; height: 35px; }
  .nav-links { display: none; }
  .connect-btn { padding: .5rem 1rem; font-size: .9rem; justify-self: center; white-space: nowrap; }
  .connect-mobile { display: inline; }
  .connect-desktop { display: none; }
  .burger-menu { display: flex; justify-self: end; }
  .hero { min-height: 20vh; padding: 5rem 1rem 1rem; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .usp-grid { grid-template-columns: 1fr; gap: .75rem; margin-bottom: 2rem; }
  .connection-benefits { grid-template-columns: 1fr; gap: .75rem; }
  .cta-container { flex-direction: column; }
  .search-filters { padding: 1rem; }
  .search-controls { display: grid; grid-template-columns: 1fr; gap: .75rem; margin-bottom: .75rem; }
  .controls-row { gap: .5rem; }
  .results-count { margin-left: 0; text-align: center; font-size: .8rem; padding: .5rem 0; }
  .status-dropdown { flex: 1; min-width: auto; padding: .75rem 2rem .75rem .75rem; font-size: .9rem; }
  .refresh-btn { padding: .75rem 1rem; font-size: .9rem; flex: 1; min-width: auto; display: flex; align-items: center; justify-content: center; }
  .filter-btn { flex: 1; padding: .5rem .5rem; font-size: .8rem; border-radius: 10px; text-align: center; }
  .launches-grid { grid-template-columns: 1fr; gap: 1rem; }
  .launches-grid.history-grid { grid-template-columns: 1fr; gap: 1rem; margin-left: 0; margin-right: 0; }
  .launch-card { padding: 1.25rem; }
  .token-icon { width: 35px; height: 35px; font-size: 1rem; }
  .token-details h3 { font-size: 1rem; text-align: left; }
  .token-symbol { font-size: .7rem; padding: .2rem .4rem; }
  .status-badge { padding: .4rem .8rem; font-size: .75rem; }
  .progress-info { font-size: .9rem; }
  .launch-stats { font-size: .85rem; }
  .pagination { margin-top: 2rem; gap: .25rem; }
  .pagination-btn { padding: .6rem .8rem; font-size: .8rem; }
  .pagination-number { width: 35px; height: 35px; font-size: .8rem; }
  .footer { padding: 2rem 1rem 1.5rem; }
  .footer-container { grid-template-columns: 1fr; text-align: left; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; font-size: .85rem; padding-top: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
}


