:root{
  --bg:#FFD700;
  --ink:#0b0b0b;
  --paper:#ffffff;
  --muted:#2d2d2d;
  --shadow: 0 10px 30px rgba(0,0,0,.15);
  --radius:16px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

.top{
  background: #000;
  color: var(--bg);
  padding: 18px 16px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: var(--shadow);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  max-width: 980px;
  margin:0 auto;
}

.logo{
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  background: var(--bg);
  color:#000;
  border-radius: 12px;
  font-size: 22px;
}

.title h1{
  margin:0;
  letter-spacing: 1px;
  font-size: 22px;
}
.title p{
  margin:4px 0 0;
  opacity:.9;
  font-size: 13px;
}

.cta{
  max-width: 980px;
  margin: 12px auto 0;
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

.wrap{
  max-width: 980px;
  margin: 18px auto 40px;
  padding: 0 16px;
}

.card{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  margin: 14px 0;
}

.hero h2{margin:0 0 8px}
.hero p{margin:0 0 14px; color: var(--muted)}

.badges{display:flex;gap:10px;flex-wrap:wrap}
.badge{
  background: #f7f7f7;
  border: 1px solid #e9e9e9;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
}

label{
  display:block;
  text-align:left;
  font-weight: 600;
  margin: 10px 0;
}
input[type="text"]{
  width:100%;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  margin-top: 6px;
}

.row{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 500;
  margin-top: 12px;
}

.btn{
  border: none;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .08s ease;
}
.btn:active{transform: scale(.99)}
.btn-primary{background:#000;color:var(--bg)}
.btn-ghost{background: transparent; color: var(--bg); border: 1px solid rgba(255,215,0,.35)}
.wide{width:100%; margin-top: 10px}

.hint{margin: 12px 0 0; color: var(--muted); font-size: 14px}
.contact{display:flex;gap:10px;flex-wrap:wrap}
.small{margin: 8px 0 0; font-size: 13px; color: var(--muted)}
.status{margin-top:10px; font-weight:800}

@media (max-width: 720px){
  .cta{justify-content: center}
}
/* Language switch (BG/TR) */
.lang-switch{
  margin-left: auto;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.lang-btn{
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(255,215,0,.35);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 800;
  letter-spacing: .4px;
  cursor: pointer;
}
.lang-btn[aria-pressed="true"]{
  background: var(--bg);
  color: #000;
}
@media (max-width: 720px){
  .lang-switch{justify-content:center; width:100%}
}

/* Google Play app download */
.app-download{
  margin-top: 16px;
  text-align: center;
}
.google-play img{
  max-width: 180px;
  height: auto;
}
