@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --club-felt: #0f3d2e;
  --club-felt-deep: #08261c;
  --club-gold: #e8c547;
  --club-amber: #f0ad4e;
  --club-purple: #5b47fb;
  --club-red: #e11d48;
  --club-ivory: #f7f3ea;
  --club-ink: #0f1728;
}

body {
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(91, 71, 251, 0.08), transparent 50%),
    radial-gradient(900px 360px at 110% 0%, rgba(14, 61, 46, 0.08), transparent 45%),
    #f4f0f6 !important;
}

body.club-app {
  background:
    linear-gradient(180deg, rgba(247, 243, 234, 0.78) 0%, rgba(244, 240, 246, 0.86) 100%),
    url("../../../images/club/club-app-bg.jpg") center / cover no-repeat fixed
    !important;
}

.az-header {
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(3, 27, 78, 0.06);
}

.club-app .az-header {
  background: rgba(255, 255, 255, 0.78) !important;
}

.club-app .az-footer {
  background: rgba(255, 255, 255, 0.72);
  border-top-color: rgba(15, 61, 46, 0.08);
}

.az-logo {
  letter-spacing: 0.5px;
}

.az-header .az-logo {
  text-transform: none;
  font-family: Outfit, "Segoe UI", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.club-timer,
.club-ring-label,
.az-dashboard-title,
.club-stat-value {
  font-family: Outfit, "Segoe UI", sans-serif;
}

/* ----- Floor / page hero ----- */
.club-floor-hero,
.club-page-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(8, 38, 28, 0.58), rgba(12, 42, 70, 0.62)),
    url("../../../images/club/club-hero-bg.jpg") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
  position: relative;
  animation: clubHeroIn 0.6s ease both;
  box-shadow: 0 16px 36px rgba(8, 38, 28, 0.22);
  min-height: 132px;
}

.club-floor-hero::after,
.club-page-hero::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0 10%, #e11d48 11% 72%, #7f1d1d 73%);
  opacity: 0.18;
  animation: clubFloat 6s ease-in-out infinite;
}

.club-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  margin-bottom: 4px;
  color: var(--club-gold);
  font-weight: 700;
}

.club-floor-hero .az-dashboard-title,
.club-floor-hero h2,
.club-page-hero .az-dashboard-title,
.club-page-hero h2 {
  color: #fff;
  margin-bottom: 4px;
}

