/* okydokykaraoke_app/static/css/style.css */

:root {
  /* Theme Scheme Variables */
  --bg-deep: #0f172a;
  --bg-surface: #1e293b;
  --bg-surface-hover: #334155;
  --neon-blue: #38bdf8;
  --neon-pink: #ff7096;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #7dd3fc;
}

/* 1.2 Global Header Subsystem */
.global-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 64px;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-surface-hover);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  box-sizing: border-box;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.header-left img {
  height: 36px;
  width: auto;
}

.header-left span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header-center {
  flex: 1;
  max-width: 600px;
  margin: 0 2rem;
}

.search-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--bg-surface);
  border: 1px solid var(--bg-surface-hover);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s;
}

.search-input:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 1px var(--neon-blue);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login {
  background-color: var(--neon-pink);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(255, 112, 150, 0.39);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 112, 150, 0.5);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-surface-hover);
  border: 2px solid var(--neon-blue);
  object-fit: cover;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.user-menu-container {
  position: relative;
  display: inline-block;
}

.avatar-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.avatar-btn:hover {
  transform: scale(1.05);
}

.avatar-btn:focus-visible {
  box-shadow: 0 0 0 2px var(--neon-blue);
}

.avatar-btn:hover .avatar {
  border-color: var(--neon-pink);
  box-shadow: 0 0 8px rgba(255, 112, 150, 0.6);
}

/* Premium Glassmorphic Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 240px;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5), 0 0 1px 1px rgba(255, 255, 255, 0.05) inset;
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-user-info {
  padding: 0.5rem 1.25rem 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-username {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.dropdown-email {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 0.5rem 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.25rem;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: rgba(56, 189, 248, 0.1);
  color: var(--neon-blue);
  padding-left: 1.5rem; /* Micro-interaction slide */
}

.dropdown-icon {
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.dropdown-item:hover .dropdown-icon {
  color: var(--neon-blue);
  transform: translateX(2px);
}

/* 2. Views & Content Delivery Routing */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
}

/* Dashboard Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
}

/* Sidebar Widgets */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.widget {
  background-color: var(--bg-surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bg-surface-hover);
}

.widget-header {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 1.1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--bg-surface-hover);
}

.widget-header.neon-blue {
  border-top: 3px solid var(--neon-blue);
}

.widget-header.neon-pink {
  border-top: 3px solid var(--neon-pink);
}

.widget-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item, .favorite-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.event-item:hover, .favorite-item:hover {
  background-color: var(--bg-surface-hover);
  cursor: pointer;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-deep);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-weight: 700;
}

.event-date span:first-child {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.event-details h4, .favorite-details h4 {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
}

.event-details p, .favorite-details p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Activity Stream */
.main-feed {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feed-header {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.post-card {
  background-color: var(--bg-surface);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--bg-surface-hover);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.post-content p {
  margin-top: 0;
  line-height: 1.6;
}

.post-media {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  background-color: var(--bg-deep);
  margin-top: 1rem;
  object-fit: cover;
}

.post-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-surface-hover);
  color: var(--text-muted);
}

/* Venue Layout */
.venue-header {
  margin-bottom: 2rem;
}

.venue-header h1 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem 0;
  color: var(--neon-blue);
}

.venue-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.1rem;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
}

.map-panel {
  background-color: var(--bg-surface);
  border-radius: 16px;
  border: 1px solid var(--bg-surface-hover);
  overflow: hidden;
  height: 600px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(56,189,248,0.2) 0%, rgba(15,23,42,1) 60%);
}

.map-marker {
  width: 20px;
  height: 20px;
  background-color: var(--neon-blue);
  border-radius: 50%;
  box-shadow: 0 0 20px 10px rgba(56,189,248,0.4);
}

.calendar-ledger {
  background-color: var(--bg-surface);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--neon-pink);
  box-shadow: 0 0 15px rgba(255, 112, 150, 0.1);
}

