:root{
  --bg-gradient: linear-gradient(180deg,#07122b 0%, #0b2a4a 50%, #0d2540 100%);
  --accent:#4bd1ff;
  --muted:#b7c6d9;
  --card-bg: rgba(255,255,255,0.03);
}
*{box-sizing:border-box}
body{font-family:Inter,system-ui,Segoe UI,Arial,sans-serif;margin:0;color:#eaf3ff;background:var(--bg-gradient);min-height:100vh}
.container{max-width:1100px;margin:0 auto;padding:28px}
.site-header{padding:18px 0}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px}
.logo{display:flex;gap:10px;align-items:center;color:white;text-decoration:none;font-weight:700}
.logo img{height:36px}
.main-nav{display:flex;gap:16px;align-items:center}
.main-nav a{color:var(--muted);text-decoration:none}
.lang-switch{display:flex;gap:8px;align-items:center}
.lang-btn{background:transparent;border:1px solid rgba(255,255,255,0.06);padding:6px 8px;border-radius:8px;color:var(--muted);cursor:pointer}
.lang-btn.active{background:rgba(255,255,255,0.04);color:white}
.hero{padding:48px 0}
.hero-inner{display:flex;gap:28px;align-items:center}
.hero-left{flex:1}
.hero-right{flex:1;display:flex;justify-content:center}
.hero-illustration{max-width:420px;width:100%}
h1{font-size:2.2rem;color:#fff;margin:0 0 12px}
.highlight{color:var(--accent);font-weight:700}
.muted{color:var(--muted)}
.btn{display:inline-block;padding:10px 16px;border-radius:10px;text-decoration:none}
.btn-primary{background:linear-gradient(90deg,#00b4ff,#0066ff);color:white}
.btn-ghost{border:1px solid rgba(255,255,255,0.08);color:var(--muted);background:transparent;padding:8px 12px;border-radius:8px;text-decoration:none}
.key-features{display:flex;gap:12px;list-style:none;padding:0;margin-top:16px;color:var(--muted)}
.airdrops{margin-top:30px;padding-bottom:30px}
.airdrop-card{display:flex;gap:16px;align-items:center;background:var(--card-bg);border-radius:12px;padding:12px;margin-bottom:12px}
.airdrop-avatar{width:72px;height:72px;border-radius:12px;flex-shrink:0;background:rgba(255,255,255,0.04);display:flex;align-items:center;justify-content:center}
.airdrop-meta{flex:1}
.airdrop-title{font-weight:700;color:#fff;margin:0}
.airdrop-desc{color:var(--muted);margin:6px 0}
.airdrop-amount{font-weight:800;font-size:1.08rem;color:#fff}
.sponsors-grid{display:flex;gap:12px;flex-wrap:wrap}
.sponsor{display:flex;gap:8px;align-items:center;background:rgba(255,255,255,0.02);padding:8px;border-radius:10px}
.sponsor img{width:48px;height:48px;border-radius:8px}
.more-note{color:var(--muted);margin-top:10px}
.how{margin-top:30px}
.site-footer{padding:18px 0;margin-top:24px;color:var(--muted)}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.contact-form{max-width:640px;margin-top:12px;display:flex;flex-direction:column;gap:8px}
.contact-form label{display:flex;flex-direction:column;gap:6px;color:var(--muted)}
.form-actions{display:flex;gap:12px;margin-top:8px;align-items:center}
@media(max-width:880px){.hero-inner{flex-direction:column}.main-nav{display:none}.footer-inner{flex-direction:column;gap:8px}.airdrop-avatar{width:60px;height:60px}}
.airdrop-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 15px;
  margin: 15px 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.airdrop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.airdrop-card a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.airdrop-card img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin-right: 15px;
}

.airdrop-info h4 {
  margin: 0;
  font-size: 1.2rem;
}

.airdrop-info p {
  margin: 5px 0 0;
  color: #aaa;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.sponsor {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s;
}

.sponsor:hover {
  transform: scale(1.05);
}

.sponsor img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.sponsor span {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #ddd;
}
