/* Reset & basics */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #0e0e10; color: #fff; }

/* Container */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Header */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: #1a1a1d;
  position: relative;
  z-index: 10;
}
.header-container .logo { font-weight: 700; font-size: 1.5rem; color: #fff; }
.header-container .logo span { color: #00ff56; }
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
}
.nav-center a { color: #fff; text-decoration: none; font-weight: 600; }
.nav-center a.active, .nav-center a:hover { color: #00ff56; }
.btn-go { background: #00ff56; color: #000; padding: 0.5rem 1rem; border-radius: 6px; font-weight: 600; text-decoration: none; transition: 0.3s; }
.btn-go:hover { background: #00cc44; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 12px;
}

/* Hero background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../de_cbble_s2.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Hero character video */
.hero-video {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 400px;
  width: 40%;
  z-index: 1;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.hero-text { flex: 1; }
.hero-text .verified { display: inline-block; background: #00ff56; color: #000; padding: 0.2rem 0.5rem; border-radius: 4px; margin-bottom: 0.5rem; font-size: 0.85rem; font-weight: 600; }
.hero-text h1 { font-size: 2.5rem; margin: 0.5rem 0; line-height: 1.2; }
.hero-text h1 span { color: #00ff56; }
.hero-text p { margin-bottom: 1.5rem; opacity: 0.85; font-size: 1.1rem; }

/* Promo Card */
.promo-card { position: relative; background: #1a1a1d; padding: 1rem; border-radius: 12px; max-width: 400px; z-index: 1; margin-bottom: 1rem; }
.promo-bg-fade { position: absolute; inset: 0; border-radius: 12px; background: linear-gradient(180deg, rgba(0,255,86,0.2), rgba(0,255,86,0)); z-index: -1; }
.code-box { display: flex; justify-content: space-between; align-items: center; background: #111; padding: 0.5rem; border-radius: 8px; margin-bottom: 1rem; font-weight: 600; color: #00ff56; }
.btn-claim { width: 100%; background: #00ff56; color: #000; padding: 0.6rem; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-claim:hover { background: #00cc44; }
.promo-card small { display: block; margin-top: 0.5rem; color: #aaa; }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; margin-top: 3rem; }
.feature-card { background: #111; padding: 1.5rem; border-radius: 12px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,255,86,0.2); }
.feature-card h3 { color: #00ff56; margin-bottom: 0.5rem; }
.feature-card p { opacity: 0.85; font-size: 0.95rem; }

/* Footer */
footer { text-align: center; padding: 2rem 0; background: #1a1a1d; opacity: 0.8; font-size: 0.9rem; margin-top: 3rem; }
footer a { color: #00ff56; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Responsive */
@media(max-width: 768px){ 
  .hero-content { flex-direction: column; text-align: center; } 
  .hero-video { width: 60%; margin: 0 auto; }
  .nav-center { position: static; transform: none; justify-content: center; margin-top: 1rem; gap: 1rem; flex-wrap: wrap; }
}
