/* ==========================================================================
   CSS Variables & Theming
   ========================================================================== */
:root {
  /* Color Palette - Light Mode Default */
  --bg-color: #f7fafc;
  --bg-surface: #ffffff;
  --text-main: #1a202c;
  --text-muted: #718096;
  --border-color: #e2e8f0;
  
  /* Brand Colors */
  --color-primary: #1e3a8a; /* Deep Navy */
  --color-primary-light: #3b82f6; /* Blue Accent */
  --color-primary-dark: #1e40af;
  
  /* Utilities */
  --color-danger: #ef4444;
  --color-success: #10b981;
  --color-warning: #f59e0b;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Layout */
  --bottom-nav-height: 64px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  /* Shadows - Soft and premium */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-up: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Opt-in to light-dark() where supported */
  color-scheme: light dark;
}

/* Dark Mode Overrides */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #0f172a; /* Deeper navy/slate for dark mode bg */
    --bg-surface: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #334155;
    
    --color-primary: #3b82f6; /* Lighter blue for better contrast in dark mode */
    --color-primary-light: #60a5fa;
    --color-primary-dark: #2563eb;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-up: 0 -4px 6px -1px rgba(0, 0, 0, 0.4);
  }
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  /* Prevent overscroll bounce on mobile to feel more app-like */
  overscroll-behavior-y: none;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: 16px; /* Prevents iOS zoom on focus */
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: var(--spacing-sm);
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh; /* Use dynamic viewport height for mobile */
}

.app-container.hidden {
  display: none;
}

.main-content {
  flex: 1;
  overflow-y: auto;
  padding-bottom: calc(var(--bottom-nav-height) + var(--spacing-lg));
  position: relative;
}

.view {
  padding: var(--spacing-lg) var(--spacing-md);
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
}

.view-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.view-header.with-back {
  justify-content: flex-start;
  gap: var(--spacing-sm);
}

/* ==========================================================================
   UI Components
   ========================================================================== */
/* Cards */
.card {
  background-color: var(--bg-surface);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card:active {
  transform: scale(0.98);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-primary:active {
  background-color: var(--color-primary-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-danger {
  background-color: var(--color-danger);
  color: #ffffff;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: var(--border-radius-sm);
}

.w-full {
  width: 100%;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.btn-circle.primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-circle.primary span {
  font-size: 32px;
}

/* Form Elements */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--spacing-xs);
}

input[type="text"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-color);
  color: var(--text-main);
  transition: border-color var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
}

/* Custom Slider (Range) */
.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border-color);
  outline: none;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

/* Utility */
.hidden {
  display: none !important;
}

.helper-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--spacing-xs);
}

/* ==========================================================================
   Splash Screen
   ========================================================================== */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.splash-content {
  text-align: center;
  color: white;
}

.splash-icon {
  font-size: 80px;
  margin-bottom: var(--spacing-md);
  animation: bounce 2s infinite;
}

.splash-title {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-xl);
}

.loader {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ==========================================================================
   Bottom Navigation
   ========================================================================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--bottom-nav-height);
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom); /* iOS safe area */
  box-shadow: var(--shadow-up);
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex: 1;
  height: 100%;
  transition: color var(--transition-fast);
}

.nav-item span.material-symbols-rounded {
  font-size: 24px;
  margin-bottom: 2px;
}

.nav-item span:not(.material-symbols-rounded) {
  font-size: 10px;
  font-weight: 500;
}

.nav-item.active {
  color: var(--color-primary);
}

.nav-item.active span.material-symbols-rounded {
  font-variation-settings: 'FILL' 1;
}

/* ==========================================================================
   Home View Specifics
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-md) var(--spacing-xs);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

.icon-accent {
  color: var(--color-primary-light);
  font-size: 28px;
  margin-bottom: var(--spacing-xs);
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.section-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

.song-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.song-card-info h4 {
  margin: 0 0 4px 0;
  font-size: 1rem;
}

.song-card-stats {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  gap: var(--spacing-sm);
}

/* ==========================================================================
   Song List View Specifics
   ========================================================================== */
.search-bar {
  display: flex;
  align-items: center;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 8px 16px;
  margin-bottom: var(--spacing-lg);
}

.search-bar input {
  border: none;
  background: transparent;
  padding: 4px 8px;
  flex: 1;
}

.search-bar input:focus {
  outline: none;
}

.search-bar span {
  color: var(--text-muted);
}

/* ==========================================================================
   Song Detail View Specifics
   ========================================================================== */
.mastery-section {
  background-color: var(--bg-surface);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  border: 1px solid var(--border-color);
}

.mastery-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

#mastery-value-display {
  color: var(--color-primary);
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: var(--spacing-md);
}

.tab-btn {
  flex: 1;
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
}

