:root {
  --primary: #c8a2ff;
  --primary-dark: #9b59b6;
  --accent: #00f5ff;
  --accent2: #ff00e5;
  --dark: #0a0a1a;
  --darker: #050510;
  --gold: #ffd700;
  --text: #e0e0e0;
  --text-light: #b0b0c0;
  --color-brand: #c8a2ff;
  --color-brand-dark: #9b59b6;
  --color-brand-soft: rgba(200, 162, 255, 0.1);
  --color-accent: #00f5ff;
  --color-muted: #b0b0c0;
  --color-danger: #f06f6f;
  --color-success: #00e676;
  --color-warning: #ffd700;
  --shadow-panel: 0 28px 80px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  font-family: 'Raleway', sans-serif;
}

body {
  margin: 0;
  color: var(--text);
  overflow-x: hidden;
}

/* ===== ADMIN PAGE BACKGROUND ===== */
.admin-page {
  min-height: 100vh;
  background: var(--darker);
  color: var(--text);
}

/* ===== ADMIN LAYOUT - SIDEBAR FIXED ===== */

/* Sidebar - fixed left on desktop */
.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background: #08081a;
  border-right: 1px solid rgba(200, 162, 255, 0.08);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.sidebar-header {
  display: flex;
  align-items: center;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(200, 162, 255, 0.06);
  min-height: 64px;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--accent, #00f5ff);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.sidebar-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.sidebar-nav {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(224, 224, 224, 0.5);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.sidebar-link:hover {
  background: rgba(200, 162, 255, 0.06);
  color: rgba(224, 224, 224, 0.85);
}

.sidebar-link.active {
  background: rgba(200, 162, 255, 0.1);
  color: var(--primary, #c8a2ff);
  font-weight: 600;
}

.sidebar-link--danger {
  color: rgba(240, 111, 111, 0.45);
}

.sidebar-link--danger:hover {
  background: rgba(240, 111, 111, 0.06);
  color: rgba(240, 111, 111, 0.8);
}

.sidebar-footer {
  padding: 12px 10px;
  border-top: 1px solid rgba(200, 162, 255, 0.06);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  margin-bottom: 2px;
}

.sidebar-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary, #c8a2ff), #9b59b6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.sidebar-user-info {
  overflow: hidden;
  min-width: 0;
}