.club-floor-hero .az-dashboard-text,
.club-page-hero .az-dashboard-text {
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.club-page-hero > div,
.club-page-hero > .btn,
.club-page-hero > .club-hero-stats,
.club-page-hero > .club-filter {
  position: relative;
  z-index: 1;
}

.club-hero-stats {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.club-chip {
  min-width: 110px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.club-chip label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.club-chip strong {
  font-size: 18px;
  font-family: Outfit, sans-serif;
}

/* ----- Table cards ----- */
.club-floor-grid > [class*="col-"] > div {
  height: 100%;
}

.club-table-card {
  min-height: 360px;
  height: 100%;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 40, 0.08);
  transform: none;
  opacity: 1;
  animation: clubCardIn 0.5s ease backwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.club-floor-grid > [class*="col-"]:nth-child(1) .club-table-card { animation-delay: 0.05s; }
.club-floor-grid > [class*="col-"]:nth-child(2) .club-table-card { animation-delay: 0.12s; }
.club-floor-grid > [class*="col-"]:nth-child(3) .club-table-card { animation-delay: 0.19s; }
.club-floor-grid > [class*="col-"]:nth-child(4) .club-table-card { animation-delay: 0.26s; }
.club-floor-grid > [class*="col-"]:nth-child(5) .club-table-card { animation-delay: 0.33s; }
.club-floor-grid > [class*="col-"]:nth-child(6) .club-table-card { animation-delay: 0.4s; }

.club-table-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 40, 0.14);
}

.club-table-card .card-body {
  padding: 18px 18px 16px;
  position: relative;
  z-index: 1;
}

.club-felt-bar {
  height: 8px;
  background:
    linear-gradient(90deg, #146b4e, #1f8a64 40%, #e8c547 70%, #e11d48);
  background-size: 200% 100%;
  animation: clubFeltShine 7s linear infinite;
}

.club-table-card.is-idle .club-felt-bar { filter: saturate(0.7); }
.club-table-card.is-running { box-shadow: 0 12px 32px rgba(91, 71, 251, 0.18); }
.club-table-card.is-century { box-shadow: 0 12px 32px rgba(240, 173, 78, 0.22); }
.club-table-card.is-time-up {
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.22), 0 12px 32px rgba(225, 29, 72, 0.18);
  animation: clubCardIn 0.5s ease backwards, clubDangerPulse 1.2s ease-in-out infinite;
}

.club-status {
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.club-status.is-idle { background: #e8f7ff; color: #0e7490; }
.club-status.is-running { background: #ece8ff; color: #5b47fb; }
.club-status.is-century { background: #fff4de; color: #b45309; }
.club-status.is-time-up { background: #ffe4e6; color: #be123c; animation: clubPulse 1s ease-in-out infinite; }

.club-table-name {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
}

.club-idle {
  text-align: center;
  padding: 18px 0 12px;
}

.club-ball {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff 0 14%, #e11d48 15% 72%, #7f1d1d 73%);
  box-shadow: 0 10px 18px rgba(127, 29, 29, 0.28), inset -6px -8px 12px rgba(0,0,0,0.18);
  animation: clubBallBounce 2.8s ease-in-out infinite;
}

.club-ball.is-gold {
  background: radial-gradient(circle at 32% 28%, #fff 0 14%, #e8c547 15% 72%, #a16207 73%);
}

.club-timer {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.club-ring-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 6px auto 12px;
}

.club-ring {
  width: 150px;
  height: 150px;
  transform: rotate(-90deg);
}

.club-ring-track,
.club-ring-value {
  fill: none;
  stroke-width: 9;
}

.club-ring-track { stroke: rgba(15, 23, 40, 0.08); }
.club-ring-value {
  stroke: var(--club-purple);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.7s linear;
  filter: drop-shadow(0 0 6px rgba(91, 71, 251, 0.35));
}

.is-century .club-ring-value {
  stroke: var(--club-amber);
  filter: drop-shadow(0 0 6px rgba(240, 173, 78, 0.45));
}

.is-time-up .club-ring-value { stroke: var(--club-red); }

.club-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.club-ring-label small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7987a1;
  margin-top: 4px;
}

.club-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.club-metric {
  background: #f7f5fb;
  border-radius: 12px;
  padding: 8px 10px;
}

.club-metric span {
  display: block;
  font-size: 11px;
  color: #7987a1;
}

.club-metric strong {
  font-family: Outfit, sans-serif;
  font-size: 15px;
}

.club-player {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.club-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #5b47fb, #7c3aed);
  flex-shrink: 0;
}

.club-avatar.sm {
  width: 28px;
  height: 28px;
  font-size: 11px;
}

.is-century .club-avatar {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.club-btn-play,
.club-btn-century,
.club-btn-stop,
.club-btn-canteen,
.club-btn-extend {
  border: 0;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.club-btn-play,
.club-btn-century,
.club-btn-stop,
.club-btn-extend {
  color: #fff !important;
}

.club-btn-play {
  background: linear-gradient(135deg, #5b47fb, #7c3aed);
  color: #fff;
  box-shadow: 0 8px 16px rgba(91, 71, 251, 0.28);
}

.club-btn-century {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 8px 16px rgba(217, 119, 6, 0.25);
}

.club-btn-stop {
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #fff;
}

.club-btn-canteen {
  background: #f3f0fa;
  color: #3f4d67;
}

.club-btn-extend {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
}

.club-btn-play:hover,
.club-btn-century:hover,
.club-btn-stop:hover,
.club-btn-extend:hover,
.club-btn-canteen:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  color: #fff;
}

.club-btn-canteen:hover { color: #3f4d67; }

/* ----- Modals ----- */
.club-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 28, 0.62);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
  animation: clubFadeIn 0.2s ease;
}

.club-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 2.5rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: clubPop 0.28s cubic-bezier(0.2, 0.9, 0.3, 1.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.club-modal-body {
  padding: 20px 22px 22px;
  overflow-y: auto;
}

.club-modal-title {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 4px;
}

.club-modal-sub {
  color: #7987a1;
  font-size: 13px;
  margin: 0 0 16px;
}

.club-modal .form-control {
  border-radius: 12px;
  min-height: 44px;
}

.club-modal .form-group {
  margin-bottom: 14px;
}

.club-bill-lines {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  border: 1px solid #eeeaf6;
  border-radius: 14px;
  overflow: hidden;
}

.club-bill-lines li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 14px;
  font-size: 14px;
  border-bottom: 1px solid #f1edf7;
}

.club-bill-lines li:last-child {
  border-bottom: 0;
}

.club-bill-lines span {
  color: #5b6478;
  line-height: 1.35;
}

.club-bill-lines strong {
  white-space: nowrap;
  font-family: Outfit, sans-serif;
}

.club-modal-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f6f3ff;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.club-modal-total span {
  color: #7987a1;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.club-modal-total strong {
  font-family: Outfit, sans-serif;
  font-size: 1.35rem;
}

.club-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.club-modal-actions .btn {
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.club-btn-unpaid {
  background: #fff7e8;
  color: #b45309 !important;
  border: 1px solid #f3d19a;
}

.club-btn-unpaid:hover {
  background: #ffefd0;
  color: #92400e !important;
}

.club-btn-ghost {
  background: #f4f5f8;
  color: #4e5f83 !important;
}

.club-btn-ghost:hover {
  background: #eceff4;
  color: #031b4e !important;
}

.club-canteen-row {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 10px;
}

.club-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.club-canteen-item,
.club-canteen-qty {
  margin-bottom: 12px !important;
}

.club-modal-lg { max-width: 640px; }

/* ----- Stats / tables ----- */
.club-stat-card {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.club-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 40, 0.1);
}

.club-stat-card h2,
.club-stat-value {
  font-size: 1.7rem;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
}

.club-split-card {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  border-left: 4px solid var(--club-purple);
}

.club-split-card.is-century { border-left-color: var(--club-amber); }
.club-split-card.is-canteen { border-left-color: #14b8a6; }

.az-content .card {
  border-radius: 16px;
  border: 0;
  box-shadow: 0 8px 24px rgba(15, 23, 40, 0.05);
}

.table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7987a1;
  border-top: 0;
}

/* ----- List pages: search + datatable + item cards ----- */
.club-panel {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 40, 0.07);
  overflow: hidden;
  margin-bottom: 20px;
}

.club-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #fbfafd, #f4f1fa);
  border-bottom: 1px solid #eeeaf6;
}

.club-search {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.club-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #7987a1;
  font-size: 18px;
  pointer-events: none;
}

.club-search .form-control {
  padding-left: 38px;
  border-radius: 12px;
  min-height: 42px;
  border-color: #e4deef;
  background: #fff;
}

.club-search .form-control:focus {
  border-color: #b9a8f5;
  box-shadow: 0 0 0 3px rgba(91, 71, 251, 0.12);
}

.club-filter {
  width: auto;
  min-width: 148px;
  border-radius: 12px;
  min-height: 42px;
  border-color: #e4deef;
}

.club-page-hero .club-filter {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  min-width: 170px;
}

.club-page-hero .club-filter:focus {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.22);
}

.club-page-hero input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.85;
}

.club-toolbar-note {
  margin-left: auto;
  font-size: 13px;
  color: #5b6478;
  font-weight: 600;
  white-space: nowrap;
}

.club-datatable {
  margin: 0;
}

.club-datatable thead th {
  background: #faf8fd;
  border-bottom: 1px solid #eeeaf6;
  padding: 12px 16px;
  font-weight: 700;
  white-space: nowrap;
}

.club-datatable tbody td {
  padding: 13px 16px;
  vertical-align: middle;
  border-top: 1px solid #f3f0f8;
}

.club-datatable tbody tr {
  transition: background 0.15s ease;
}

.club-datatable tbody tr:hover {
  background: #f8f5ff;
}

.club-cell-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.club-cell-user strong {
  display: block;
  font-weight: 600;
  line-height: 1.2;
}

.club-cell-user small {
  display: block;
  color: #7987a1;
  font-size: 12px;
}

.club-empty {
  text-align: center;
  padding: 36px 16px;
  color: #7987a1;
  font-size: 14px;
}

.club-pager {
  padding: 12px 16px;
  border-top: 1px solid #eeeaf6;
  background: #fbfafd;
}

.club-pager .pagination {
  margin: 0;
  justify-content: flex-end;
}

.club-pager .page-link {
  border-radius: 8px;
  margin-left: 4px;
  border-color: #e4deef;
  color: #5b47fb;
}

.club-pager .page-item.active .page-link {
  background: #5b47fb;
  border-color: #5b47fb;
}

.club-unpaid-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(90deg, #fff8ec, #fff);
  border-bottom: 1px solid #f3e6c8;
}

.club-unpaid-total {
  display: flex;
  align-items: center;
  gap: 12px;
}

.club-unpaid-total span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45309;
}

.club-unpaid-total strong {
  font-family: Outfit, sans-serif;
  font-size: 1.2rem;
  color: #92400e;
}

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

.club-item-add,
.club-item-card {
  border: 0;
  border-radius: 18px;
  min-height: 168px;
  padding: 18px;
  text-align: left;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 40, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.club-item-add {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 2px dashed #cfc4f3;
  background:
    linear-gradient(180deg, rgba(91, 71, 251, 0.06), rgba(255,255,255,0.9));
  color: inherit;
  cursor: pointer;
}

.club-item-add:hover,
.club-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 40, 0.12);
}

.club-item-plus {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5b47fb, #7c3aed);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.club-item-add strong,
.club-item-card h6 {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  margin: 0 0 4px;
}

.club-item-add small {
  color: #7987a1;
}

.club-item-price {
  font-family: Outfit, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #5b47fb;
  margin-bottom: 6px;
}

.club-item-card.is-hidden {
  opacity: 0.62;
  filter: grayscale(0.35);
}

.club-item-actions {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}

.club-item-empty {
  grid-column: 1 / -1;
  background: #fff;
  border-radius: 18px;
}

.club-settings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.club-settings-form {
  padding: 18px 20px 22px;
}

.club-settings-form .form-control {
  border-radius: 12px;
  min-height: 44px;
}

.club-settings-form textarea.form-control {
  min-height: 88px;
}

.club-settings-actions {
  margin-top: 8px;
}

.club-settings-preview {
  overflow: hidden;
}

.club-settings-preview-body {
  padding: 18px 20px 22px;
}

.club-settings-preview-body h3 {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  margin: 0 0 6px;
}

.club-settings-preview-body p {
  color: #7987a1;
  margin-bottom: 16px;
}

.club-settings-preview-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.club-settings-preview-body li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid #f1edf7;
  color: #3f4d67;
}

.club-settings-preview-body i {
  color: #5b47fb;
  font-size: 18px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .club-settings-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .club-form-grid {
    grid-template-columns: 1fr;
  }

  .club-toolbar-note,
  .club-unpaid-total {
    margin-left: 0;
    width: 100%;
  }

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

/* ----- Auth ----- */
body.club-auth {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(8, 38, 28, 0.55), rgba(15, 61, 46, 0.42) 45%, rgba(11, 42, 74, 0.58)),
    url("../../../images/club/club-auth-bg.jpg") center / cover no-repeat fixed
    !important;
}

.club-auth .az-signin-wrapper {
  background: transparent;
}

.club-auth .az-card-signin {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.28);
  animation: clubPop 0.45s ease;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  height: auto;
  min-height: 520px;
}