.calendar-header {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--neon-pink);
  border-bottom: 1px solid var(--bg-surface-hover);
  padding-bottom: 1rem;
}

.schedule-date {
  margin-bottom: 1.5rem;
}

.schedule-date h3 {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem 0;
}

.schedule-event {
  background-color: rgba(56,189,248,0.05);
  border: 1px solid var(--neon-blue);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  box-shadow: inset 0 0 10px rgba(56,189,248,0.1);
}

.schedule-event h4 {
  margin: 0 0 0.25rem 0;
  color: #fff;
}

.schedule-event p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.schedule-event.pink-theme {
  background-color: rgba(255, 112, 150, 0.05);
  border-color: var(--neon-pink);
  box-shadow: inset 0 0 10px rgba(255, 112, 150, 0.1);
}
/* Dynamic Community Feed Enhancements */
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  color: var(--text-main);
  margin: 0.75rem 0 0.5rem 0;
  font-weight: 700;
}
.post-content h1 { font-size: 1.3rem; }
.post-content h2 { font-size: 1.15rem; }
.post-content h3 { font-size: 1.05rem; }
.post-content p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0.5rem 0;
}
.post-content strong {
  color: var(--text-main);
}
.post-content br {
  margin-bottom: 0.25rem;
}

/* Post Attachment Media Styling */
.post-media-container {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--bg-surface-hover);
  background: rgba(15, 23, 42, 0.4);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

.post-media-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-media-container:hover .post-media-img {
  transform: scale(1.01);
}

/* Glassmorphic Paginator Controls */
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-surface-hover);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  user-select: none;
}

.pagination-btn:not(.disabled):hover {
  background-color: rgba(56, 189, 248, 0.15);
  color: var(--neon-blue);
  border-color: var(--neon-blue);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
  transform: translateY(-1px);
}

.pagination-btn:not(.disabled):active {
  transform: translateY(0);
}

.pagination-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background-color: rgba(30, 41, 59, 0.2);
  border-color: rgba(255, 255, 255, 0.02);
}

.pagination-btn svg {
  transition: transform 0.2s ease;
}

.pagination-btn:not(.disabled):hover svg {
  transform: scale(1.1);
}

.pagination-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Empty State Card */
.empty-feed-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px dashed var(--bg-surface-hover);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Reaction Subsystem Styles */
.post-reactions-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.active-reactions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.reaction-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  background-color: var(--bg-deep);
  border: 1px solid var(--bg-surface-hover);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.reaction-badge:hover {
  background-color: var(--bg-surface-hover);
  color: var(--text-main);
  transform: translateY(-1px);
}

.reaction-badge.active {
  background-color: rgba(56, 189, 248, 0.1);
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.2);
}

.reaction-badge.hidden {
  display: none !important;
}

.add-reaction-wrapper {
  position: relative;
  display: inline-block;
}

.add-reaction-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(51, 65, 85, 0.3);
  border: 1px solid var(--bg-surface-hover);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.add-reaction-trigger:hover,
.add-reaction-trigger.active {
  background-color: var(--bg-surface-hover);
  color: var(--text-main);
  border-color: var(--neon-pink);
  box-shadow: 0 0 8px rgba(255, 112, 150, 0.15);
}

.react-plus {
  font-weight: bold;
  color: var(--neon-pink);
}

