:root {
  --bg: #0e0e12;
  --bg-card: #17171d;
  --accent: #ff6f00;
  --accent-light: #ffb366;
  --text: #f2f2f2;
  --text-muted: #a4a4ad;
  --border: #2a2a33;
  --success: #35d07f;
  --danger: #ff5464;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.5;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-bottom: 1px solid var(--border);
}

.nav .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; }
.nav .brand img { width: 36px; height: 36px; border-radius: 8px; }
.nav .links a { margin-left: 20px; color: var(--text); }
.nav .links a:hover { color: var(--accent-light); }

.hero {
  position: relative;
  padding: 100px 32px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14,14,18,0.4), rgba(14,14,18,0.95)),
    url('https://live.staticflickr.com/65535/55134230060_369847eab8_b.jpg') center/cover no-repeat;
}

.hero img.logo { width: 110px; height: 110px; border-radius: 20px; margin-bottom: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero h1 { font-size: 2.6rem; margin: 0 0 10px; }
.hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  background: var(--accent);
  color: #111;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover { background: var(--accent-light); text-decoration: none; }
.btn.secondary { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn.danger { background: var(--danger); color: #fff; }

.social-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

section { padding: 60px 32px; max-width: 1100px; margin: 0 auto; }
section h2 { font-size: 1.8rem; margin-bottom: 24px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  max-width: 560px;
  margin: 40px auto;
}

.card .user-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.card .user-row img { width: 48px; height: 48px; border-radius: 50%; }

.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 6px; font-weight: 600; }
.field textarea, .field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0e0e12;
  color: var(--text);
  font-family: inherit;
  resize: vertical;
}

.reason-box {
  background: rgba(255,84,100,0.1);
  border: 1px solid rgba(255,84,100,0.3);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.status-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}
.status-pending { background: rgba(255,193,7,0.15); color: #ffc107; }
.status-under_review { background: rgba(100,150,255,0.15); color: #6fa8ff; }
.status-accepted { background: rgba(53,208,127,0.15); color: var(--success); }
.status-denied { background: rgba(255,84,100,0.15); color: var(--danger); }

.error-msg { color: var(--danger); margin-bottom: 16px; }
footer { text-align: center; padding: 40px; color: var(--text-muted); border-top: 1px solid var(--border); }