.club-auth .az-logo {
  text-transform: none;
  font-family: Outfit, "Segoe UI", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 4px;
}

.club-auth-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.45;
}

.club-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.2px);
  animation: clubFloat 7s ease-in-out infinite;
}

.club-orb-red {
  width: 90px;
  height: 90px;
  left: 8%;
  top: 18%;
  background: radial-gradient(circle at 32% 28%, #fff 0 12%, #e11d48 13% 74%, #7f1d1d 75%);
}

.club-orb-gold {
  width: 64px;
  height: 64px;
  right: 12%;
  bottom: 16%;
  background: radial-gradient(circle at 32% 28%, #fff 0 12%, #e8c547 13% 74%, #a16207 75%);
  animation-delay: -2s;
}

.club-orb-white {
  width: 42px;
  height: 42px;
  right: 22%;
  top: 22%;
  background: radial-gradient(circle at 32% 28%, #fff 0 30%, #e5e7eb 70%);
  animation-delay: -4s;
}

.az-logo span { display: inline-block; }

.alert {
  border: 0;
  border-radius: 12px;
  animation: clubPop 0.25s ease;
}

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

@keyframes clubHeroIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@keyframes clubPop {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

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

@keyframes clubPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes clubDangerPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.16), 0 12px 32px rgba(225, 29, 72, 0.12); }
  50% { box-shadow: 0 0 0 6px rgba(225, 29, 72, 0.08), 0 12px 36px rgba(225, 29, 72, 0.22); }
}

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

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

@keyframes clubFeltShine {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .club-table-card { opacity: 1; transform: none; }
  body.club-app,
  body.club-auth {
    background-attachment: scroll !important;
  }
}
