@keyframes ma-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ma-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ma-scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ma-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes ma-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes ma-slide-in-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ma-slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes ma-pop-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  70% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ma-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes ma-press {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
}
@keyframes ma-success-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
@keyframes ma-shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-4px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(4px);
  }
}
@keyframes ma-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes ma-skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes ma-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes ma-dots {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.ma-animate-fade-in {
  animation: ma-fade-in 0.3s ease-out both;
}

.ma-animate-fade-in-up {
  animation: ma-fade-in-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ma-animate-scale-in {
  animation: ma-scale-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ma-animate-slide-left {
  animation: ma-slide-in-left 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ma-animate-slide-right {
  animation: ma-slide-in-right 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ma-animate-slide-down {
  animation: ma-slide-in-down 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ma-animate-pop-in {
  animation: ma-pop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.ma-animate-pulse {
  animation: ma-pulse 2s infinite;
}

.ma-animate-press:active {
  animation: ma-press 0.15s ease;
}

.ma-animate-success {
  animation: ma-success-pulse 0.6s ease-out;
}

.ma-animate-shake {
  animation: ma-shake 0.4s ease;
}

.ma-animate-bounce {
  animation: ma-bounce 0.6s ease infinite;
}

.ma-animate-skeleton {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: ma-skeleton-shimmer 1.5s infinite;
}

.ma-animate-spin {
  animation: ma-spin 1s linear infinite;
}

.ma-animate-delay-1 {
  animation-delay: 0.04s;
}

.ma-animate-delay-2 {
  animation-delay: 0.08s;
}

.ma-animate-delay-3 {
  animation-delay: 0.12s;
}

.ma-animate-delay-4 {
  animation-delay: 0.16s;
}

.ma-animate-delay-5 {
  animation-delay: 0.2s;
}

.ma-animate-delay-6 {
  animation-delay: 0.24s;
}

.ma-animate-delay-7 {
  animation-delay: 0.28s;
}

.ma-animate-delay-8 {
  animation-delay: 0.32s;
}

.ma-animate-delay-9 {
  animation-delay: 0.36s;
}

.ma-animate-delay-10 {
  animation-delay: 0.4s;
}

.ma-animate-delay-11 {
  animation-delay: 0.44s;
}

.ma-animate-delay-12 {
  animation-delay: 0.48s;
}

.ma-animate-delay-13 {
  animation-delay: 0.52s;
}

.ma-animate-delay-14 {
  animation-delay: 0.56s;
}

.ma-animate-delay-15 {
  animation-delay: 0.6s;
}

.ma-animate-delay-16 {
  animation-delay: 0.64s;
}

.ma-animate-delay-17 {
  animation-delay: 0.68s;
}

.ma-animate-delay-18 {
  animation-delay: 0.72s;
}

.ma-animate-delay-19 {
  animation-delay: 0.76s;
}

.ma-animate-delay-20 {
  animation-delay: 0.8s;
}

body.has-mobile-nav {
  overflow-x: hidden;
}

.wrapper:has(.memberarea) {
  margin-left: 0 !important;
  width: 100% !important;
}

.memberarea {
  overflow-x: clip;
}

.memberarea h1, .memberarea h2, .memberarea h3, .memberarea h4, .memberarea h5, .memberarea h6,
.wrapper h1,
.wrapper h2,
.wrapper h3,
.wrapper h4,
.wrapper h5,
.wrapper h6,
.container-fluid h1,
.container-fluid h2,
.container-fluid h3,
.container-fluid h4,
.container-fluid h5,
.container-fluid h6 {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.ma-card, .ma-stat-card, .ma-card-interactive, .ma-feature-card, .ma-action-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.ma-card-interactive, .ma-feature-card, .ma-action-card {
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ma-card-interactive:hover, .ma-feature-card:hover, .ma-action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
}
.ma-card-interactive:active, .ma-feature-card:active, .ma-action-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.ma-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  text-decoration: none;
  color: #1f2937;
}
.ma-action-card:hover {
  text-decoration: none;
  color: #1f2937;
}

.ma-action-card__content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ma-action-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ma-action-card__icon i {
  font-size: 18px;
  color: #ffffff;
}

.ma-action-card__text h3 {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 2px;
  line-height: 1.2;
}
.ma-action-card__text p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.ma-action-card__arrow {
  font-size: 20px;
  color: #9ca3af;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ma-action-card:hover .ma-action-card__arrow, .ma-card-interactive:hover .ma-action-card__arrow, .ma-feature-card:hover .ma-action-card__arrow, .ma-action-card__arrow:hover {
  transform: translateX(4px);
}

.ma-feature-card {
  padding: 16px 24px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.ma-feature-card:hover {
  text-decoration: none;
  color: #ffffff;
}

.ma-stat-card {
  padding: 24px;
  text-align: center;
}

.ma-stat-card__value {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 4px;
}

.ma-stat-card__label {
  font-size: 0.875rem;
  color: #6b7280;
}

.ma-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.1s ease;
}
.ma-alert:active {
  transform: scale(0.97);
}
.ma-alert:hover, .ma-alert:focus, .ma-alert:active {
  text-decoration: none;
  color: inherit;
}

.ma-alert--clickable {
  cursor: pointer;
}

.ma-alert__icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}
.ma-alert__icon i {
  color: #ffffff !important;
}

.ma-alert__content {
  flex: 1;
  min-width: 0;
}
.ma-alert__content h3 {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.2;
}
.ma-alert__content p {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.95;
  line-height: 1.5;
}

.ma-alert__arrow {
  font-size: 24px;
  opacity: 0.7;
  align-self: center;
  flex-shrink: 0;
}

.ma-alert--warning {
  background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(251, 146, 60, 0.3);
}

.ma-alert--danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.ma-alert--info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.ma-alert--success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.ma-alert--neutral {
  background: #f9fafb;
  color: #1f2937;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}
.ma-alert--neutral .ma-alert__content p {
  color: #4b5563;
}

.ma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.5;
  transition: transform 0.1s ease;
}
.ma-btn:active {
  transform: scale(0.97);
}
.ma-btn:hover {
  text-decoration: none;
}
.ma-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.ma-btn--primary {
  background: var(--club-color-primary, #667eea);
  color: var(--club-color-text, #ffffff);
}
.ma-btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--club-color-text, #ffffff);
}

.ma-btn--secondary {
  background: #f3f4f6;
  color: #1f2937;
}
.ma-btn--secondary:hover {
  background: #e5e7eb;
  color: #1f2937;
}

.ma-btn--ghost {
  background: transparent;
  color: #4b5563;
}
.ma-btn--ghost:hover {
  background: #f9fafb;
  color: #1f2937;
}

.ma-btn--outline {
  background: transparent;
  color: var(--club-color-primary, #667eea);
  border: 2px solid currentColor;
}
.ma-btn--outline:hover {
  background: var(--club-color-primary, #667eea);
  color: var(--club-color-text, #ffffff);
}

.ma-btn--danger {
  background: #fee2e2;
  color: #dc2626;
}
.ma-btn--danger:hover {
  background: #fecaca;
  color: #dc2626;
}

.ma-btn--success {
  background: #10b981;
  color: #ffffff;
}
.ma-btn--success:hover {
  background: #059669;
  color: #ffffff;
}

.ma-btn--white {
  background: #ffffff;
  color: #1f2937;
}
.ma-btn--white:hover {
  background: #f3f4f6;
  color: #1f2937;
}

.ma-btn--sm {
  padding: 6px 12px;
  font-size: 0.75rem;
}

.ma-btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.ma-btn--block {
  width: 100%;
}

.ma-btn--icon {
  padding: 10px;
}
.ma-btn--icon.ma-btn--sm {
  padding: 6px;
}
.ma-btn--icon.ma-btn--lg {
  padding: 14px;
}

.ma-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  line-height: 1;
}

.ma-badge--success {
  background: #d1fae5;
  color: #166534;
}

.ma-badge--warning {
  background: #fef3c7;
  color: #92400e;
}

.ma-badge--danger {
  background: #fee2e2;
  color: #dc2626;
}

.ma-badge--info {
  background: #dbeafe;
  color: #1d4ed8;
}

.ma-badge--neutral {
  background: #f3f4f6;
  color: #4b5563;
}

.ma-badge--primary {
  background: var(--club-color-primary, #667eea);
  color: var(--club-color-text, #ffffff);
}

.ma-badge--count {
  min-width: 20px;
  padding: 2px 7px;
  text-align: center;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.ma-badge--solid-success {
  background: #10b981;
  color: #ffffff;
}

.ma-badge--solid-warning {
  background: #f59e0b;
  color: #ffffff;
}

.ma-badge--solid-danger {
  background: #ef4444;
  color: #ffffff;
}

.ma-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 21px;
}
.ma-icon-box i, .ma-icon-box .fa, .ma-icon-box .fas, .ma-icon-box .far, .ma-icon-box .fal, .ma-icon-box .fab {
  color: #ffffff !important;
}

.ma-icon-box--sm {
  width: 32px;
  height: 32px;
}
.ma-icon-box--sm i {
  font-size: 14px;
}

.ma-icon-box--md {
  width: 40px;
  height: 40px;
}
.ma-icon-box--md i {
  font-size: 18px;
}

.ma-icon-box--lg {
  width: 48px;
  height: 48px;
}
.ma-icon-box--lg i {
  font-size: 22px;
}

.ma-icon-box--xl {
  width: 64px;
  height: 64px;
}
.ma-icon-box--xl i {
  font-size: 28px;
}

.ma-icon-box--blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.ma-icon-box--green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.ma-icon-box--purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.ma-icon-box--amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.ma-icon-box--red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.ma-icon-box--club {
  background: var(--club-color-primary, #667eea);
}

.ma-icon-box--light-blue {
  background: #dbeafe;
}
.ma-icon-box--light-blue i {
  color: #2563eb;
}

.ma-icon-box--light-green {
  background: #d1fae5;
}
.ma-icon-box--light-green i {
  color: #059669;
}

.ma-icon-box--light-amber {
  background: #fef3c7;
}
.ma-icon-box--light-amber i {
  color: #d97706;
}

.ma-icon-box--light-red {
  background: #fee2e2;
}
.ma-icon-box--light-red i {
  color: #dc2626;
}

.ma-icon-box--transparent {
  background: rgba(255, 255, 255, 0.2);
}

.ma-section-header {
  margin-bottom: 24px;
}

.ma-section-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

.ma-section-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 4px;
}

.ma-empty-state {
  text-align: center;
  padding: 48px 24px;
}

.ma-empty-state__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ma-empty-state__icon i {
  font-size: 32px;
  color: #9ca3af;
}

.ma-empty-state__title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px;
}

.ma-empty-state__text {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 24px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.ma-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  color: #1f2937;
}
.ma-list-item:hover {
  text-decoration: none;
  color: #1f2937;
}

.ma-list-item--interactive {
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ma-list-item--interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
}
.ma-list-item--interactive:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.ma-list-item__content {
  flex: 1;
  min-width: 0;
}

.ma-list-item__title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

.ma-list-item__subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 2px 0 0;
}

.ma-list-item__meta {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 4px 0 0;
}

.ma-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 16px 0;
}

.ma-divider--subtle {
  background: #f3f4f6;
}

.ma-text-display {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ma-text-muted {
  color: #6b7280;
}

.ma-text-primary {
  color: #1f2937;
}

.ma-text-inverse {
  color: #ffffff;
}

.ma-mb-0 {
  margin-bottom: 0;
}

.ma-mb-sm {
  margin-bottom: 8px;
}

.ma-mb-md {
  margin-bottom: 12px;
}

.ma-mb-lg {
  margin-bottom: 16px;
}

.ma-mb-xl {
  margin-bottom: 24px;
}

.ma-mt-0 {
  margin-top: 0;
}

.ma-mt-sm {
  margin-top: 8px;
}

.ma-mt-md {
  margin-top: 12px;
}

.ma-mt-lg {
  margin-top: 16px;
}

.ma-mt-xl {
  margin-top: 24px;
}

.ma-gap-sm {
  gap: 8px;
}

.ma-gap-md {
  gap: 12px;
}

.ma-gap-lg {
  gap: 16px;
}

.ma-gap-xl {
  gap: 24px;
}

input[type=radio]:checked + span,
input[type=radio]:checked + label {
  color: var(--club-color, #667eea);
}

.swal2-container {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.swal2-container.swal2-backdrop-show {
  background: rgba(0, 0, 0, 0.45) !important;
}

.swal2-popup {
  border-radius: 12px !important;
  padding: 2em 1.5em 1.5em !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.swal2-title {
  font-size: 1.5em !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  padding: 0 !important;
  margin-bottom: 0.5em !important;
}

.swal2-html-container {
  font-size: 1rem !important;
  color: #4b5563 !important;
  line-height: 1.6 !important;
  margin: 0.5em 1em 1em !important;
}

.swal2-icon {
  width: 5em !important;
  height: 5em !important;
  margin: 1.5em auto 1em !important;
  border-width: 3px !important;
}

.swal2-actions {
  margin-top: 1.25em !important;
  gap: 0.75em !important;
}

.swal2-styled {
  border-radius: 8px !important;
  padding: 0.625em 1.5em !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  transition: all 0.15s ease !important;
  box-shadow: none !important;
  min-width: 90px !important;
  border: none !important;
}

.swal2-confirm {
  background: var(--club-button, var(--club-color, #667eea)) !important;
  color: var(--club-button-text, var(--club-color-text, #fff)) !important;
}
.swal2-confirm:hover {
  filter: brightness(0.92) !important;
}
.swal2-confirm:active {
  filter: brightness(0.88) !important;
}

.swal2-cancel {
  background: transparent !important;
  color: #6b7280 !important;
}
.swal2-cancel:hover {
  background: #f9fafb !important;
  color: #1f2937 !important;
}

.swal2-deny {
  background: #fee2e2 !important;
  color: #dc2626 !important;
}
.swal2-deny:hover {
  background: rgb(253.49, 211.21, 211.21) !important;
  color: rgb(200.2083333333, 32.2916666667, 32.2916666667) !important;
}

.swal2-show {
  animation: swal2-show-custom 0.25s ease-out !important;
}

.swal2-hide {
  animation: swal2-hide-custom 0.2s ease-in !important;
}

@keyframes swal2-show-custom {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes swal2-hide-custom {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
.swal2-timer-progress-bar {
  background: var(--club-button, var(--club-color, #667eea)) !important;
}

.admin-toolbar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: adminToolbarSlideUp 0.5s ease forwards;
  animation-delay: 0.3s;
  transition: transform 0.3s ease;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.admin-toolbar--modal-hidden {
  transform: translateX(-50%) translateY(100px) !important;
  pointer-events: none;
}
.admin-toolbar--editing {
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.3);
}
.has-mobile-nav .admin-toolbar {
  bottom: 80px;
}
@media (max-width: 480px) {
  .admin-toolbar {
    bottom: 16px;
    padding: 6px 10px;
    gap: 6px;
    border-radius: 14px;
  }
  .has-mobile-nav .admin-toolbar {
    bottom: 72px;
  }
}

@keyframes adminToolbarSlideUp {
  to {
    transform: translateX(-50%) translateY(0);
  }
}
.admin-toolbar__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.admin-toolbar__badge i {
  font-size: 13px;
}
@media (max-width: 480px) {
  .admin-toolbar__badge {
    padding: 5px 10px;
    font-size: 13px;
  }
  .admin-toolbar__badge span {
    display: none;
  }
}

.admin-toolbar__divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 4px;
}

.admin-toolbar__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.admin-toolbar__btn--edit {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.admin-toolbar__btn--edit:hover {
  background: rgba(255, 255, 255, 0.18);
}
.admin-toolbar__btn--save {
  background: #10b981;
  color: white;
}
.admin-toolbar__btn--save:hover {
  background: #059669;
}
.admin-toolbar__btn--save:disabled {
  opacity: 0.7;
  cursor: wait;
}
.admin-toolbar__btn--cancel {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}
.admin-toolbar__btn--cancel:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}
@media (max-width: 480px) {
  .admin-toolbar__btn {
    padding: 7px 12px;
    font-size: 13px;
  }
}

.admin-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.3s ease;
}
.admin-toast--visible {
  transform: translateX(0);
  opacity: 1;
}
.admin-toast--success {
  background: #10b981;
  color: white;
}
.admin-toast--error {
  background: #ef4444;
  color: white;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1025;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

.ma-page {
  background: #f9fafb;
  min-height: 100vh;
  padding: 24px;
}

.ma-page-header {
  margin-bottom: 24px;
}

.ma-page-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ma-page-header__info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ma-page-title,
.page-header-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}
@media (max-width: 767.98px) {
  .ma-page-title,
  .page-header-title {
    font-size: 1.25rem !important;
  }
}

.ma-page-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.ma-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.ma-back-link:hover {
  color: #4b5563;
  text-decoration: none;
}

.ma-icon-box--club-gradient {
  background: linear-gradient(135deg, var(--club-bg, #667eea) 0%, var(--club-color, #667eea) 100%);
}

.ma-success-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ma-success-circle i {
  font-size: 36px;
  color: #ffffff;
}

.ma-card--padded {
  padding: 24px;
}

.ma-card--padded-sm {
  padding: 20px;
}

.ma-card--centered {
  text-align: center;
}

.ma-modal .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}
.ma-modal .modal-header {
  border: none;
  padding: 16px 20px;
}
.ma-modal .modal-body {
  padding: 20px;
}

.ma-banner--error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.ma-banner--error i {
  font-size: 1.25rem;
}
.ma-banner--error span {
  font-weight: 500;
}

.ma-banner--warning {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.ma-section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 24px;
}

.ma-section-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #e5e7eb);
}
.ma-section-divider__line--reverse {
  background: linear-gradient(to left, transparent, #e5e7eb);
}

.ma-section-divider__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ma-table-header {
  background: #f9fafb;
}
.ma-table-header th {
  padding: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  border: none;
}

.ma-panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ma-panel-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.ma-btn--danger-light {
  background: #fee2e2;
  color: #dc2626;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}
.ma-btn--danger-light:hover {
  background: #fecaca;
}

.ma-link-muted {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 0.875rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.ma-link-muted:hover {
  color: #4b5563;
}

.ma-inline-form {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.ma-text-center {
  text-align: center;
}

.ma-spinner {
  display: flex;
  justify-content: center;
  padding: 40px;
}
.ma-spinner i {
  font-size: 1.5rem;
  color: #9ca3af;
}

.ma-input--compact {
  width: 140px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
}

.mobile-bottom-nav {
  display: none;
}
@media (max-width: 767.98px) {
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 8px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 1040;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08), 0 -1px 4px rgba(0, 0, 0, 0.04);
  }
}

.mobile-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-decoration: none;
  color: inherit;
  flex: 1;
  padding: 12px 8px;
  color: #64748b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 16px;
  margin: 0 4px;
}
.mobile-bottom-nav-item:active {
  transform: scale(0.95);
}
.mobile-bottom-nav-item.active, .mobile-bottom-nav-item:hover {
  background: var(--mobile-nav-color, #667eea);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.mobile-bottom-nav-item.active .nav-icon-svg, .mobile-bottom-nav-item:hover .nav-icon-svg {
  fill: #ffffff;
  stroke: #ffffff;
}
.mobile-bottom-nav-item i {
  font-size: 24px;
  margin-bottom: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-bottom-nav-item:hover i {
  transform: translateY(-2px);
}
.mobile-bottom-nav-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-icon-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-bottom-nav-badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 22px);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  border: 2px solid #ffffff;
  animation: ma-pulse 2s infinite;
}

.mobile-bottom-nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-bottom-nav-item:hover .mobile-bottom-nav-logo {
  transform: scale(1.1) translateY(-2px);
}

.mobile-bottom-nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-bottom-nav-item:hover .mobile-bottom-nav-avatar {
  border-color: #ffffff;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
  body.has-mobile-nav {
    padding-bottom: 85px;
  }
}

@media (max-width: 767.98px) {
  .sidebar {
    bottom: 85px !important;
  }
}
@media (max-width: 767.98px) {
  .sidebar .sidebar-nav {
    padding-bottom: 30px;
  }
}

.desktop-header {
  display: none !important;
}
@media (min-width: 768px) {
  .desktop-header {
    display: block !important;
  }
}

.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.modern-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modern-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
}

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

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

.modern-header-logo img {
  height: 44px;
  width: auto;
  transition: height 0.2s ease;
}

.modern-header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  color: #374151;
  background: #f3f4f6;
}
.modern-header-link:hover {
  background: #e5e7eb;
  color: #1f2937;
}

.modern-header-link-primary {
  background: var(--header-club-color, #667eea);
  color: #ffffff;
}
.modern-header-link-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  color: #ffffff;
}

.modern-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.modern-header-avatar:hover {
  border-color: var(--header-club-color, #667eea);
}

.modern-header-burger {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 12px;
  border-radius: 8px;
  color: #374151;
  transition: all 0.2s ease;
}
.modern-header-burger:hover {
  background: #f3f4f6;
}
.modern-header-burger i {
  font-size: 20px;
}

.desktop-header .nav-item.dropdown {
  position: relative;
}

.desktop-header .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 1050;
  min-width: 200px;
  margin-top: 0.5rem;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  display: none;
}
.desktop-header .dropdown-menu.show {
  display: block;
}

.desktop-header [data-coreui-toggle=dropdown] {
  cursor: pointer;
}

.modern-header:not(.modern-header--hero) {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.modern-header:not(.modern-header--hero).scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
}

.modern-header--hero,
.modern-header.desktop-header:has(+ .hero-section) {
  background: transparent !important;
  padding: 16px 0;
}
.modern-header--hero .modern-header-logo img,
.modern-header.desktop-header:has(+ .hero-section) .modern-header-logo img {
  height: 52px;
}
.modern-header--hero .modern-header-link,
.modern-header.desktop-header:has(+ .hero-section) .modern-header-link {
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modern-header--hero .modern-header-link:hover,
.modern-header.desktop-header:has(+ .hero-section) .modern-header-link:hover {
  background: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.modern-header--hero .modern-header-link-primary,
.modern-header.desktop-header:has(+ .hero-section) .modern-header-link-primary {
  background: rgba(0, 0, 0, 0.6) !important;
  color: #ffffff !important;
}
.modern-header--hero .modern-header-link-primary:hover,
.modern-header.desktop-header:has(+ .hero-section) .modern-header-link-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.7) !important;
  color: #ffffff !important;
}
.modern-header--hero .modern-header-avatar,
.modern-header.desktop-header:has(+ .hero-section) .modern-header-avatar {
  width: 44px;
  height: 44px;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.modern-header--hero .modern-header-avatar:hover,
.modern-header.desktop-header:has(+ .hero-section) .modern-header-avatar:hover {
  border-color: #ffffff !important;
}
.modern-header--hero .modern-header-burger,
.modern-header.desktop-header:has(+ .hero-section) .modern-header-burger {
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff !important;
}
.modern-header--hero .modern-header-burger:hover,
.modern-header.desktop-header:has(+ .hero-section) .modern-header-burger:hover {
  background: rgba(0, 0, 0, 0.5) !important;
}
.modern-header--hero.scrolled,
.modern-header.desktop-header:has(+ .hero-section).scrolled {
  background: #ffffff !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}
.modern-header--hero.scrolled .modern-header-logo img,
.modern-header.desktop-header:has(+ .hero-section).scrolled .modern-header-logo img {
  height: 44px;
  box-shadow: none;
}
.modern-header--hero.scrolled .modern-header-link,
.modern-header.desktop-header:has(+ .hero-section).scrolled .modern-header-link {
  color: #374151 !important;
  background: #f3f4f6 !important;
  backdrop-filter: none;
}
.modern-header--hero.scrolled .modern-header-link:hover,
.modern-header.desktop-header:has(+ .hero-section).scrolled .modern-header-link:hover {
  background: #e5e7eb !important;
  color: #1f2937 !important;
}
.modern-header--hero.scrolled .modern-header-link-primary,
.modern-header.desktop-header:has(+ .hero-section).scrolled .modern-header-link-primary {
  background: var(--header-club-color, #667eea) !important;
  color: #ffffff !important;
}
.modern-header--hero.scrolled .modern-header-link-primary:hover,
.modern-header.desktop-header:has(+ .hero-section).scrolled .modern-header-link-primary:hover {
  background: var(--header-club-color, #667eea) !important;
  color: #ffffff !important;
}
.modern-header--hero.scrolled .modern-header-avatar,
.modern-header.desktop-header:has(+ .hero-section).scrolled .modern-header-avatar {
  width: 40px;
  height: 40px;
  border-color: #e5e7eb !important;
  box-shadow: none;
}
.modern-header--hero.scrolled .modern-header-burger,
.modern-header.desktop-header:has(+ .hero-section).scrolled .modern-header-burger {
  background: none !important;
  color: #374151 !important;
  backdrop-filter: none;
}
.modern-header--hero.scrolled .modern-header-burger:hover,
.modern-header.desktop-header:has(+ .hero-section).scrolled .modern-header-burger:hover {
  background: #f3f4f6 !important;
}

@media (min-width: 768px) {
  .memberarea {
    padding-top: 76px;
  }
  .modern-header--hero ~ .memberarea,
  .wrapper:has(.modern-header--hero) .memberarea {
    padding-top: 0;
  }
}
@media (max-width: 767.98px) {
  .memberarea {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  .page-wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  .wrapper {
    margin-top: 0 !important;
  }
  .container {
    padding-top: 0 !important;
  }
  body {
    padding-top: 0 !important;
  }
}
.member-footer {
  background: var(--footer-club-color, #0f172a);
  color: var(--footer-text-color, #ffffff);
  padding: 48px 24px 32px;
  margin-top: auto;
  box-shadow: 0 50vh 0 50vh var(--footer-club-color, #0f172a);
}

.member-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.member-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.member-footer-brand img {
  max-height: 44px;
  width: auto;
  border-radius: 8px;
}

.member-footer-brand-name {
  font-size: 16px;
  font-weight: 700;
}

.member-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.member-footer-links a {
  color: var(--footer-text-color, #ffffff);
  opacity: 0.7;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  transition: all 0.2s ease;
}
.member-footer-links a:hover {
  opacity: 1;
}

.member-footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid;
  border-color: inherit;
  text-align: center;
  font-size: 13px;
  color: var(--footer-text-color, #ffffff);
  opacity: 0.5;
}
.member-footer-bottom img {
  max-height: 18px;
  width: auto;
  margin-left: 8px;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .member-footer {
    display: none;
  }
}
.app-header {
  background: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.app-header-toggler {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  font-size: 24px;
  color: #374151;
}

.app-header-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.app-header-bell {
  text-decoration: none;
  color: inherit;
  font-size: 24px;
  color: #374151;
  position: relative;
}

.app-header-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #ffffff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.bottom-nav,
.app-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-around;
  padding: 12px 0 16px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.app-nav-item,
.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  color: #6b7280;
  transition: all 0.2s ease;
}
.app-nav-item.active,
.bottom-nav .nav-item.active {
  color: #667eea;
}

.app-nav-icon {
  font-size: 24px;
  line-height: 1;
}

.app-nav-label {
  font-size: 11px;
  font-weight: 600;
}

.app-nav-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.dashboard-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 340px;
  padding-top: 80px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .dashboard-hero {
    min-height: 200px;
  }
}

.dashboard-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.dashboard-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.dashboard-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .dashboard-hero-content {
    padding: 24px 16px;
  }
}

.dashboard-hero-text {
  min-width: 0;
  flex: 1 1 220px;
}

.dashboard-hero-logo {
  height: 120px;
  max-width: 200px;
  object-fit: contain;
  flex: 0 0 auto;
  max-height: 120px;
  height: 96px;
  max-width: 160px;
}
@media (max-width: 767.98px) {
  .dashboard-hero-logo {
    width: 70px;
    height: 70px;
  }
}

.promo-bar {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
}

.promo-bar-content {
  max-width: 1320px;
  margin: 0 auto;
}

.quick-actions-row > * {
  margin-top: 0 !important;
}

.membership-card {
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.membership-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
}
.membership-card a {
  text-decoration: none;
  color: inherit;
}
.membership-card a:hover {
  text-decoration: none;
}

.membership-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.membership-card__info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.membership-card__icon {
  font-size: 46px;
  color: #ffffff;
}

.membership-card__title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.membership-card__number {
  font-size: 0.875rem;
  opacity: 0.85;
  font-weight: 500;
}

.membership-card__arrow {
  font-size: 1.5rem;
  opacity: 0.7;
}
.membership-card__arrow i {
  color: inherit !important;
}

.membership-card--dark {
  color: #ffffff;
  display: block;
  text-decoration: none;
  padding: 24px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.02);
}
.membership-card--dark:hover {
  color: #ffffff;
  text-decoration: none;
}
.membership-card--dark .membership-card__header {
  margin-bottom: 0;
}

.membership-card--club {
  background: var(--club-bg);
  color: var(--club-text);
  display: block;
  text-decoration: none;
  padding: 24px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.02);
}
.membership-card--club:hover {
  color: var(--club-text);
  text-decoration: none;
}
.membership-card--club .membership-card__header {
  margin-bottom: 0;
}
.membership-card--club .membership-card__icon {
  color: var(--club-text) !important;
}
.membership-card--club .membership-card__arrow i {
  color: var(--club-text) !important;
}

.full-width-tile {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: #1f2937;
}
.full-width-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: #1f2937;
}

.epoints-tile {
  display: block;
  background: var(--club-bg);
  color: var(--club-text);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

.epoints-tile__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.epoints-tile__info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.epoints-tile__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.epoints-tile__icon i {
  font-size: 1.25rem;
  color: #ffffff !important;
}

.epoints-tile__text h3 {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.epoints-tile__text p {
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0;
}

.bg-dashboard {
  background: #f9fafb;
}

.avatar-circle {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
  font-size: 0.95rem;
}

.link-inherit {
  color: inherit;
  text-decoration: underline;
}
.link-inherit:hover {
  color: inherit;
  opacity: 0.8;
}

.ma-section-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.clubinfo-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 160px;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .clubinfo-hero {
    min-height: 140px;
    padding-top: 64px;
  }
}

.clubinfo-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.clubinfo-hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.clubinfo-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 16px 24px;
  max-width: 900px;
  color: #ffffff;
}

.clubinfo-hero-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.clubinfo-section {
  padding: 48px 24px;
}
@media (max-width: 767.98px) {
  .clubinfo-section {
    padding: 32px 16px;
  }
}

.clubinfo-section-light {
  background: #f9fafb;
}

.clubinfo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.clubinfo-section-header {
  text-align: center;
  margin-bottom: 32px;
}

.clubinfo-section-badge {
  display: inline-block;
  padding: 10px 20px;
  background: var(--club-bg, #667eea);
  color: var(--club-text, #ffffff);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.clubinfo-section-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.clubinfo-section-subtitle {
  font-size: 1rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.clubinfo-about-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
  font-size: 1rem;
  line-height: 1.625;
  color: #1f2937;
}
.clubinfo-about-content p {
  margin-bottom: 16px;
}
.clubinfo-about-content p:last-child {
  margin-bottom: 0;
}
.clubinfo-about-content a {
  color: var(--club-bg, #667eea);
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .clubinfo-about-content {
    padding: 28px;
  }
}

.clubinfo-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767.98px) {
  .clubinfo-status-grid {
    grid-template-columns: 1fr;
  }
}

.clubinfo-status-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
}

.clubinfo-status-card-open {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: rgba(5, 150, 105, 0.1);
}

.clubinfo-status-card-closed {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-color: rgba(220, 38, 38, 0.1);
}

.clubinfo-status-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.clubinfo-status-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.clubinfo-status-icon-open {
  background: rgba(5, 150, 105, 0.15);
  color: #059669;
}

.clubinfo-status-icon-closed {
  background: rgba(220, 38, 38, 0.15);
  color: #dc2626;
}

.clubinfo-status-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.clubinfo-status-value {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
}

.clubinfo-status-value-open {
  color: #059669;
}

.clubinfo-status-value-closed {
  color: #dc2626;
}

.clubinfo-status-meta {
  font-size: 1rem;
  color: #4b5563;
  font-weight: 500;
}

.clubinfo-attendance-card {
  background: linear-gradient(135deg, var(--club-bg, #667eea) 0%, #1a1a2e 100%);
  border-radius: 24px;
  padding: 24px 28px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.clubinfo-attendance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.04);
}
.clubinfo-attendance-card #clubstats {
  font-size: 1rem;
}
.clubinfo-attendance-card #clubstats b {
  font-size: 1.25rem;
}
.clubinfo-attendance-card .clubstats-hint {
  margin-top: 6px;
  font-size: 0.875rem;
  opacity: 0.8;
}
.clubinfo-attendance-card .progress {
  display: none;
}

.clubinfo-attendance-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clubinfo-attendance-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.clubinfo-attendance-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
  margin-bottom: 8px;
}

.clubinfo-chart-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.clubinfo-chart-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.clubinfo-chart-header i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--club-bg, #667eea) 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.125rem;
}

.clubinfo-chart-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
}

.clubinfo-chart-body {
  height: 180px;
  position: relative;
}

.clubinfo-pages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 992px) {
  .clubinfo-pages-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.clubinfo-page-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}
.clubinfo-page-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.04);
  color: #ffffff;
}
.clubinfo-page-tile:hover .clubinfo-page-tile-bg {
  transform: scale(1.1);
}

.clubinfo-page-tile-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.clubinfo-page-tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.clubinfo-page-tile-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.375;
}

.clubinfo-cta-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--club-bg, #667eea);
  padding: 48px 24px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .clubinfo-cta-section {
    padding: 32px 16px;
  }
}

.clubinfo-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.clubinfo-cta-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  color: var(--club-text, #ffffff);
  margin-bottom: 16px;
}

.clubinfo-cta-subtitle {
  font-size: 1.125rem;
  color: var(--club-text, #ffffff);
  opacity: 0.9;
  margin-bottom: 32px;
}

.clubinfo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.clubinfo-btn-white {
  background: #ffffff;
  color: #1f2937;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.clubinfo-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  color: #1f2937;
}

.clubinfo-modal .modal-content {
  border-radius: 24px;
  overflow: hidden;
}
.clubinfo-modal .modal-header {
  background: var(--club-bg, #667eea);
  color: var(--club-text, #ffffff);
  padding: 20px 24px;
}
.clubinfo-modal .modal-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}
.clubinfo-modal .modal-body {
  padding: 24px;
  text-align: center;
}

.clubinfo-modal-subtitle {
  margin-bottom: 20px;
  color: #4b5563;
}

.clubinfo-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.clubinfo-time-btn {
  padding: 12px;
  background: var(--club-bg, #667eea);
  color: var(--club-text, #ffffff);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.clubinfo-time-btn:hover {
  opacity: 0.9;
}

.bookings-page {
  background: #f9fafb;
  min-height: 100vh;
}

.bookings-header {
  padding: 24px 0 0 0;
}

.bookings-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.bookings-header__content--centered {
  justify-content: center;
  text-align: center;
}

.bookings-header__info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bookings-header__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--club-bg, #667eea);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bookings-header__icon i {
  font-size: 1.125rem;
  color: var(--club-text, #ffffff) !important;
}

.bookings-header__title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.bookings-header__subtitle {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 2px 0 0 0;
}

.bookings-header__btn {
  background: var(--club-bg, #667eea);
  color: var(--club-text, #ffffff);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.bookings-header__btn:hover {
  opacity: 0.9;
}

.bookings-dob-warning {
  background: #f59e0b;
  border-radius: 16px;
  padding: 20px;
  color: #ffffff;
}
.bookings-dob-warning p {
  font-weight: 600;
  margin-bottom: 16px;
}

.bookings-dob-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.bookings-dob-form .form-select {
  width: auto;
  min-width: 80px;
}

.bookings-content-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

.bookings-filter-bar {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  padding: 10px 12px;
  margin-bottom: 16px;
}

.bookings-filter-bar__content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bookings-filter-btn {
  background: #f9fafb;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.bookings-filter-btn:hover {
  background: #e5e7eb;
}

.bookings-filter-count {
  display: none;
  background: var(--club-bg, #667eea);
  color: var(--club-text, #ffffff);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 11px;
  min-width: 18px;
  text-align: center;
}

.bookings-credits-btn {
  background: var(--club-button, #667eea);
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--club-text, #ffffff);
  cursor: pointer;
  flex-shrink: 0;
}

.bookings-filter-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  flex: 1;
  padding: 2px 0;
  -webkit-overflow-scrolling: touch;
}
.bookings-filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--club-button, #667eea);
  color: var(--club-text, #ffffff);
  padding: 4px 8px;
  border-radius: 24px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-chip .remove-chip {
  cursor: pointer;
  opacity: 0.8;
  font-size: 10px;
}
.filter-chip .remove-chip:hover {
  opacity: 1;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 767.98px) {
  .filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.filter-item {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 12px;
  background: var(--club-bg, #667eea);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
  opacity: 0.35;
  border: 2px solid transparent;
}
.filter-item:hover {
  opacity: 0.6;
}
.filter-item.selected {
  opacity: 1;
  border-color: var(--club-color, #667eea);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
}

.filter-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.filter-item--no-photo {
  background: linear-gradient(135deg, var(--club-color, #667eea) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.filter-item-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 0;
}

.filter-item-name {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.filter-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.filter-section-header span {
  font-weight: 600;
  color: #1f2937;
}

.select-all-btn {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 0.75rem;
  color: var(--club-color, #667eea);
  cursor: pointer;
}

.bookings-empty {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

.bookings-empty__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.bookings-empty__icon i {
  font-size: 32px;
  color: #6b7280;
}

.bookings-empty__title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.bookings-empty__text {
  color: #4b5563;
  margin: 0;
}

.bookings-modal .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}
.bookings-modal .modal-header {
  background: var(--club-bg, #667eea);
  color: var(--club-text, #ffffff);
  border: none;
  padding: 16px 20px;
}
.bookings-modal .modal-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  margin: 0;
}
.bookings-modal .modal-body {
  padding: 20px;
}
.bookings-modal .modal-footer {
  border-top: 1px solid #e5e7eb;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
}

.bookings-modal__filter-dialog {
  margin: 1rem auto;
  max-height: calc(100vh - 2rem);
}
.bookings-modal__filter-dialog .modal-content {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 2rem);
}
.bookings-modal__filter-dialog .modal-header,
.bookings-modal__filter-dialog .modal-footer {
  flex-shrink: 0;
}
.bookings-modal__filter-dialog .modal-body {
  overflow-y: auto;
  flex: 1 1 auto;
}

.bookings-modal__pay-dialog {
  margin: 1rem auto;
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
}
.bookings-modal__pay-dialog .modal-content {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  border-radius: 16px;
  overflow: hidden;
}
.bookings-modal__pay-dialog .modal-header {
  flex-shrink: 0;
  border: none;
  padding: 16px 20px;
}
.bookings-modal__pay-dialog .modal-title {
  font-weight: 600;
}
.bookings-modal__pay-dialog .modal-body {
  overflow-y: auto;
  flex: 1 1 auto;
  padding: 24px;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767.98px) {
  .bookings-modal__pay-dialog {
    margin: 0.5rem;
    max-height: calc(100vh - 1rem - 85px);
    max-height: calc(100dvh - 1rem);
  }
  .bookings-modal__pay-dialog .modal-content {
    max-height: calc(100vh - 1rem - 85px);
    max-height: calc(100dvh - 1rem);
  }
}

@media (min-width: 768px) {
  .day-events {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (min-width: 1400px) {
  .day-events {
    grid-template-columns: repeat(2, 1fr);
  }
}

.event-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 140px;
  max-height: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.event-card:hover .event-card__bg {
  transform: scale(1.08);
}
.event-card:hover .event-card__overlay {
  opacity: 0.75;
}
.event-card--booked .event-card__overlay {
  background: linear-gradient(to right, #059669 0%, #059669 30%, transparent 100%);
}
.event-card--past {
  opacity: 0.6;
}
.event-card--past:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.event-card--past .event-card__bg {
  filter: grayscale(50%);
}
@media (max-width: 767.98px) {
  .event-card {
    min-height: 130px;
    max-height: none;
  }
}

.event-card__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 65%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
}

.event-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--club-bg, #667eea) 0%, var(--club-bg, #667eea) 30%, transparent 100%);
}

.event-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--club-bg, #667eea) 0%, var(--club-color, #667eea) 100%);
}
.event-card__placeholder::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}
.event-card__placeholder::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
}

.event-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: auto;
  min-height: 140px;
  padding: 20px;
  color: white;
}
@media (min-width: 992px) {
  .event-card__content {
    height: 160px;
  }
}
@media (max-width: 767.98px) {
  .event-card__content {
    min-height: 130px;
    padding: 16px;
  }
}

.event-card__time-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 20px;
  min-width: 70px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .event-card__time-block {
    padding-right: 14px;
    margin-right: 14px;
    min-width: 60px;
  }
}

.event-card__time {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767.98px) {
  .event-card__time {
    font-size: 24px;
  }
}

.event-card__duration {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-card__allday {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 100px;
}

.event-card__title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .event-card__title {
    font-size: 17px;
    margin-bottom: 4px;
  }
}

.event-card__meta {
  font-size: 14px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.event-card__meta i {
  opacity: 0.7;
}
@media (max-width: 767.98px) {
  .event-card__meta {
    font-size: 13px;
  }
}

.event-card__restriction {
  font-size: 13px;
  color: #fbbf24;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.event-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding-left: 16px;
  flex-shrink: 0;
  max-width: 140px;
}
@media (max-width: 767.98px) {
  .event-card__actions {
    padding-left: 12px;
    max-width: 110px;
  }
}

.event-card__spots {
  font-size: 13px;
  font-weight: 600;
  background: var(--club-color, #667eea);
  color: var(--club-color-text, white);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .event-card__spots {
    font-size: 12px;
    padding: 3px 10px;
  }
}

.event-card__full {
  font-size: 13px;
  font-weight: 600;
  background: rgba(239, 68, 68, 0.8);
  padding: 4px 12px;
  border-radius: 20px;
}

.event-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.event-card__btn--book {
  background: var(--club-button, white);
  color: var(--club-button-text, #1f2937);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.event-card__btn--book:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
  color: var(--club-button-text, #1f2937);
}
.event-card__btn--booked {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  backdrop-filter: blur(4px);
}
.event-card__btn--booked:hover {
  background: rgba(255, 255, 255, 0.35);
  color: white;
}
.event-card__btn--cancel {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.event-card__btn--cancel:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}
.event-card__btn--waitlist {
  background: #fbbf24;
  color: #1f2937;
}
.event-card__btn--waitlist:hover {
  background: #f59e0b;
  color: #1f2937;
  transform: scale(1.05);
}
@media (max-width: 767.98px) {
  .event-card__btn--waitlist {
    padding: 8px 12px;
    font-size: 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
}
.event-card__btn--on-waitlist {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  backdrop-filter: blur(4px);
}
.event-card__btn--on-waitlist:hover {
  background: rgba(255, 255, 255, 0.35);
  color: white;
}
@media (max-width: 767.98px) {
  .event-card__btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}

.bookings-credit-item {
  background: #f9fafb;
  border-radius: 12px;
  padding: 16px;
  border-left: 4px solid var(--club-color, #667eea);
}

.bookings-credit-item__name {
  font-weight: 600;
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 4px;
}

.bookings-credit-item__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #4b5563;
}
.bookings-credit-item__meta strong {
  color: var(--club-color, #667eea);
}

.draft-preview-banner {
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
}
.draft-preview-banner i {
  margin-right: 8px;
}

.content-tile {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
  min-height: 120px;
}
.content-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
  text-decoration: none;
}

.content-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.content-tile-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.child-pages-section {
  margin-top: 32px;
  margin-bottom: 32px;
}

.membership-page {
  background: #f9fafb;
  min-height: 100vh;
  padding: 24px;
}
@media (max-width: 767.98px) {
  .membership-page {
    padding: 16px;
  }
}

.membership-card-horizontal {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .membership-card-horizontal {
    flex-direction: column;
  }
}

.membership-card-image {
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .membership-card-image {
    width: 100% !important;
    min-height: 120px !important;
  }
}

.membership-card-content {
  padding: 16px;
  flex: 1;
  min-width: 200px;
}
@media (max-width: 767.98px) {
  .membership-card-content {
    min-width: 100%;
  }
}

.membership-actions {
  min-width: 180px;
  background: #f9fafb;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-left: 1px solid #e5e7eb;
}
@media (max-width: 767.98px) {
  .membership-actions {
    min-width: 100%;
    border-left: none;
    border-top: 1px solid #e5e7eb;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.payment-required-section {
  flex: 1;
  min-width: 280px;
  background: #fef2f2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .payment-required-section {
    min-width: 100%;
  }
}

.page-header-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--club-bg, #667eea) 0%, var(--club-color, #667eea) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .page-header-icon {
    width: 40px !important;
    height: 40px !important;
  }
}
.page-header-icon i {
  color: var(--club-text, #ffffff) !important;
  font-size: 1.25rem;
}

.criteria-modal {
  margin: 1rem auto;
  max-height: calc(100vh - 2rem);
}
.criteria-modal .modal-content {
  border-radius: 24px;
  border: none;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 2rem);
}
.criteria-modal .modal-header {
  border: none;
  padding: 20px;
  flex-shrink: 0;
}
.criteria-modal .modal-header .modal-title {
  color: #ffffff;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  margin: 0;
}
.criteria-modal .modal-header .btn-close-white {
  filter: brightness(0) invert(1);
}
.criteria-modal .modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1 1 auto;
}
.criteria-modal .modal-footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 16px 24px;
  flex-shrink: 0;
}
.criteria-modal .modal-footer .btn {
  font-weight: 600;
  padding: 12px 24px;
  border: none;
}
@media (max-width: 767.98px) {
  .criteria-modal {
    margin: 0.5rem;
    max-height: calc(100vh - 1rem);
    max-height: calc(100dvh - 1rem);
  }
  .criteria-modal .modal-content {
    max-height: calc(100vh - 1rem);
    max-height: calc(100dvh - 1rem);
  }
}

.criteria-modal--cancel {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.criteria-modal--freeze {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.membership-success-banner {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.membership-success-banner i {
  font-size: 1.25rem;
}
.membership-success-banner span {
  font-weight: 500;
}

.membership-section {
  margin-bottom: 32px;
}

.membership-section__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.membership-section__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-section__icon i {
  color: #ffffff;
  font-size: 16px;
}
.membership-section__icon--amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.membership-section__icon--green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.membership-section__icon--gray {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.membership-section__title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.membership-section__count {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.membership-section__count--amber {
  background: #fef3c7;
  color: #92400e;
}
.membership-section__count--green {
  background: #d1fae5;
  color: #065f46;
}
.membership-section__count--gray {
  background: #f3f4f6;
  color: #6b7280;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.membership-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.membership-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}
.membership-card--payment-required {
  border: 2px solid #ef4444;
}
.membership-card--expired {
  opacity: 0.8;
}

.membership-card__banner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-card__banner--pending-image {
  height: 120px;
}
.membership-card__banner--pending-placeholder {
  height: 80px;
}
.membership-card__banner--pending-placeholder .membership-card__banner-icon {
  font-size: 28px;
}
.membership-card__banner--expired-image {
  height: 100px;
  filter: grayscale(50%);
}
.membership-card__banner--expired-placeholder {
  height: 60px;
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}
.membership-card__banner--expired-placeholder .membership-card__banner-icon {
  font-size: 24px;
}
.membership-card__banner .membership-card__banner-icon {
  color: #ffffff;
  opacity: 0.5;
}

.membership-card-image--with-picture {
  width: 120px;
  min-height: 140px;
}

.membership-card-image--no-picture {
  width: 70px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-card-image--no-picture .membership-card__banner-icon {
  color: #ffffff;
  font-size: 1.25rem;
  opacity: 0.5;
}

.membership-card__body {
  padding: 16px;
}

.membership-card__badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.membership-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 12px;
}
.membership-card__name--expired {
  color: #6b7280;
}

.membership-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}
.membership-card__meta--expired {
  color: #9ca3af;
}

.membership-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.membership-card__meta-item--multi {
  align-items: flex-start;
}
.membership-card__meta-item--multi i {
  margin-top: 2px;
}

.membership-card__meta-icon {
  width: 16px;
  color: #9ca3af;
}

.membership-card__amount {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.membership-card__amount-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.membership-card__amount-value {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.membership-card__amount-divider {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.membership-card__amount-value--lg {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
}

.membership-card__inner {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
}

.membership-badge--renew {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
}
.membership-badge--renew:hover {
  text-decoration: none;
  color: #ffffff;
}

.payment-required-section__title {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px;
  text-align: center;
}
.payment-required-section__title i {
  color: #ef4444;
  margin-right: 8px;
}

.payment-required-section__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-required-section__divider {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #fecaca;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.membership-pay-btn {
  flex: 1;
  min-width: 140px;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.membership-pay-btn:hover {
  text-decoration: none;
  color: #ffffff;
}
.membership-pay-btn--dd {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.membership-pay-btn--card {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.membership-action-btn {
  background: #ffffff;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.membership-action-btn .fa-snowflake {
  color: #3b82f6;
}
.membership-action-btn .fa-times {
  color: #ef4444;
}

.membership-action-btn--sm {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  display: inline-flex;
}

.membership-action-btn--revoke-freeze {
  background: #dbeafe;
  color: #1d4ed8;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
}

.membership-action-btn--revoke-cancel {
  background: #fee2e2;
  color: #dc2626;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
}

.membership-renew-btn {
  display: block;
  background: linear-gradient(135deg, var(--club-color, #667eea) 0%, var(--club-color, #667eea) 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  margin-top: 16px;
}
.membership-renew-btn:hover {
  text-decoration: none;
  color: #ffffff;
}

.membership-modal .modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
}

.membership-modal__header {
  border: none;
  padding: 20px;
}
.membership-modal__header--club {
  background: linear-gradient(135deg, var(--club-bg, #667eea) 0%, var(--club-color, #667eea) 100%);
}
.membership-modal__header--club .modal-title {
  color: var(--club-text, #ffffff);
  font-weight: 600;
  margin: 0;
}
.membership-modal__header--danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.membership-modal__header--danger .modal-title {
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}
.membership-modal__header--info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}
.membership-modal__header--info .modal-title {
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

.membership-modal__body {
  padding: 24px;
}

.membership-modal__footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 16px 24px;
}

.membership-modal__submit {
  font-weight: 600;
  padding: 12px 24px;
  border: none;
}
.membership-modal__submit--success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
}
.membership-modal__submit--club {
  background: var(--club-button, var(--club-color, #667eea));
  color: var(--club-button-text, #ffffff);
}

#miniCartBar {
  bottom: 90px;
}

#saleDetailsPanel {
  padding-bottom: 170px !important;
}

.is-mobile-app #miniCartBar {
  bottom: 0;
}
.is-mobile-app #saleDetailsPanel {
  padding-bottom: 80px !important;
}

@media (min-width: 992px) {
  #miniCartBar {
    bottom: 0;
  }
  #saleDetailsPanel {
    padding-bottom: 80px !important;
  }
}
.awards-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
}
@media (min-width: 992px) {
  .awards-page {
    padding: 32px;
  }
}

.awards-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.awards-header__icon {
  width: 56px;
  height: 56px;
  background: var(--club-bg, #667eea);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.awards-header__icon i {
  font-size: 24px;
}

.awards-header__text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px;
}
@media (min-width: 992px) {
  .awards-header__text h1 {
    font-size: 1.875rem;
  }
}
.awards-header__text p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.awards-summary {
  background: var(--club-bg, #667eea);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.awards-summary__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.awards-summary__number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--club-text, #ffffff);
  line-height: 1;
}
@media (min-width: 992px) {
  .awards-summary__number {
    font-size: 3rem;
  }
}

.awards-summary__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--club-text, #ffffff);
  opacity: 0.9;
}

.awards-empty {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
  padding: 48px 24px;
  text-align: center;
}

.awards-empty__icon {
  width: 100px;
  height: 100px;
  background: #f3f4f6;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.awards-empty__icon i {
  font-size: 40px;
  color: #9ca3af;
}

.awards-empty h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px;
}

.awards-empty p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0 0 24px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.awards-empty__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--club-button, var(--club-bg, #667eea));
  color: var(--club-text, #ffffff);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}
.awards-empty__btn:hover {
  opacity: 0.9;
  text-decoration: none;
  color: var(--club-text, #ffffff);
}

.award-featured {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}

.award-featured__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.award-featured__badge i {
  font-size: 10px;
}

.award-featured__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .award-featured__content {
    flex-direction: row;
  }
}

.award-featured__image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #f9fafb 100%);
  padding: 32px;
}
@media (min-width: 768px) {
  .award-featured__image {
    width: 280px;
    height: auto;
    min-height: 240px;
    flex-shrink: 0;
  }
}
.award-featured__image img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .award-featured__image img {
    max-height: 180px;
  }
}
.award-featured__image--placeholder {
  background: #f9fafb;
  position: relative;
}

.award-featured__details {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .award-featured__details {
    padding: 32px;
  }
}
.award-featured__details h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .award-featured__details h2 {
    font-size: 1.5rem;
  }
}

.award-featured__description {
  font-size: 1rem;
  color: #4b5563;
  margin: 0 0 16px;
  line-height: 1.625;
}

.award-featured__date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #6b7280;
}
.award-featured__date i {
  color: var(--club-bg, #667eea);
}

.awards-section {
  margin-bottom: 32px;
}

.awards-section__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.awards-section__title i {
  color: var(--club-bg, #667eea);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.award-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: 0.2s ease;
}
.award-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
}

.award-card__image {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #f9fafb 100%);
  padding: 16px;
}
.award-card__image img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}
.award-card__image--placeholder {
  background: #f9fafb;
  position: relative;
}

.award-card__content {
  padding: 16px;
}

.award-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px;
  line-height: 1.375;
}

.award-card__date {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.award-card__date i {
  font-size: 13px;
  color: #10b981;
}

.awards-single-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #dbeafe;
  color: #2563eb;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  margin-top: 16px;
}
.awards-single-note i {
  flex-shrink: 0;
}

.awards-back {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f3f4f6;
}

.awards-back__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.2s ease;
}
.awards-back__btn:hover {
  color: #1f2937;
  background: #f3f4f6;
  text-decoration: none;
}
.awards-back__btn i {
  font-size: 13px;
}

.award-badge {
  width: 80px;
  height: 80px;
  background: var(--club-bg, #667eea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.2);
}
.award-badge::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.award-badge i {
  font-size: 28px;
  color: var(--club-text, #ffffff);
}
.award-badge--lg {
  width: 100px;
  height: 100px;
}
.award-badge--lg::before {
  inset: 8px;
  border-width: 3px;
}
.award-badge--lg i {
  font-size: 36px;
}

.award-ribbon {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 0;
}
.award-ribbon::before, .award-ribbon::after {
  content: "";
  width: 16px;
  height: 36px;
  background: var(--club-bg, #667eea);
  opacity: 0.6;
}
.award-ribbon::before {
  transform: skewX(-10deg);
  border-radius: 0 0 2px 4px;
}
.award-ribbon::after {
  transform: skewX(10deg);
  border-radius: 0 0 4px 2px;
}
.award-ribbon--lg {
  bottom: 12px;
  gap: 6px;
}
.award-ribbon--lg::before, .award-ribbon--lg::after {
  width: 20px;
  height: 48px;
}

.page-header {
  margin-bottom: 32px;
  padding: 24px 20px 0;
}

.page-header-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}
.page-header-icon i {
  font-size: 22px;
}

.page-header-subtitle {
  font-size: 15px;
  margin-top: 2px;
}

.activity-section {
  margin-bottom: 40px;
  padding: 0 20px;
}

.activity-section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.activity-section-subtitle {
  font-size: 15px;
  margin-bottom: 20px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
}

@media (max-width: 400px) {
  .activity-grid {
    grid-template-columns: 1fr;
  }
}
.activity-card {
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: 480px;
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
}

.activity-card-image {
  height: 200px;
  border-radius: 16px 16px 0 0;
}

.activity-card-placeholder i {
  font-size: 40px;
}

.activity-card-content {
  padding: 20px 20px 10px;
}

.activity-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.activity-card-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.activity-card-footer {
  padding: 8px 20px 20px;
}

.activity-card-badge {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}
.activity-card-badge i {
  font-size: 13px;
}

.messages-info-card {
  padding: 24px;
  text-align: center;
}

.messages-notification-card, .messages-info-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

.messages-info-icon {
  width: 64px;
  height: 64px;
  background: #fef3c7;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.messages-info-icon i {
  font-size: 28px;
  color: #f59e0b;
}

.messages-info-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px;
}

.messages-info-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.messages-modal-header {
  background: linear-gradient(135deg, var(--club-bg) 0%, var(--club-color) 100%);
  padding: 20px;
}
.messages-modal-header .modal-title {
  color: var(--club-text);
  font-weight: 600;
  margin: 0;
}

.messages-modal-body {
  padding: 24px;
}

.messages-notification-card {
  overflow: hidden;
}

.messages-notification-body {
  padding: 16px;
}

.profile-header {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
  margin-bottom: 16px;
  font-size: 2.2rem;
}

.profile-avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--club-bg, #667eea) 0%, var(--club-color, #667eea) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.profile-avatar-placeholder span {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px;
}

.profile-email {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.profile-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.profile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.profile-action-btn:hover {
  background: #e5e7eb;
  text-decoration: none;
  color: #1f2937;
}

.profile-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-action-icon i {
  font-size: 18px;
  color: #ffffff;
}

.profile-form-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  padding: 24px;
  margin-bottom: 24px;
}

.profile-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}

.profile-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--club-button, #667eea);
  color: var(--club-button-text, #ffffff);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.profile-edit-btn:hover {
  filter: brightness(0.95);
}

.profile-save-btn {
  background: #10b981;
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.profile-upload-area {
  border: 2px dashed #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.profile-upload-area:hover {
  border-color: var(--club-color, #667eea);
  background: #f9fafb;
}

.profile-upload-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-delete-section {
  border-top: 1px solid #e5e7eb;
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
}

.profile-delete-btn {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: underline;
}

.profile-pending-delete {
  display: none;
  background: #fee2e2;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
}
.profile-pending-delete span {
  color: #dc2626;
  font-weight: 500;
}

.profile-app-spacer {
  height: 100px;
}

.dc-page {
  background: #f5f5f5;
  min-height: 100vh;
  padding: 24px;
}

.dc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
}

.dc-back-link__wrap {
  margin-bottom: 24px;
}

.dc-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dc-message .fa {
  font-size: 20px;
}

.dc-header {
  text-align: center;
  margin-bottom: 32px;
}

.dc-header__icon-wrap {
  width: 64px;
  height: 64px;
  background: #f3f4f6;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dc-header__icon-wrap .fa {
  font-size: 28px;
}

.dc-header__title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px;
}

.dc-header__subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

.dc-form {
  max-width: 600px;
  margin: 0 auto;
}

.dc-form__card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.dc-form__body {
  padding: 24px;
}

.dc-form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dc-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dc-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.dc-input {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  width: 100%;
}
.dc-input--readonly {
  background: #f9fafb;
}

.dc-error {
  font-size: 13px;
}

.dc-error--photo {
  display: block;
  text-align: center;
  margin-top: 8px;
}

.dc-section {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-top: 8px;
}
.dc-section__title {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.dc-housenumber-hint p {
  font-size: 13px;
  color: #6b7280;
}

.dc-address-toggle {
  color: #6b7280;
  font-size: 13px;
}

.dc-bool-attr {
  display: flex;
  align-items: center;
}
.dc-bool-attr input {
  width: 20px;
  height: 20px;
}

.dc-photo-validation-input {
  visibility: hidden;
  position: absolute;
}

.dc-form__footer {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 20px 24px;
  text-align: center;
}

.dc-submit-btn {
  border: none;
  padding: 14px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dc-app-spacer {
  height: 150px;
}

.dc-photo-modal__content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
}

.dc-photo-modal__header {
  border: none;
  padding: 16px 20px;
}

.dc-photo-modal__title {
  font-weight: 600;
  margin: 0;
}

.dc-photo-modal__body {
  padding: 24px;
}

.dc-photo-upload {
  margin-bottom: 24px;
}

.dc-photo-upload__title {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 12px;
}

.dc-photo-dropzone {
  display: block;
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.dc-photo-dropzone .fa {
  font-size: 32px;
  color: #9ca3af;
  margin-bottom: 12px;
  display: block;
}
.dc-photo-dropzone span {
  font-size: 14px;
  color: #6b7280;
}
.dc-photo-dropzone input[type=file] {
  display: none;
}

.dc-photo-webcam {
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
}

.dc-photo-webcam__viewer {
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.dc-photo-webcam__btn {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.ma-public {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1f2937;
  line-height: 1.6;
  background: #ffffff;
}
.ma-public *, .ma-public *::before, .ma-public *::after {
  box-sizing: border-box;
}

.public-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.public-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
}
.public-nav.scrolled .public-nav__link--ghost {
  color: #374151;
  background: #f3f4f6;
}
.public-nav.scrolled .public-nav__link--ghost:hover {
  background: #e5e7eb;
}
.public-nav.scrolled .public-nav__logo img {
  height: 40px;
}

.public-nav__logo img {
  height: 48px;
  width: auto;
  border-radius: 10px;
  transition: all 0.3s;
}

.public-nav__links {
  display: flex;
  gap: 12px;
}

.public-nav__link {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.public-nav__link--ghost {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.public-nav__link--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}
.public-nav__link--primary {
  color: var(--club-text);
  background: var(--club-button);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.public-nav__link--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.public-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.public-hero--short {
  min-height: 60vh;
}

.public-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.public-hero__background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.public-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  color: white;
}

.public-hero__logo {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 32px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 16px;
}

.public-hero__badge {
  display: inline-block;
  padding: 10px 24px;
  background: var(--club-button);
  color: var(--club-text);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.public-hero__title {
  font-size: clamp(42px, 10vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.public-hero--short .public-hero__title {
  font-size: clamp(36px, 8vw, 64px);
  margin-bottom: 20px;
}

.public-hero__subtitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 48px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.public-hero--short .public-hero__subtitle {
  font-size: 20px;
  margin-bottom: 40px;
}

.public-hero__meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.public-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  opacity: 0.95;
}
.public-hero__meta-item i {
  font-size: 18px;
  opacity: 0.8;
}

.public-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.public-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  opacity: 0.7;
  animation: public-bounce 2s infinite;
  font-size: 32px;
}

@keyframes public-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(12px);
  }
}
.public-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.public-btn--hero {
  background: var(--club-button);
  color: var(--club-text);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  font-size: 18px;
  padding: 20px 48px;
}
.public-btn--hero:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.public-btn--outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.public-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.public-btn--white {
  background: white;
  color: #1f2937;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.public-btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  color: #1f2937;
}
.public-btn--cta {
  background: white;
  color: #1f2937;
  padding: 22px 56px;
  font-size: 18px;
  border-radius: 16px;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.public-btn--cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  color: #1f2937;
}
.public-btn--disabled {
  background: #9ca3af;
  color: white;
  cursor: not-allowed;
}
.public-btn--club {
  background: var(--club-button);
  color: var(--club-text);
}

.public-section {
  padding: 100px 24px;
}
.public-section--light {
  background: #f8fafc;
}
.public-section--dark {
  background: #0f172a;
  color: white;
}
.public-section--dark .public-section__badge {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.public-section--dark .public-section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.public-section--sm {
  padding: 80px 24px;
}

.public-container {
  max-width: 1280px;
  margin: 0 auto;
}
.public-container--narrow {
  max-width: 1000px;
}

.public-section__header {
  text-align: center;
  margin-bottom: 64px;
}
.public-section__header--sm {
  margin-bottom: 48px;
}

.public-section__badge {
  display: inline-block;
  padding: 10px 20px;
  background: var(--club-color);
  color: var(--club-text);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.public-section__title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}
.public-section__title--sm {
  font-size: clamp(28px, 5vw, 44px);
  margin-bottom: 16px;
}

.public-section__subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}
.public-section__subtitle--sm {
  font-size: 17px;
}

.public-memberships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}
@media (max-width: 400px) {
  .public-memberships-grid {
    grid-template-columns: 1fr;
  }
}

.public-membership-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.public-membership-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  color: inherit;
}
.public-membership-card:hover .public-membership-card__cta i {
  transform: translateX(6px);
}

.public-membership-card__image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.public-membership-card__image-placeholder {
  height: 220px;
  background: linear-gradient(135deg, var(--club-color) 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.public-membership-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--club-button);
  color: var(--club-text);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.public-membership-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.public-membership-card__name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1f2937;
}

.public-membership-card__summary {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 24px;
  flex: 1;
  line-height: 1.6;
}

.public-membership-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
.public-membership-card__cta span {
  font-weight: 700;
  font-size: 16px;
  color: var(--club-color);
}
.public-membership-card__cta i {
  font-size: 20px;
  color: var(--club-color);
  transition: transform 0.3s;
}

.public-classes-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
@media (max-width: 1024px) {
  .public-classes-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .public-classes-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
}
@media (max-width: 480px) {
  .public-classes-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}

.public-class-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: white;
}
.public-class-tile:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.public-class-tile:nth-child(1) .public-class-tile__name {
  font-size: 32px;
}
.public-class-tile:nth-child(5) {
  grid-column: span 2;
}
.public-class-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 1;
  transition: all 0.4s;
}
.public-class-tile:hover {
  color: white;
}
.public-class-tile:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.public-class-tile:hover .public-class-tile__bg {
  transform: scale(1.1);
}

.public-class-tile__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.public-class-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.public-class-tile__name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.public-class-tile__meta {
  font-size: 14px;
  opacity: 0.9;
}

.public-cta {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}
.public-cta--simple {
  background: var(--club-color);
  padding: 80px 24px;
}

.public-cta__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.public-cta__background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--club-color) 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0.95;
}

.public-cta__content {
  position: relative;
  z-index: 1;
  color: white;
}
.public-cta--simple .public-cta__content {
  color: var(--club-text);
}

.public-cta__title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  margin-bottom: 20px;
}
.public-cta--simple .public-cta__title {
  font-size: clamp(28px, 5vw, 44px);
  color: var(--club-text);
  margin-bottom: 16px;
}

.public-cta__subtitle {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.public-cta--simple .public-cta__subtitle {
  font-size: 18px;
  color: var(--club-text);
  margin-bottom: 32px;
}

.public-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 24px 40px;
}
.public-footer--simple {
  padding: 60px 24px 40px;
}

.public-footer__content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
}
@media (max-width: 768px) {
  .public-footer__content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}
.public-footer--simple .public-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1000px;
}

.public-footer__brand img {
  height: 60px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.public-footer__brand p {
  opacity: 0.6;
  font-size: 16px;
  line-height: 1.7;
}
.public-footer--simple .public-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.public-footer--simple .public-footer__brand img {
  height: 48px;
  border-radius: 10px;
  margin-bottom: 0;
}

.public-footer__brand-name {
  font-size: 18px;
  font-weight: 700;
}

.public-footer__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  opacity: 0.5;
}

.public-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.public-footer__links a {
  color: var(--footer-text);
  opacity: 0.8;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 10px 0;
  transition: all 0.2s;
}
.public-footer__links a:hover {
  opacity: 1;
  padding-left: 8px;
}
.public-footer--simple .public-footer__links {
  display: flex;
  gap: 24px;
}
.public-footer--simple .public-footer__links a {
  opacity: 0.7;
  font-size: 14px;
  padding: 0;
}
.public-footer--simple .public-footer__links a:hover {
  opacity: 1;
  padding-left: 0;
}

.public-footer__bottom {
  max-width: 1280px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid currentColor;
  opacity: 0.2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .public-footer__bottom {
    justify-content: center;
    text-align: center;
  }
}
.public-footer--simple .public-footer__bottom {
  max-width: 1000px;
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  display: block;
  font-size: 13px;
  opacity: 0.5;
}

.public-footer__copyright {
  font-size: 14px;
}

.public-footer__powered {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.public-footer__powered img {
  height: 24px;
  opacity: 0.7;
}

.public-about-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.public-about-content {
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
}
.public-about-content p {
  margin-bottom: 16px;
}
.public-about-content p:last-child {
  margin-bottom: 0;
}

.public-sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.public-session-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.public-session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.public-session-card__date {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.public-session-card__date-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--club-color), var(--club-button));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--club-text);
}

.public-session-card__date-day {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.public-session-card__date-month {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.public-session-card__info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.public-session-card__time {
  font-size: 14px;
  color: #6b7280;
}

.public-session-card__details {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #6b7280;
}
.public-session-card__details span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.public-session-card__btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--club-button);
  color: var(--club-text);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.public-session-card__btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--club-text);
}

.public-content-sections {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.public-content-tile {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.public-content-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  color: inherit;
}

.public-content-tile__header {
  padding: 20px;
  background: linear-gradient(135deg, var(--club-color), var(--club-button));
  color: var(--club-text);
}

.public-content-tile__title {
  font-size: 18px;
  font-weight: 700;
}

.public-content-tile__body {
  padding: 20px;
}

.public-content-tile__excerpt {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.public-unlock-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.public-unlock-card--danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}
.public-unlock-card--danger .public-unlock-card__icon {
  background: rgba(255, 255, 255, 0.2);
}
.public-unlock-card--danger .public-unlock-card__icon i {
  color: white;
}
.public-unlock-card--danger .public-unlock-card__title {
  color: white;
}
.public-unlock-card--danger .public-unlock-card__text {
  color: rgba(255, 255, 255, 0.9);
}

.public-unlock-card__icon {
  width: 80px;
  height: 80px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.public-unlock-card__icon i {
  font-size: 32px;
  color: #6b7280;
}

.public-unlock-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.public-unlock-card__text {
  color: #6b7280;
  margin-bottom: 32px;
}

.public-unlock-card__options {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.public-unlock-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
}
.public-unlock-option--primary {
  background: var(--club-button);
  color: var(--club-text);
}
.public-unlock-option--secondary {
  background: #f3f4f6;
  color: #1f2937;
}
.public-unlock-option--secondary i {
  color: var(--club-color);
}
.public-unlock-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.public-unlock-option i {
  font-size: 28px;
}
.public-unlock-option span {
  font-weight: 600;
}

.public-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .public-details-grid {
    grid-template-columns: 1fr;
  }
}

.public-detail-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.public-detail-card--full {
  grid-column: 1/-1;
}

.public-detail-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.public-detail-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--club-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--club-text);
  font-size: 22px;
}

.public-detail-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.public-detail-card__content {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}
.public-detail-card__content p {
  margin-bottom: 16px;
}
.public-detail-card__content p:last-child {
  margin-bottom: 0;
}

.public-payment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.public-payment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 12px;
}

.public-payment-item__name {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.public-payment-item__date {
  font-size: 14px;
  color: #6b7280;
}

.public-payment-item__amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--club-color);
}

.public-promo {
  text-align: center;
  padding: 40px;
}

.public-promo__icon {
  width: 64px;
  height: 64px;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.public-promo__icon i {
  font-size: 28px;
  color: #f59e0b;
}

.public-promo__title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.public-promo__text {
  color: #6b7280;
  margin-bottom: 24px;
}

.public-promo__input {
  max-width: 300px;
  margin: 0 auto;
}
.public-promo__input input {
  width: 100%;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
}
.public-promo__input input:focus {
  border-color: var(--club-color);
  box-shadow: 0 0 0 3px rgba(var(--club-color-rgb, 59, 130, 246), 0.15);
}

.public-promo__error {
  background: #fee2e2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
}

.public-unavailable {
  background: #fee2e2;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.public-unavailable i {
  font-size: 32px;
  color: #dc2626;
  margin-bottom: 16px;
}
.public-unavailable h3 {
  color: #dc2626;
  margin-bottom: 8px;
}
.public-unavailable p {
  color: #991b1b;
}

.public-about-card--editable {
  position: relative;
  transition: all 0.3s ease;
}
.public-about-card--editable::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 2px dashed transparent;
  pointer-events: none;
  transition: all 0.3s ease;
}
.public-about-card--editable:hover::after {
  border-color: rgba(59, 130, 246, 0.3);
}
.public-about-card--editable.is-editing {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), 0 4px 24px rgba(0, 0, 0, 0.1);
}
.public-about-card--editable.is-editing::after {
  border-color: #3b82f6;
  border-style: solid;
}

.public-about-content--placeholder {
  color: #9ca3af;
  font-style: italic;
}

@media (max-width: 768px) {
  .public-nav__link span {
    display: none;
  }
  .public-hero__meta {
    gap: 16px;
  }
  .public-footer__content {
    flex-direction: column;
    text-align: center;
  }
  .public-footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/*# sourceMappingURL=memberarea-custom.css.map */
