:root {
  --gold1: #ffd86b;
  --gold2: #f5b800;
  --accent: #1a5fd8;
  --primary: #22c55e;
}

* { box-sizing: border-box; margin:0; padding:0; font-family:'Poppins',sans-serif; }

body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  color:#fff;
  background:
    linear-gradient(180deg, rgba(255,216,107,0.92), rgba(245,184,0,0.92)),
    url('assets/dofus-bg.jpg') center/cover no-repeat fixed;
}

.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 36px;
  background: rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);
  z-index:5;
}

.logo{ font-size:30px; font-weight:700; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.25); }

.top-nav .btn{
  margin-left:10px;
  padding:8px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.6);
  background:transparent;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:all .18s;
}
.top-nav .btn:hover{ background:rgba(255,255,255,0.92); color:#111; }

.landing-main{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:48px 20px;
  text-align:center;
}

.landing-content{
  width:100%;
  max-width:720px;
  padding:36px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

.title{
  font-size:64px;
  font-weight:800;
  color:#fff;
  margin-bottom:12px;
  letter-spacing:1px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.4);
}

.subtitle{
  font-size:20px;
  margin-bottom:22px;
  opacity:0.95;
}
.kamas{ color:#ffd86b; font-weight:700; }

.features{ list-style:none; display:flex; justify-content:center; gap:16px; flex-wrap:wrap; margin-bottom:30px; font-weight:600; }
.features li{
  background: rgba(255,255,255,0.12);
  padding:8px 12px;
  border-radius:10px;
  color:#fff;
}

.btn{ padding:10px 16px; border-radius:12px; cursor:pointer; font-weight:700; border:none; }
.btn.primary{
  background: linear-gradient(90deg, var(--primary), #16a34a);
  color:#062016;
  padding:14px 28px;
  font-size:16px;
  box-shadow: 0 8px 22px rgba(18,83,36,0.22);
  transition: transform .15s, filter .15s;
}
.btn.primary:hover{ transform: translateY(-3px); filter:brightness(1.06); }

.footer{ text-align:center; padding:14px 8px; font-size:13px; color:rgba(255,255,255,0.85); }

@media (max-width:760px){
  .title{ font-size:44px; }
  .landing-content{ padding:22px; margin:0 12px; }
  .features{ gap:8px; }
}