/* Glassmorphic Popover Picker */
.reaction-popover {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  border-radius: 9999px;
  background-color: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 0 15px rgba(56, 189, 248, 0.1);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reaction-popover.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.popover-emoji {
  background: none;
  border: none;
  font-size: 1.35rem;
  padding: 0.2rem;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.2s;
  outline: none;
  border-radius: 50%;
}

.popover-emoji:hover {
  transform: scale(1.3) translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}

.popover-emoji.active {
  background-color: rgba(56, 189, 248, 0.15);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
}

.action-btn {
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background-color: transparent;
  transition: all 0.2s ease;
  color: var(--text-muted);
}

.action-btn:hover {
  background-color: rgba(51, 65, 85, 0.3);
  color: var(--text-main);
}

/* Animations */
@keyframes badgeBounce {
  0% { transform: scale(1); }
  30% { transform: scale(0.85); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.badge-bounce {
  animation: badgeBounce 0.4s ease-out;
}

@keyframes emojiBounce {
  0% { transform: scale(1); }
  30% { transform: scale(0.7); }
  60% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.emoji-bounce {
  animation: emojiBounce 0.4s ease-out;
}

/* Clickable Posts & Detailed View */
.post-content-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-content-link:hover .post-content {
  opacity: 0.95;
}

.post-card.detail-view {
  border: 1px solid var(--neon-blue);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
}

/* Back navigation button */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.back-link:hover {
  background-color: rgba(56, 189, 248, 0.1);
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
  transform: translateX(-4px);
}

.back-link svg {
  transition: transform 0.2s ease;
}

.back-link:hover svg {
  transform: translateX(-2px);
}

/* Comments Section */
.comments-section {
  margin-top: 2rem;
}

.comments-header {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  border-left: 3px solid var(--neon-pink);
  padding-left: 0.75rem;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.comment-item {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: rgba(30, 41, 59, 0.4);
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.comment-header .avatar {
  width: 32px;
  height: 32px;
}

.comment-meta {
  display: flex;
  flex-direction: column;
}

.comment-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
}

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

.comment-body {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-main);
  padding-left: 2.5rem;
  white-space: pre-wrap;
}

.empty-comments-card {
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
}

/* Comment Form & Guard */
.add-comment-container {
  margin-top: 1.5rem;
}

.comment-form {
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-textarea {
  width: 100%;
  min-height: 80px;
  background-color: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  outline: none;
  transition: all 0.2s ease;
}

.comment-textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.btn-post-comment {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--neon-blue) 0%, #0369a1 100%);
  color: var(--text-main);
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}

.btn-post-comment:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(56, 189, 248, 0.4);
}

.comment-auth-guard {
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 112, 150, 0.2);
  background-color: rgba(255, 112, 150, 0.05);
  font-size: 0.9rem;
  color: var(--text-main);
}

.comment-auth-guard .login-link {
  color: var(--neon-pink);
  text-decoration: none;
  font-weight: 600;
}

.comment-auth-guard .login-link:hover {
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(255, 112, 150, 0.5);
}

/* --- MOBILE RESPONSIVE (MOBILE FIRST ENHANCEMENTS) --- */
@media (max-width: 768px) {
  /* Layout Adjustments */
  .dashboard-grid, .venue-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .container {
    padding: 1rem;
  }
  
  /* Global Header Restructuring */
  .global-header {
    flex-wrap: wrap;
    height: auto;
    padding: 1rem;
    gap: 1rem;
  }
  .header-left span {
    font-size: 1.1rem;
  }
  .header-center {
    order: 3;
    flex: 1 1 100%;
    margin: 0;
    max-width: none;
  }
  .search-input {
    min-height: 48px; /* Larger tap target */
    font-size: 1rem; /* Prevents iOS auto-zoom */
    padding: 0.75rem 1rem;
  }

  /* Increase Tap Targets for touch devices (min 48px) */
  .btn-login,
  .pagination-btn,
  .btn-post-comment,
  .back-link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 0 1.5rem;
  }

  .reaction-badge,
  .add-reaction-trigger,
  .action-btn {
    min-height: 44px;
    font-size: 0.95rem;
  }
  
  .event-item, .favorite-item, .dropdown-item {
    min-height: 52px; /* Super tapable list items */
  }
  
  /* Forms Optimization */
  .comment-textarea {
    min-height: 120px;
    font-size: 1rem; /* Prevents iOS auto-zoom on focus */
  }
  
  /* Adjust Venue Map */
  .map-panel {
    height: 350px;
  }
  
  /* Make Posts full width */
  .post-card {
    padding: 1rem;
  }
  .post-media {
    height: 200px;
  }
  .post-actions {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
