/* ── Black Coaches — Goody Bag Plugin Styles ─────────────────────────────── */

/* Login gate */
.bc-gate {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
  background: #0D0D0D;
  min-height: 60vh;
}

.bc-gate__card {
  background: #1A1A1A;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

.bc-gate__eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
  font-weight: 500;
}

.bc-gate__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FAF8F3;
  line-height: 1.15;
  margin: 0 0 14px;
}

.bc-gate__title em {
  color: #C9A84C;
  font-style: normal;
}

.bc-gate__sub {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
  margin: 0 0 24px;
}

.bc-gate__notice {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}

.bc-gate__notice--success {
  background: rgba(92, 200, 120, 0.08);
  border: 1px solid rgba(92, 200, 120, 0.3);
  color: #7DDC9C;
}

.bc-gate__notice--error {
  background: rgba(220, 80, 80, 0.08);
  border: 1px solid rgba(220, 80, 80, 0.3);
  color: #E88080;
}

.bc-gate__notice--warn {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #C9A84C;
}

.bc-gate__label {
  display: block;
  font-size: 12px;
  color: #888;
  text-align: left;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.bc-gate__input-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bc-gate__input {
  flex: 1;
  min-width: 160px;
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: #FAF8F3;
  outline: none;
  transition: border-color 0.15s;
  font-family: inherit;
}

.bc-gate__input::placeholder { color: #444; }
.bc-gate__input:focus { border-color: rgba(201, 168, 76, 0.6); }

.bc-gate__btn {
  background: #C9A84C;
  color: #0D0D0D;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.02em;
}

.bc-gate__btn:hover { background: #E6C060; }
.bc-gate__btn:active { transform: scale(0.97); }
.bc-gate__btn:disabled { background: #444; color: #777; cursor: default; transform: none; }

.bc-gate__footer-note {
  margin: 20px 0 0;
  font-size: 11px;
  color: #444;
  letter-spacing: 0.03em;
}

/* Authenticated bag shell */
.bc-bag {
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

.bc-bag__welcome {
  padding: 24px 0 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 24px;
}

.bc-bag__eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 6px;
}

.bc-bag__title {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FAF8F3;
  margin: 0 0 6px;
}

.bc-bag__title em { color: #C9A84C; font-style: normal; }

.bc-bag__sub {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.bc-bag__sub strong { color: #C9A84C; font-weight: 500; }

.bc-bag__placeholder {
  background: #1A1A1A;
  border: 1px dashed rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.bc-bag__logout {
  text-align: right;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.bc-bag__logout-link {
  font-size: 12px;
  color: #555;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}

.bc-bag__logout-link:hover { color: #C9A84C; }

@media (max-width: 480px) {
  .bc-gate__card { padding: 28px 20px; }
  .bc-gate__title { font-size: 1.8rem; }
  .bc-gate__input-row { flex-direction: column; }
  .bc-gate__btn { width: 100%; }
}
