/* Fan gedeelte (mobile-first) */
:root{
  --blue:#0b2a4a;
  --blue2:#0f355c;
  --red:#d64b44;
  --bg:#f3f4f6;
  --text:#1b1f24;
  --muted:#6b7280;
  --border:#e5e7eb;
  --radius:12px;
  --shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

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

.fan a{ color: inherit; }

.fan-topbar{
  height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.fan-logo{ font-weight:700; color:#111; }
.fan-logo img{
  height:22px;
  width:auto;
  display:block;
}

.fan-container{
  max-width:420px;
  margin:0 auto;
  padding:14px 14px 28px;
}

.hero{
  border-radius: var(--radius);
  overflow:hidden;
  background:#111;
  min-height:170px;
  position:relative;
  box-shadow: var(--shadow);
}
.hero img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.70));
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:4px;
}
.hero-title{ color:#fff; font-size:26px; font-weight:800; letter-spacing:.2px; }
.hero-sub{ color:#e5e7eb; font-size:13px; }

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:14px;
  margin-top:12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.info-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:8px 0;
  border-bottom:1px dashed #eef1f4;
}
.info-row:last-child{ border-bottom:0; }
.icon{
  width:26px;
  height:26px;
  border-radius:8px;
  background:#eef3f8;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  color: var(--blue);
  flex: 0 0 26px;
}
.label{ font-size:12px; color: var(--muted); margin:0; }
.value{ font-weight:600; margin:0; }

.section-title{
  font-size:13px;
  font-weight:800;
  letter-spacing:.2px;
  color:#111;
  margin:12px 0 8px;
}
.rules{ margin:0; padding:0; list-style:none; }
.rules li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 0;
  border-bottom:1px solid #f0f2f5;
  color:#374151;
  font-size:14px;
  line-height:1.35;
}
.rules li:last-child{ border-bottom:0; }
.rules .check{
  margin-top:1px;
  width:18px;
  height:18px;
  border-radius:999px;
  border:2px solid #111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  line-height:1;
  color:#111;
  flex:0 0 18px;
}

.btn{
  width:100%;
  border:0;
  border-radius:10px;
  padding:12px 14px;
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 18px rgba(214, 75, 68, 0.20);
}
.btn-primary{ background: var(--red); color:#fff; }
.btn-outline{
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  box-shadow:none;
}
.btn + .btn{ margin-top:10px; }
.cta-buttons{ margin-top:14px; }

.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.form h1{
  font-size:20px;
  margin:2px 0 6px;
}
.form p.sub{
  margin:0 0 12px;
  color: var(--muted);
  font-size:13px;
}

.field{ margin:10px 0; }
.field label{
  display:block;
  font-size:12px;
  color:#374151;
  margin-bottom:6px;
  font-weight:800;
}
.input, select{
  width:100%;
  padding:11px 12px;
  border:1px solid var(--border);
  border-radius:10px;
  outline:none;
  background:#fff;
}
.input:focus, select:focus{
  border-color:#b6c3d3;
  box-shadow: 0 0 0 4px rgba(15, 53, 92, 0.08);
}

.checkbox{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  color:#374151;
  margin-top:12px;
}
.checkbox a{ color: var(--blue2); }
.hint{
  color: var(--muted);
  font-size:12px;
  text-align:center;
  margin-top:10px;
}

.error{
  background:#fff1f2;
  border:1px solid #fecdd3;
  color:#9f1239;
  padding:10px 12px;
  border-radius:10px;
  margin-bottom:12px;
  font-size:13px;
}
.success{
  background:#ecfdf5;
  border:1px solid #a7f3d0;
  color:#065f46;
  padding:10px 12px;
  border-radius:10px;
  margin-bottom:12px;
  font-size:13px;
}

.dashboard-title{
  font-size:18px;
  font-weight:800;
  margin:0 0 10px;
}
.action-list{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
}
.action-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 12px;
  border-bottom:1px solid #f0f2f5;
  text-decoration:none;
  color:inherit;
}
.action-item:last-child{ border-bottom:0; }
.action-left{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.action-icon{
  width:34px;
  height:34px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef3f8;
  color: var(--blue2);
  font-size:16px;
  flex:0 0 34px;
}
.action-icon.danger{ background:#ffe4e6; color:#b91c1c; }
.action-text strong{ display:block; font-size:14px; }
.action-text span{ display:block; font-size:12px; color: var(--muted); margin-top:2px; }
.chev{ color:#9ca3af; }

.data-table{
  margin-top:12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
}
.data-table .row{
  display:flex;
  justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid #f0f2f5;
  font-size:13px;
}
.data-table .row:last-child{ border-bottom:0; }
.data-table .k{ color: var(--muted); }
.data-table .v{ font-weight:700; color:#111; }

.btn-logout{
  margin-top:14px;
  background:transparent;
  border:2px solid var(--red);
  color: var(--red);
  box-shadow:none;
}

.fan-footer{
  text-align:center;
  color: var(--muted);
  font-size:12px;
  padding:16px 0 22px;
}

.link{
  color: var(--red);
  text-decoration:none;
  font-weight:700;
}

.top-back{
  display:flex;
  align-items:center;
  gap:8px;
  color: var(--red);
  text-decoration:none;
  font-weight:800;
  margin-bottom:8px;
}
