body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Top PLAMBAR bar */
.plambar-fr-nav {
  background: #041835;
  color: #f5f5f5;
  box-shadow: 0 10px 25px rgba(0,0,0,0.22);
  margin: 0 0 32px 0;
}

.plambar-fr-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px 10px 24px;
}

.plambar-fr-nav-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.plambar-fr-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.plambar-fr-nav-link {
  text-decoration: none;
  font-size: 15px;
  color: #f1c27a;
  position: relative;
  padding-bottom: 2px;
}

.plambar-fr-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #2a7bff;
  transition: width 0.2s ease-out;
}

.plambar-fr-nav-link:hover::after {
  width: 100%;
}

/* Hero card */
.frm2-hero-card {
  max-width: 900px;
  margin: 0 auto 32px auto;
  padding: 32px 32px 36px 32px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #0d2c5c, #c4943c);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.26);
}

.frm2-hero-label-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.frm2-pill {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(0,0,0,0.35);
}

.frm2-hero-title {
  font-size: 32px;
  font-weight: 700;
  margin: 4px 0 2px 0;
}

.frm2-hero-sub {
  margin: 0 0 20px 0;
  font-size: 14px;
  opacity: 0.92;
}

.frm2-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* Buttons */
.frm2-btn-primary,
.frm2-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 9999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.frm2-btn-primary {
  background: #f1c27a;
  color: #14233b;
}

.frm2-btn-primary:hover {
  filter: brightness(1.05);
}

.frm2-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
}

.frm2-btn-ghost:hover {
  background: rgba(0,0,0,0.15);
}

/* Grid cards */
.frm2-grid {
  max-width: 900px;
  margin: 0 auto 40px auto;
  display: grid;
  gap: 18px;
}

@media (min-width: 840px) {
  .frm2-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

.frm2-grid-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.frm2-grid-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.frm2-link {
  font-size: 14px;
  text-decoration: none;
  color: #245fe4;
}

/* Forms */
.frm2-form-wrap {
  max-width: 720px;
  margin: 0 auto 40px auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 22px 28px 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.frm2-form-wrap h2 {
  margin-top: 0;
}

.frm2-form .frm2-field {
  margin-bottom: 16px;
}

.frm2-field-inline {
  display: flex;
  gap: 16px;
}

.frm2-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.frm2-form input[type="text"],
.frm2-form input[type="date"],
.frm2-form select,
.frm2-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d0d5dd;
  padding: 8px 10px;
  font-size: 14px;
}

/* Alerts */
.frm2-alert-success,
.frm2-alert-error {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 16px;
}

.frm2-alert-success {
  background: #e5f6eb;
  color: #146c2e;
}

.frm2-alert-error {
  background: #fee4e2;
  color: #b42318;
}

/* My events list */
.frm2-list-wrap {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.frm2-event-list {
  display: grid;
  gap: 16px;
}

.frm2-event-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px 18px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.frm2-event-card h3 {
  margin-top: 0;
}

.frm2-event-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}
