:root{
  --orange:#ff6a00;
  --blue:#0b63ce;
  --bg:#ffffff;
  --text:#111111;
  --muted:#666;
  --border:#e9e9e9;
}

*{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);
}

a{color:var(--blue); text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:1100px; margin:0 auto; padding:0 16px}

.site-header{
  position:fixed; top:0; left:0; right:0;
  background:var(--orange);
  z-index:1000;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:60px;
}
.brand{
  color:#fff; font-weight:800; letter-spacing:.2px;
}
.nav a{
  color:#fff;
  margin-left:14px;
  font-weight:600;
}
.nav a.btn{
  background:#fff;
  color:#111;
  padding:8px 12px;
  border-radius:10px;
}

.main{padding-top:80px; padding-bottom:30px}

.h1{font-size:26px; margin:0 0 12px}
.h2{font-size:18px; margin:20px 0 10px}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
@media (max-width: 900px){
  .grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
}
@media (max-width: 600px){
  .grid{grid-template-columns: 1fr}
}

.card{
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  background:#fff;
}
.card .title{font-weight:800; margin:0 0 6px}
.muted{color:var(--muted); font-size:13px}

.table{
  width:100%;
  border-collapse:collapse;
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
}
.table th,.table td{
  padding:10px;
  border-bottom:1px solid var(--border);
  text-align:left;
}
.table th{background:#fafafa}

.alert{
  padding:12px 14px;
  border-radius:12px;
  margin:0 0 14px;
  border:1px solid var(--border);
}
.alert.success{border-color:#b9e6c9; background:#effcf4}
.alert.error{border-color:#f0b6b6; background:#fff2f2}

.form-row{margin-bottom:12px}
label{display:block; font-weight:700; margin-bottom:6px}
input, textarea, select{
  width:100%;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  outline:none;
}
textarea{min-height:110px; resize:vertical}
button{
  padding:10px 14px;
  border-radius:12px;
  border:0;
  background:var(--blue);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
button.secondary{
  background:#111;
}
.site-footer{
  border-top:1px solid var(--border);
  padding:18px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}


.search-form{
  display:flex; gap:6px;
}
.search-form input{
  border-radius:10px; border:0; padding:8px 10px;
}
.search-form button{
  border-radius:10px;
}

.badge.verified{
  background:#0b63ce;
  color:#fff;
  padding:4px 8px;
  border-radius:8px;
  font-size:12px;
}



.auth-box {
  max-width: 420px;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #eee;
  background: #fff;
}

.auth-form label {
  display: block;
  margin-bottom: 6px;
}

.auth-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
}

.auth-form button {
  width: 100%;
  padding: 10px;
  background: #ff6a00;
  color: #fff;
  border: none;
  cursor: pointer;
}

.divider {
  text-align: center;
  margin: 15px 0;
  color: #888;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #000;
  background: #fff;
}