.sidebar-user-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(224, 224, 224, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user-email {
  font-size: 0.7rem;
  color: rgba(224, 224, 224, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Top bar */
.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  height: 64px;
  background: rgba(8, 8, 26, 0.85);
  border-bottom: 1px solid rgba(200, 162, 255, 0.06);
  backdrop-filter: blur(12px);
  margin-left: 250px;
}

.sidebar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(224, 224, 224, 0.5);
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
}

.sidebar-toggle:hover {
  background: rgba(200, 162, 255, 0.06);
  color: var(--primary, #c8a2ff);
}

.topbar-center {
  flex: 1;
  min-width: 0;
}

.topbar-title {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(224, 224, 224, 0.45);
  text-decoration: none;
  transition: all 0.15s;
}

.topbar-icon-btn:hover {
  background: rgba(200, 162, 255, 0.06);
  color: var(--primary, #c8a2ff);
}

/* Main content */
.admin-main {
  padding: 24px;
  margin-left: 250px;
  min-height: calc(100vh - 64px);
  background: #050510;
}

/* Overlay for mobile */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ===== STATS ===== */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(15, 15, 35, 0.6);
  border: 1px solid rgba(200, 162, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.stat-card:hover {
  border-color: rgba(200, 162, 255, 0.12);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon--purple {
  background: rgba(200, 162, 255, 0.1);
  color: var(--primary, #c8a2ff);
}

.stat-icon--cyan {
  background: rgba(0, 245, 255, 0.08);
  color: var(--accent, #00f5ff);
}

.stat-icon--green {
  background: rgba(46, 213, 115, 0.08);
  color: #2ed573;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  color: rgba(224, 224, 224, 0.35);
  font-weight: 500;
  margin-top: 2px;
}

/* ===== SECTIONS ===== */
.admin-section {
  margin-bottom: 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.section-header h2 {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(224, 224, 224, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-badge {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  color: rgba(224, 224, 224, 0.3);
  background: rgba(200, 162, 255, 0.05);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(200, 162, 255, 0.06);
}

/* ===== CREATE FORM ===== */
.create-event-form {
  padding: 14px 18px;
  background: rgba(15, 15, 35, 0.6);
  border: 1px solid rgba(200, 162, 255, 0.06);
  border-radius: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.form-field label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(224, 224, 224, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-field--action {
  flex-shrink: 0;
}

.form-field--action label {
  display: none;
}

/* ===== EVENTS LIST ===== */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(15, 15, 35, 0.4);
  border: 1px solid rgba(200, 162, 255, 0.04);
  border-radius: 10px;
  transition: all 0.15s;
  gap: 14px;
}

.event-row:hover {
  border-color: rgba(200, 162, 255, 0.1);
  background: rgba(15, 15, 35, 0.7);
}

.event-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.event-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(200, 162, 255, 0.08);
  border: 1px solid rgba(200, 162, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary, #c8a2ff);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.event-details {
  min-width: 0;
}

.event-details h3 {
  margin: 0 0 2px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: rgba(224, 224, 224, 0.3);
  font-family: 'Raleway', sans-serif;
}

.meta-item svg {
  flex-shrink: 0;
  opacity: 0.4;
}

.event-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  text-align: center;
}

.empty-state h3 {
  margin: 12px 0 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--text, #e0e0e0);
}

.empty-state p {
  margin: 0;
  color: rgba(224, 224, 224, 0.3);
  font-size: 0.82rem;
}

/* ===== BUTTONS ===== */
.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1px solid rgba(200, 162, 255, 0.18);
  border-radius: 8px;
  background: transparent;
  color: var(--primary, #c8a2ff);
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-outline-brand:hover {
  background: rgba(200, 162, 255, 0.06);
  border-color: var(--primary, #c8a2ff);
  color: #fff;
}

.btn-sm {
  padding: 5px 10px !important;
  font-size: 0.78rem !important;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(240, 111, 111, 0.12);
  border-radius: 8px;
  background: transparent;
  color: rgba(240, 111, 111, 0.4);
  cursor: pointer;
  transition: all 0.15s;
  padding: 0;
}

.btn-icon--danger:hover {
  background: rgba(240, 111, 111, 0.06);
  border-color: rgba(240, 111, 111, 0.25);
  color: rgba(240, 111, 111, 0.8);
}

/* ===== SETTINGS PAGE ===== */
.settings-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.settings-page-header h1 {
  margin: 0 0 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(224, 224, 224, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.settings-page-subtitle {
  margin: 0;
  color: rgba(224, 224, 224, 0.25);
  font-size: 0.82rem;
  font-family: 'Raleway', sans-serif;
}

.admin-back {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  color: var(--primary, #c8a2ff);
  text-decoration: none;
  font-weight: 500;
}

.admin-back:hover {
  color: #fff;
}

/* Settings tabs */
.settings-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  background: rgba(15, 15, 35, 0.5);
  border: 1px solid rgba(200, 162, 255, 0.06);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
}

.settings-tabs .settings-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(224, 224, 224, 0.4);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
}

.settings-tabs .settings-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary, #c8a2ff), #9b59b6);
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: 8px;
  z-index: 0;
}

.settings-tabs .settings-tab:hover {
  color: rgba(224, 224, 224, 0.7);
}

.settings-tabs .settings-tab:hover::before {
  opacity: 0.06;
}

.settings-tabs .settings-tab.active {
  color: #fff;
  box-shadow: 0 2px 10px rgba(200, 162, 255, 0.15);
}

.settings-tabs .settings-tab.active::before {
  opacity: 1;
}

.settings-tabs .settings-tab svg,
.settings-tabs .settings-tab span {
  position: relative;
  z-index: 1;
}

.settings-tabs .settings-tab svg {
  flex-shrink: 0;
}

.settings-panel {
  display: none;
}

.settings-panel.active {
  display: block;
  animation: panel-fade 0.25s ease;
}

@keyframes panel-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Settings cards */
.settings-card {
  padding: 18px;
  border: 1px solid rgba(200, 162, 255, 0.06);
  border-radius: 12px;
  background: rgba(15, 15, 35, 0.6);
  margin-bottom: 14px;
}

.settings-card-header {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200, 162, 255, 0.04);
}

.settings-card-header h2 {
  margin: 0 0 3px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.settings-card-desc {
  margin: 0;
  color: rgba(224, 224, 224, 0.3);
  font-size: 0.78rem;
  font-family: 'Raleway', sans-serif;
}

/* Settings form */
.settings-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.settings-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.settings-form-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.settings-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.settings-field--full {
  grid-column: 1 / -1;
}

.settings-field label {
  color: rgba(224, 224, 224, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.settings-field--checkbox {
  flex-direction: row;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(224, 224, 224, 0.45);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary, #c8a2ff);
  cursor: pointer;
}

.settings-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 162, 255, 0.04);
}

/* Danger button */
.btn-outline-danger {
  border: 1px solid rgba(240, 111, 111, 0.15);
  background: transparent;
  color: rgba(240, 111, 111, 0.6);
  font-weight: 600;
  border-radius: 8px;
  padding: 5px 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-outline-danger:hover {
  border-color: rgba(240, 111, 111, 0.3);
  background: rgba(240, 111, 111, 0.06);
  color: rgba(240, 111, 111, 0.9);
}

/* Settings table */
.settings-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(200, 162, 255, 0.04);
}

/* Login footer */
.login-footer {
  text-align: center;
  margin-top: 16px;
}

.login-footer a {
  color: var(--primary, #c8a2ff);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.login-footer a:hover {
  color: var(--accent, #00f5ff);
}

.forgot-text {
  color: rgba(224, 224, 224, 0.45);
  font-size: 0.88rem;
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.5;
}

.admin-login-page {
  min-height: 100vh;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-topbar {
    margin-left: 0;
  }

  .admin-main {
    margin-left: 0;
  }

  .sidebar-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .event-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .admin-main {
    padding: 16px;
  }

  .admin-topbar {
    padding: 0 16px;
  }
}

/* ===== EVENT DETAIL ===== */
.event-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.event-title {
  margin: 8px 0 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.event-desc {
  margin: 0;
  color: rgba(224, 224, 224, 0.35);
  font-size: 0.85rem;
  font-family: 'Raleway', sans-serif;
}

.event-actions {
  display: flex;
  gap: 8px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Raleway', sans-serif;
}

.admin-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(224, 224, 224, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(200, 162, 255, 0.06);
}

.admin-table td {
  padding: 12px 14px;
  font-size: 0.85rem;
  color: rgba(224, 224, 224, 0.7);
  border-bottom: 1px solid rgba(200, 162, 255, 0.03);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: rgba(200, 162, 255, 0.02);
}

.admin-link {
  color: var(--primary, #c8a2ff);
  text-decoration: none;
  font-size: 0.78rem;
  font-family: 'Raleway', sans-serif;
}

.admin-link:hover {
  color: #fff;
}

.inline-form {
  display: flex;
  gap: 6px;
  align-items: center;
}

.form-select {
  padding: 6px 10px;
  border: 1px solid rgba(200, 162, 255, 0.12);
  border-radius: 8px;
  background: rgba(15, 15, 35, 0.8);
  color: rgba(224, 224, 224, 0.7);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.15s;
}

.form-select:focus {
  border-color: var(--primary, #c8a2ff);
}

.form-select-sm {
  padding: 4px 8px;
  font-size: 0.78rem;
}

.form-control {
  padding: 8px 12px;
  border: 1px solid rgba(200, 162, 255, 0.12);
  border-radius: 8px;
  background: rgba(15, 15, 35, 0.8);
  color: rgba(224, 224, 224, 0.8);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.15s;
}

.form-control:focus {
  border-color: var(--primary, #c8a2ff);
}

.form-control-sm {
  padding: 4px 8px;
  font-size: 0.78rem;
}

.form-control::placeholder {
  color: rgba(224, 224, 224, 0.2);
}

.password-input-wrap {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(224, 224, 224, 0.3);
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s;
}

.toggle-password:hover {
  color: var(--primary, #c8a2ff);
}

.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

.pill--ok {
  background: rgba(46, 213, 115, 0.1);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.15);
}

.pill--warn {
  background: rgba(255, 165, 2, 0.1);
  color: #ffa502;
  border: 1px solid rgba(255, 165, 2, 0.15);
}

.pill--danger {
  background: rgba(240, 111, 111, 0.1);
  color: #f06f6f;
  border: 1px solid rgba(240, 111, 111, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, rgba(200, 162, 255, 0.15), rgba(155, 89, 182, 0.1));
  color: var(--primary, #c8a2ff);
  border: 1px solid rgba(200, 162, 255, 0.2);
}

.btn-gold:hover {
  background: linear-gradient(135deg, rgba(200, 162, 255, 0.2), rgba(155, 89, 182, 0.15));
  border-color: var(--primary, #c8a2ff);
  color: #fff;
}

.btn-sm {
  padding: 5px 10px !important;
  font-size: 0.78rem !important;
}

.admin-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary, #c8a2ff);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.15s;
}

.admin-back:hover {
  color: #fff;
}

.admin-kicker {
  margin: 0 0 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(224, 224, 224, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-muted {
  margin: 0;
  color: rgba(224, 224, 224, 0.35);
  font-size: 0.85rem;
  font-family: 'Raleway', sans-serif;
}

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

.table-responsive {
  overflow-x: auto;
}

@media (max-width: 768px) {
  .event-header {
    flex-direction: column;
  }

  .event-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .inline-form {
    flex-direction: column;
    align-items: stretch;
  }
}
