/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #2d2640;
  background: linear-gradient(160deg, #ede4f7 0%, #f5e6f0 30%, #f0e0f4 50%, #e8daf5 70%, #ddd4f0 100%);
  min-height: 100vh;
}

a {
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: #6d28d9;
}

.link-subtle {
  color: #8b7fa8;
  font-weight: 600;
  font-size: 0.875rem;
}

.link-subtle:hover {
  color: #7c3aed;
}

/* Container */
.container {
  max-width: 32rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Main Card */
.main-card {
  padding: 1.75rem 0.25rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .main-card {
    padding: 2rem 2rem;
  }
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 32rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.125rem;
  background: linear-gradient(135deg, #9b6dff, #d06adb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.navbar-brand:hover {
  text-decoration: none;
  opacity: 0.85;
}

.navbar-auth {
  display: none;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .navbar-auth {
    display: flex;
  }
}

.navbar-email {
  color: #6b5b8a;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
  color: #5b4a82;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.5;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(124, 58, 237, 0.06);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #9b6dff, #b47aff);
  color: #fff;
  box-shadow: 0 2px 10px rgba(155, 109, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  box-shadow: 0 4px 16px rgba(155, 109, 255, 0.35);
}

.btn-small {
  padding: 0.3rem 0.875rem;
  font-size: 0.75rem;
}

.btn-copy {
  background: linear-gradient(135deg, #9b6dff, #b47aff);
  color: #fff;
  font-size: 0.75rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(155, 109, 255, 0.25);
}

.btn-copy:hover {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.btn-danger {
  color: #e11d48;
  background: rgba(255, 228, 230, 0.6);
}

.btn-danger:hover {
  background: rgba(255, 228, 230, 0.9);
}

/* Flash Messages */
.flash {
  padding: 0.75rem 1rem;
  border-radius: 0.875rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.flash-notice {
  background: rgba(236, 253, 245, 0.8);
  color: #065f46;
}

.flash-alert {
  background: rgba(255, 241, 242, 0.8);
  color: #9f1239;
}

/* Forms */
.form {
  margin-top: 0.75rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: 600;
  font-size: 0.75rem;
  color: #6b5b8a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="datetime-local"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border: none;
  border-radius: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  background: rgba(243, 237, 252, 0.5);
  color: #2d2640;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 3px rgba(124, 58, 237, 0.05);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(243, 237, 252, 0.8);
  box-shadow:
    inset 0 1px 3px rgba(124, 58, 237, 0.05),
    0 0 0 3px rgba(155, 109, 255, 0.15);
}

.form-group input::placeholder {
  color: #a395be;
}

.form-actions {
  margin-top: 1.25rem;
}

.form-errors {
  background: rgba(255, 241, 242, 0.8);
  border-radius: 0.875rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  color: #9f1239;
  font-size: 0.8125rem;
}

.form-errors ul {
  margin: 0;
  padding-left: 1.25rem;
}

.form-inline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 480px) {
  .form-inline {
    flex-direction: row;
    align-items: flex-end;
    gap: 0.75rem;
  }

  .form-inline .form-group {
    flex: 1;
    margin-bottom: 0;
  }

  .form-inline .form-actions {
    margin-top: 0;
  }
}

/* Input with inline button */
.input-with-button {
  margin-top: 0.5rem;
}

.input-with-button-form {
  display: flex;
  align-items: center;
  background: rgba(243, 237, 252, 0.5);
  border-radius: 0.875rem;
  padding: 0.25rem;
  gap: 0.25rem;
  box-shadow: inset 0 1px 3px rgba(124, 58, 237, 0.05);
}

.input-with-button-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #2d2640;
  outline: none;
  min-width: 0;
}

.input-with-button-form input::placeholder {
  color: #a395be;
}

.input-with-button-form .btn {
  flex-shrink: 0;
}

/* Page Header */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.page-header h1 {
  margin: 0;
  font-size: 1.375rem;
}

/* Card List */
.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card {
  display: block;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.04);
}

.card-link {
  color: inherit;
}

.card-link:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
  text-decoration: none;
}

.card-title {
  margin: 0 0 0.125rem;
  font-size: 1rem;
  font-weight: 700;
}

.card-meta {
  margin: 0;
  color: #6b5b8a;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #6b5b8a;
}

.empty-state p {
  margin-bottom: 1.25rem;
}

/* Avatar */
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* Member List */
.member-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(155, 109, 255, 0.06);
}

.member-row:last-child {
  border-bottom: none;
}

.member-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.member-email {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.badge-admin {
  background: #fef3c7;
  color: #b45309;
}

.badge-regular {
  background: rgba(237, 233, 254, 0.8);
  color: #7c3aed;
}

.badge-invited {
  background: rgba(243, 237, 252, 0.5);
  color: #6b5b8a;
}

/* Invite Link Row */
.invite-link-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(243, 237, 252, 0.5);
  border-radius: 0.875rem;
  padding: 0.5rem 0.5rem 0.5rem 0.875rem;
  box-shadow: inset 0 1px 3px rgba(124, 58, 237, 0.05);
}

.invite-link-url {
  flex: 1;
  font-size: 0.75rem;
  color: #6b5b8a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* Invite Page */
.invite-page {
  text-align: center;
  padding: 2rem 0.5rem;
}

.invite-subtitle {
  color: #6b5b8a;
  margin-bottom: 1.5rem;
}

/* Confirmation */
.confirmation {
  text-align: center;
  padding: 2rem 0.5rem;
}

.confirmation h1 {
  background: linear-gradient(135deg, #9b6dff, #d06adb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Headings */
h1 {
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2d2640;
}

h2 {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #6b5b8a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Wine Club Layout */
.wine-club-layout {
  margin-top: 0.75rem;
}

/* Shared nav link styles */
.wine-club-nav-link {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b5b8a;
  transition: all 0.15s ease;
}

.wine-club-nav-link:hover {
  background: rgba(155, 109, 255, 0.08);
  color: #7c3aed;
  text-decoration: none;
}

.wine-club-nav-link.active {
  background: rgba(155, 109, 255, 0.12);
  color: #7c3aed;
}

.wine-club-content {
  flex: 1;
  min-width: 0;
}

/* Mobile: hamburger button */
.mobile-nav {
  display: block;
}

.hamburger-btn {
  position: fixed;
  top: 0.625rem;
  right: 1rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
  transition: all 0.15s ease;
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hamburger-icon {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: #5b4a82;
  position: relative;
  border-radius: 1px;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 2px;
  background: #5b4a82;
  position: absolute;
  left: 0;
  border-radius: 1px;
}

.hamburger-icon::before {
  top: -5px;
}

.hamburger-icon::after {
  top: 5px;
}

/* Mobile: backdrop (blurred) */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(45, 38, 64, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-nav.open .mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile: slide-in panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  width: 80vw;
  max-width: 20rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 32px rgba(124, 58, 237, 0.08);
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b5b8a;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-divider {
  height: 1px;
  background: rgba(155, 109, 255, 0.1);
  margin: 1rem 0;
}

.mobile-nav-email {
  display: block;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  color: #6b5b8a;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

/* Desktop: hide hamburger, show pinned sidebar */
.wine-club-nav-desktop {
  display: none;
}

@media (min-width: 640px) {
  .mobile-nav {
    display: none;
  }

  .wine-club-nav-desktop {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10rem;
    padding: 5rem 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid rgba(155, 109, 255, 0.06);
    z-index: 50;
  }

  /* Shift entire page when sidebar is present */
  body:has(.wine-club-nav-desktop) .navbar-inner {
    max-width: none;
    padding-left: 11.5rem;
  }

  body:has(.wine-club-nav-desktop) .container {
    max-width: 48rem;
    margin-left: 10rem;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 2rem;
  }
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.filter-tab {
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b5b8a;
  transition: all 0.15s ease;
}

.filter-tab:hover {
  background: rgba(155, 109, 255, 0.08);
  color: #7c3aed;
  text-decoration: none;
}

.filter-tab.active {
  background: rgba(155, 109, 255, 0.12);
  color: #7c3aed;
}

/* Meetup Card */
.meetup-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.meetup-card {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0.875rem;
  padding: 0.875rem 1rem;
  transition: all 0.2s ease;
}

.meetup-card:hover {
  background: rgba(255, 255, 255, 0.65);
}

.meetup-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.meetup-meta {
  font-size: 0.8125rem;
  color: #6b5b8a;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meetup-description {
  font-size: 0.8125rem;
  color: #6b5b8a;
  margin: 0.375rem 0 0;
}

/* Meetup Detail */
.meetup-detail {
  margin: 0.75rem 0;
}

/* RSVP */
.rsvp-section {
  margin: 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.rsvp-status {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 100px;
}

.rsvp-going {
  background: rgba(134, 239, 172, 0.3);
  color: #166534;
}

.rsvp-not-going {
  background: rgba(252, 165, 165, 0.3);
  color: #991b1b;
}

.rsvp-buttons {
  display: flex;
  gap: 0.5rem;
}

/* Attendee List */
.attendee-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.attendee-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(155, 109, 255, 0.06);
}

.attendee-row:last-child {
  border-bottom: none;
}

/* Wines (meetup) */
.wines-hint {
  font-size: 0.8125rem;
  color: #6b5b8a;
  font-style: italic;
  margin: 0.25rem 0 0.75rem;
}

/* Add wine popdown */
.add-wine-popdown {
  position: relative;
}

.add-wine-popdown summary {
  list-style: none;
  cursor: pointer;
}

.add-wine-popdown summary::-webkit-details-marker {
  display: none;
}

.popdown-actions {
  display: flex;
  gap: 0.5rem;
}

.add-wine-form {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12);
  min-width: 16rem;
}

.wine-group {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 0.875rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.625rem;
}

.wine-group-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
}

.wine-group-list {
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wine-group-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
}

.my-wine-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.fake-wine-chip {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(243, 237, 252, 0.5);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b5b8a;
  font-style: italic;
}

.attendee-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Cellar */
.cellar-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.cellar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0.875rem;
  padding: 0.875rem 1rem;
  gap: 0.75rem;
}

.cellar-card-main {
  flex: 1;
  min-width: 0;
}

.cellar-wine-name {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.cellar-holder {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.cellar-holder .avatar {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.625rem;
}

.cellar-holder-name {
  font-size: 0.8125rem;
  color: #6b5b8a;
}

/* Host List */
.host-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.host-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b5b8a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.host-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.host-chip .avatar {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.625rem;
}

/* Taste Mode */
.taste-mode-cta {
  margin: 1.25rem 0;
  text-align: center;
}

.taste-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
}

.taste-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
}

.taste-card:hover {
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  color: inherit;
}

.taste-card-mine {
  background: rgba(255, 255, 255, 0.55);
}

.taste-card-noted {
  border: 1px solid rgba(155, 109, 255, 0.15);
}

.taste-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: #9b6dff;
  min-width: 2.5rem;
  flex-shrink: 0;
}

.taste-info {
  flex: 1;
  min-width: 0;
}

.taste-anon-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #2d2640;
}

.taste-real-name {
  font-size: 0.8125rem;
  color: #6b5b8a;
  margin: 0.25rem 0 0;
  font-style: italic;
}

.taste-note-preview {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.375rem;
}

.taste-score {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #7c3aed;
}

.taste-note-snippet {
  font-size: 0.75rem;
  color: #6b5b8a;
}

/* Tasting note page */
.taste-wine-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1rem 0;
}

.taste-number-lg {
  font-size: 2rem;
  font-weight: 800;
  color: #9b6dff;
  line-height: 1;
}

/* Score picker */
.score-picker {
  display: flex;
  gap: 0.375rem;
}

.score-option {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.score-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.score-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(243, 237, 252, 0.5);
  font-size: 1rem;
  font-weight: 700;
  color: #6b5b8a;
  transition: all 0.15s ease;
}

.score-option:hover .score-label {
  background: rgba(155, 109, 255, 0.15);
  color: #7c3aed;
}

.score-radio:checked + .score-label {
  background: linear-gradient(135deg, #9b6dff, #b47aff);
  color: #fff;
  box-shadow: 0 2px 8px rgba(155, 109, 255, 0.3);
}

/* Guess grid */
.guess-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 480px) {
  .guess-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 0.75rem;
  }
}

/* Revealed Wines */
.wines-meetup-group {
  margin-bottom: 2rem;
}

.wines-grid {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.wine-reveal-card {
  display: block;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  color: inherit;
  transition: all 0.2s ease;
}

.wine-reveal-card:hover {
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.wine-reveal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.wine-reveal-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.wine-reveal-score {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #7c3aed;
  white-space: nowrap;
}

.wine-reveal-brought {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #6b5b8a;
  margin-top: 0.375rem;
}

.wine-reveal-brought .avatar {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.625rem;
}

.wine-reveal-note-count {
  display: inline-block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #6b5b8a;
}

/* Revealed Notes */
.revealed-notes {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.revealed-note {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0.875rem;
  padding: 0.875rem 1rem;
}

.revealed-note-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.revealed-note-body {
  font-size: 0.875rem;
  color: #2d2640;
  margin: 0;
  line-height: 1.5;
}

.guess-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.guess-chip {
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  background: rgba(243, 237, 252, 0.5);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6b5b8a;
}

/* Next meetup card */
.next-meetup-card {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
}

.next-meetup-stats {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.next-meetup-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Me nav */
.me-nav {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

/* Auth pages */
.auth-subtitle {
  color: #6b5b8a;
  font-size: 0.9375rem;
}