.tab-btn.active {
  color: var(--color-primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 3px 3px 0 0;
}

.audio-controls {
  text-align: center;
}

.part-selector {
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.file-upload-section {
  padding: var(--spacing-xl) 0;
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-md);
}

.progress-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.progress-container input {
  flex: 1;
}

.progress-container span {
  font-size: 0.875rem;
  color: var(--text-muted);
  min-width: 40px;
}

.playback-controls {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.speed-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.custom-select.small {
  width: auto;
  padding: 6px 12px;
}

/* Record Tab Specifics */
.star-rating {
  display: flex;
  gap: 4px;
}

.star-rating .star {
  font-size: 32px;
  color: var(--border-color);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.star-rating .star.active {
  color: var(--color-warning);
  font-variation-settings: 'FILL' 1;
}

.record-item {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
}
.record-item:last-child {
  border-bottom: none;
}

/* Memo Tab */
.memo-textarea {
  min-height: 200px;
  resize: vertical;
  margin-bottom: var(--spacing-sm);
}

.save-indicator {
  font-size: 0.875rem;
  color: var(--color-success);
  text-align: right;
  opacity: 0;
  transition: opacity 0.3s;
}

.save-indicator.show {
  opacity: 1;
}

/* ==========================================================================
   Stats View Specifics
   ========================================================================== */
.stats-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.chart-card h3 {
  font-size: 1rem;
  text-align: center;
  margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   Schedule View — Calendar
   ========================================================================== */
.schedule-view {
  position: relative;
}

.calendar-card {
  padding: var(--spacing-md);
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-md);
}

.cal-month-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: var(--spacing-xs);
}

.cal-weekdays span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 0;
}

.cal-weekdays .sunday { color: #ef4444; }
.cal-weekdays .saturday { color: #3b82f6; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: background var(--transition-fast);
  min-width: 0;
}

.cal-cell:not(.empty):hover {
  background: var(--border-color);
}

.cal-cell.empty {
  cursor: default;
}

.cal-day-num {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.cal-cell.sunday .cal-day-num { color: #ef4444; }
.cal-cell.saturday .cal-day-num { color: #3b82f6; }

/* Today highlight */
.cal-cell.today {
  background: var(--color-primary);
}
.cal-cell.today .cal-day-num {
  color: #ffffff !important;
  font-weight: 700;
}

/* Selected date */
.cal-cell.selected:not(.today) {
  background: rgba(59, 130, 246, 0.15);
  border: 2px solid var(--color-primary-light);
}

/* Event dot */
.cal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary-light);
  margin-top: 2px;
}

.cal-cell.today .cal-dot {
  background: rgba(255,255,255,0.8);
}

/* ==========================================================================
   Schedule View — Day Events Panel
   ========================================================================== */
.day-events-card {
  min-height: 80px;
}

.day-events-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
}

.event-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-sm);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  background: var(--bg-color);
  margin-bottom: var(--spacing-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.event-item:last-child {
  margin-bottom: 0;
}

.event-item:hover {
  background: var(--border-color);
}

.event-item-cat {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.event-item-body {
  flex: 1;
  min-width: 0;
}

.event-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-item-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.event-item-meta .material-symbols-rounded {
  font-size: 14px;
}

.event-item-arrow {
  color: var(--text-muted);
  font-size: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   Schedule View — FAB
   ========================================================================== */
.fab {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + var(--spacing-lg));
  right: var(--spacing-lg);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.4);
  z-index: 50;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5);
}

.fab:active {
  transform: scale(0.95);
}

.fab .material-symbols-rounded {
  font-size: 28px;
}

/* ==========================================================================
   Schedule View — Modals (Bottom Sheet style)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: overlayFadeIn 0.2s ease forwards;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-overlay.hidden {
  display: none !important;
}

.modal-sheet {
  background: var(--bg-surface);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  width: 100%;
  max-width: 640px;
  max-height: 90dvh;
  overflow-y: auto;
  animation: sheetSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes sheetSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  background: var(--bg-surface);
  z-index: 1;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.modal-body {
  padding: var(--spacing-md);
}

/* Form row (two columns) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

/* Required mark */
.required {
  color: var(--color-danger);
}

/* ==========================================================================
   Schedule View — Detail Modal
   ========================================================================== */
.det-cat-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  color: #fff;
}

.det-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.det-row {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.det-row .material-symbols-rounded {
  font-size: 20px;
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.det-memo {
  align-items: flex-start;
}

.det-actions {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

/* ==========================================================================
   Home View — Next Event Card
   ========================================================================== */
.next-event-card {
  padding: var(--spacing-md);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.next-event-card:active {
  transform: scale(0.98);
}

.next-event-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-xs);
}

.next-event-cat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
}

.next-event-days-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(59, 130, 246, 0.12);
  padding: 3px 10px;
  border-radius: 999px;
}

.next-event-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.next-event-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.next-event-meta .material-symbols-rounded {
  font-size: 16px;
}

.next-event-empty {
  text-align: center;
  padding: var(--spacing-lg);
  color: var(--text-muted);
}

.next-event-empty .material-symbols-rounded {
  font-size: 40px;
  margin-bottom: var(--spacing-sm);
  display: block;
  color: var(--border-color);
}

.next-event-empty p {
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
}

/* stat-card small variant (already in stats but ensure it works standalone) */
.stat-card.small {
  padding: var(--spacing-sm);
}

/* ==========================================================================
   Dark mode: Schedule specific
   ========================================================================== */
@media (prefers-color-scheme: dark) {
  .fab {
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
  }
  .fab:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
  }
  .cal-cell.selected:not(.today) {
    background: rgba(59, 130, 246, 0.2);
  }
  .event-item {
    background: var(--bg-surface);
  }
  .event-item:hover {
    background: rgba(255,255,255,0.05);
  }
}
