/* Le header est maintenant visible sur la page admin */

body:has(.admin-layout) {
  overflow: hidden;
  height: 100vh;
  background: #030306 !important;
}

body:has(.admin-layout)::after,
body:has(.admin-layout)::before {
  display: none !important;
  content: none !important;
}

html:has(.admin-layout) {
  background: #030306 !important;
}

html:has(.admin-layout)::after,
html:has(.admin-layout)::before {
  display: none !important;
  content: none !important;
}

html:has(.admin-layout) {
  overflow: hidden;
  height: 100vh;
}

body:has(.admin-layout)::-webkit-scrollbar,
html:has(.admin-layout)::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

body:has(.admin-layout)::-webkit-scrollbar-track,
html:has(.admin-layout)::-webkit-scrollbar-track {
  background: transparent;
}

body:has(.admin-layout)::-webkit-scrollbar-thumb,
html:has(.admin-layout)::-webkit-scrollbar-thumb {
  background: transparent;
}

body:has(.admin-layout) {
  scrollbar-width: none;
}

html:has(.admin-layout) {
  scrollbar-width: none;
}

.admin-page main {
  gap: 0;
  padding: 0;
}

main:has(.admin-layout) {
  padding: 0;
  margin: 0;
  gap: 0;
  background: #030306;
  overflow: hidden;
  height: 100vh;
}

main:has(.admin-layout)::after {
  display: none !important;
  content: none !important;
}

body:has(.admin-layout) footer,
body:has(.admin-layout) .vr-footer {
  display: none;
}

/* Style personnalisé pour le select de statut des tâches */
.task-status-select {
  position: relative;
  outline: none;
  transition: all 0.3s ease;
}

.task-status-select:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.task-status-select:focus {
  outline: 2px solid var(--accent-base);
  outline-offset: 2px;
}

.task-status-select option {
  padding: 0.5rem;
  font-weight: 500;
}

.task-status-select[data-current-status="pending"] option[value="pending"] {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.task-status-select[data-current-status="in_progress"] option[value="in_progress"] {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
}

.task-status-select[data-current-status="completed"] option[value="completed"] {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  height: calc(100vh - 80px);
  overflow: hidden;
}

.admin-sidebar {
  background: #050505;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.admin-sidebar__top {
  padding: 0.5rem clamp(2rem, 4vw, 3rem) 1rem;
  flex-shrink: 0;
}

.admin-sidebar__bottom {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 clamp(2rem, 4vw, 3rem) 2rem;
  min-height: 0;
}

/* Scrollbar invisible pour le menu de gauche */
.admin-sidebar__bottom::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.admin-sidebar__bottom::-webkit-scrollbar-track {
  background: transparent;
}

.admin-sidebar__bottom::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Pour Firefox */
.admin-sidebar__bottom {
  scrollbar-width: none;
}

.admin-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  margin-bottom: 0.5rem;
}

.admin-brand__logo {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.admin-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-brand__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 0.25rem;
}

.admin-brand__label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  font-weight: 500;
}

.admin-brand__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.admin-user-info {
  padding: 1.5rem clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  margin-top: auto;
  background: #050505;
  width: 100%;
  box-sizing: border-box;
}

.admin-user-info__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


.admin-user-info__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-base), var(--accent-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.admin-user-info__details {
  flex: 1;
  min-width: 0;
}

.admin-user-info__name {
  margin: 0 0 0.25rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-user-info__role {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-menu {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-left: -12px;
}

.admin-menu-category {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

/* S'assurer que admin-user-info n'hérite pas des styles de menu */
.admin-user-info {
  display: block !important;
}

.admin-user-info .admin-menu-category-title,
.admin-user-info .admin-menu a {
  display: none !important;
}


.admin-menu-category-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(206, 249, 250, 0.6);
  margin: 0;
  padding: 0.5rem 0 0.5rem 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: -0.85rem;
}

.admin-menu-category-title::before {
  content: '';
  width: 3px;
  height: 12px;
  background: linear-gradient(180deg, var(--accent-base), var(--accent-strong));
  border-radius: 2px;
  flex-shrink: 0;
}

.admin-menu-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(206, 249, 250, 0.2), transparent);
  margin-left: 0.5rem;
}

.admin-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  padding: 0.6rem 0 0.6rem 0.85rem;
  margin-left: -0.85rem;
  border-left: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.admin-menu a.active,
.admin-menu a:hover {
  color: #fff;
  border-color: var(--accent-base);
}

.admin-status {
  margin-top: auto;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.admin-main {
  background: #030306;
  height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}

.admin-main::after {
  display: none !important;
  content: none !important;
}

/* Scrollbar personnalisée pour la partie droite */
.admin-main::-webkit-scrollbar {
  width: 8px;
}

.admin-main::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.admin-main::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #cef9fa, #8be7ef);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.admin-main::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #8be7ef, #cef9fa);
}

/* Pour Firefox */
.admin-main {
  scrollbar-width: thin;
  scrollbar-color: #cef9fa rgba(255, 255, 255, 0.05);
}

.admin-layout .admin-hero,
.admin-layout .admin-panels,
.admin-layout .admin-grid {
  padding: clamp(2rem, 5vw, 4rem);
}

.admin-layout section {
  padding: 0;
}

.admin-page .hero__content {
  padding: 0;
}

.admin-page .page-hero {
  border-bottom: none;
}
.admin-hero {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 6rem);
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.1), rgba(5, 6, 12, 0.95));
}

.admin-hero__content {
  max-width: 720px;
}

.admin-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 6rem);
}

.admin-panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
}

.admin-user-edit-form {
  background: transparent !important;
  border: none !important;
  margin-top: 0 !important;
}

.admin-user-edit-form .admin-panel {
  background: rgba(255, 255, 255, 0.03) !important;
  border-top: 1px solid var(--border) !important;
}

.admin-panel h3 {
  margin: 0.5rem 0 1rem;
}

.admin-panel ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.admin-grid {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 6rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.admin-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
}

/* Styles pour les cartes d'offres dans le panel admin */
#offers-list {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)) !important;
}

@media (max-width: 768px) {
  #offers-list {
    grid-template-columns: 1fr !important;
  }
}

.admin-offer-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.admin-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-base), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.admin-offer-card:hover {
  border-color: rgba(206, 249, 250, 0.3);
  background: linear-gradient(135deg, rgba(206, 249, 250, 0.05), rgba(139, 231, 239, 0.02));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(206, 249, 250, 0.1);
}

.admin-offer-card:hover::before {
  opacity: 1;
}

.admin-offer-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-offer-card__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.admin-offer-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-base), var(--accent-strong));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.admin-offer-card__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(206, 249, 250, 0.1);
  border: 1px solid rgba(206, 249, 250, 0.2);
  border-radius: 8px;
  color: var(--accent-base);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.admin-offer-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-offer-card__feature {
  font-size: 0.95rem;
  color: var(--muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.admin-offer-card__feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-base);
  font-weight: 700;
  font-size: 1rem;
}

.admin-offer-card__footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-offer-card__stock {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(206, 249, 250, 0.08);
  border: 1px solid rgba(206, 249, 250, 0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--accent-base);
  font-weight: 600;
}

.admin-offer-card__stock strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.btn-edit-offer,
.btn-delete-offer {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn-edit-offer {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-edit-offer:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn-delete-offer {
  background: rgba(255, 107, 107, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

.btn-delete-offer:hover {
  background: rgba(255, 107, 107, 0.25);
  border-color: rgba(255, 107, 107, 0.5);
  transform: translateY(-1px);
}
:root {
  color-scheme: dark;
  font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bg: #05060c;
  --card: #0f1019;
  --muted: rgba(255, 255, 255, 0.64);
  --border: rgba(255, 255, 255, 0.1);
  --accent-base: #cef9fa;
  --accent-strong: #8be7ef;
  --accent: linear-gradient(135deg, var(--accent-base), var(--accent-strong));
  --accent-rgb: 206, 249, 250;
  --accent-strong-rgb: 139, 231, 239;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  min-height: 100vh;
  font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

a:hover,
a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

section {
  padding: 4rem clamp(1.5rem, 4vw, 6rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 32rem;
}

.btn-gradient,
.btn-outline,
.btn-ghost {
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 200ms ease, opacity 200ms ease;
}

.btn-gradient {
  background-image: var(--accent);
  color: #0b0b0f;
}

.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
}

.btn-gradient:hover,
.btn-outline:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.vr-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(5, 6, 12, 0.7);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: headerSlideDown 0.6s ease-out;
}

.vr-header.scrolled {
  background: rgba(5, 6, 12, 0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.vr-header__inner {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  transition: padding 0.3s ease;
}

.vr-header.scrolled .vr-header__inner {
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateX(4px);
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: logoPulse 2s ease-in-out infinite;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-mark::before {
  opacity: 1;
}

.logo:hover .logo-mark {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.4);
}

@keyframes logoPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(var(--accent-rgb), 0);
  }
}

.logo:hover .logo-img {
  transform: scale(1.1);
}

.logo-mark span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo:hover .logo-v {
  transform: translateX(-2px);
}

.logo:hover .logo-r {
  transform: translateX(2px);
}

.logo-text {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

.logotype {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link__underline {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-base), transparent);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link:hover .nav-link__underline {
  transform: translateX(-50%) scaleX(1);
}

.nav-link span:first-child {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-link:hover span:first-child {
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--accent-base);
}

.nav-link.active .nav-link__underline {
  transform: translateX(-50%) scaleX(1);
  background: linear-gradient(90deg, transparent, var(--accent-base), transparent);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  min-width: 200px;
  background: rgba(5, 6, 12, 0.98);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(180%);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.active .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link--dropdown {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-dropdown__item {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.nav-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-base);
}

.nav-dropdown--mobile .nav-dropdown__menu {
  position: static;
  margin-top: 0.5rem;
  margin-left: 1rem;
  opacity: 1;
  visibility: visible;
  transform: none;
  display: none;
}

.nav-dropdown--mobile.active .nav-dropdown__menu {
  display: block;
}

.nav-cta {
  margin-left: 0.5rem;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-strong-rgb), 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 999px;
}

/* === User Menu === */
.user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.user-menu__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  border-radius: 50%;
}

.user-menu__trigger:hover {
  color: var(--accent-base);
  background: rgba(var(--accent-rgb), 0.1);
}

.user-menu__trigger svg {
  width: 32px;
  height: 32px;
  display: block;
}

.user-menu__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 180px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.user-menu__dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-menu__header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}

.user-menu__username {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.user-menu__form {
  margin: 0;
  padding: 0;
}

.user-menu__item {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.user-menu__item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ff7676;
}

.user-menu--mobile {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.user-menu--mobile .user-menu__dropdown {
  position: static;
  width: 100%;
  margin-top: 0.5rem;
  transform: none;
}

.user-menu--mobile .user-menu__dropdown.active {
  transform: none;
}

.nav-cta:hover::before {
  opacity: 1;
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(5, 6, 12, 0.98);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.nav-mobile.active {
  max-height: 400px;
  padding: 1.5rem;
}

.nav-mobile .nav-link {
  padding: 1rem;
  border-radius: 12px;
  animation: slideInRight 0.4s ease-out both;
}

.nav-mobile .nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-mobile .nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-mobile .nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-mobile .nav-link:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === Pacha Club Style === */
.hero-pacha {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-pacha__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-pacha__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-pacha__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-pacha__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-pacha__tagline {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 400;
  opacity: 0.9;
}

.hero-pacha__title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-pacha__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
}

.container-pacha {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-title-pacha {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  color: #fff;
}

.section-subtitle-pacha {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 3rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Events Section */
.events-pacha {
  background: #000;
  color: #fff;
}

.events-pacha__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.event-highlight {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.25), rgba(var(--accent-strong-rgb), 0.15));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-highlight__label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.event-highlight__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
}

.event-highlight__date {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.event-highlight__desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.event-stack {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
}

.event-stack__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-stack__item:last-child {
  border-bottom: none;
}

.event-stack__item h4 {
  margin: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-stack__item p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.event-stack__item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.events-list-pacha {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.event-item-pacha {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-item-pacha:last-child {
  border-bottom: none;
}

.event-title-pacha {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.event-date-pacha {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.event-desc-pacha {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  display: none;
}

.btn-pacha {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.btn-pacha:hover {
  background: #fff;
  color: #000;
}

/* Clubs Section */
.clubs-pacha {
  background: #0a0a0a;
  color: #fff;
}

.clubs-list-pacha {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4rem;
}

.club-item-pacha {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  transition: all 0.4s ease;
}

.club-item-pacha:last-child {
  border-bottom: none;
}

.club-item-pacha:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: -2rem;
  margin-right: -2rem;
}

.club-item-pacha__image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.club-item-pacha__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.club-item-pacha:hover .club-item-pacha__image img {
  transform: scale(1.1);
}

.club-item-pacha__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.club-item-pacha__subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 600;
}

.club-item-pacha__name {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.1;
}

.club-item-pacha__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 600px;
}

.club-item-pacha__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.club-detail {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.club-detail-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  min-width: 100px;
}

.club-detail-value {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.club-item-pacha__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
  margin-top: 0.5rem;
  width: fit-content;
}

.club-item-pacha__link .arrow {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.club-item-pacha__link:hover {
  gap: 1rem;
}

.club-item-pacha__link:hover .arrow {
  transform: translateX(5px);
}


.club-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.club-card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.club-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-strong-rgb), 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.club-card:hover::before {
  opacity: 1;
}

.club-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.club-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.club-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  transition: transform 600ms ease;
}

.club-card:hover img {
  transform: scale(1.05);
}

.club-card__media .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(5, 6, 12, 0.7) 100%);
}

.club-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.club-card__details {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.club-card__details strong {
  font-weight: 600;
  color: #fff;
  margin-right: 0.35rem;
}

.club-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.club-card__link:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.included-price {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(206, 249, 250, 0.1);
  border: 1px solid rgba(206, 249, 250, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.included-price__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.included-price__amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-base);
  letter-spacing: -0.02em;
}

.signature {
  background: #090a12;
}

.signature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.signature__card {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 60%);
}

.signature ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.services__grid > div {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.cta {
  border: 1px solid var(--border);
  border-radius: 32px;
  margin: 2rem clamp(1.5rem, 4vw, 6rem);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-strong-rgb), 0.1));
}

.vr-footer {
  background: linear-gradient(180deg, rgba(5, 6, 12, 0.95) 0%, #000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.vr-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-base), transparent);
  opacity: 0.5;
}

.vr-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 4vw, 6rem);
}

.vr-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vr-footer__brand {
  max-width: 400px;
}

.vr-footer__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #fff 0%, var(--accent-base) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vr-footer__tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.vr-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.vr-footer__column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vr-footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-base);
  margin: 0;
}

.vr-footer__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.vr-footer__link svg {
  opacity: 0.6;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.vr-footer__link:hover {
  color: var(--accent-base);
  transform: translateX(4px);
}

.vr-footer__link:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

.vr-footer__socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vr-footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.vr-footer__social-link svg {
  opacity: 0.6;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.vr-footer__social-link:hover {
  color: var(--accent-base);
  transform: translateX(4px);
}

.vr-footer__social-link:hover svg {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
}

.vr-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--accent-base) 0%, var(--accent-strong) 100%);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  max-width: fit-content;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.vr-footer__cta svg {
  transition: transform 0.3s ease;
}

.vr-footer__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.5);
}

.vr-footer__cta:hover svg {
  transform: translateX(4px);
}

.vr-footer__bottom {
  text-align: center;
  padding-top: 2rem;
}

.vr-footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .vr-footer__top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vr-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .vr-footer__container {
    padding: 3rem 1.5rem;
  }
  
  .vr-footer__top {
    gap: 2.5rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  
  .vr-footer__links {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .vr-footer__cta {
    width: 100%;
    justify-content: center;
  }
}

/* === Page templates === */
.page-hero {
  padding: clamp(3rem, 10vw, 6rem) clamp(1.5rem, 6vw, 6rem);
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.08), rgba(5, 6, 12, 0.9));
}

.page-section {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 6vw, 6rem);
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .hero-pacha {
    height: 70vh;
    min-height: 500px;
  }

  .event-item-pacha {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .events-pacha__grid {
    grid-template-columns: 1fr;
  }

  .event-stack__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .club-item-pacha {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }

  .club-item-pacha__image {
    height: 300px;
  }

  .club-item-pacha:hover {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .club-detail {
    flex-direction: column;
    gap: 0.25rem;
  }

  .club-detail-label {
    min-width: auto;
  }

  .admin-layout {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }

  .admin-sidebar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .admin-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-left: 0;
  }

  .admin-menu a {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 0.4rem 0;
    margin-left: 0;
  }

  .admin-menu a.active,
  .admin-menu a:hover {
    border-bottom-color: var(--accent-base);
  }

  .admin-sidebar {
    padding: 1.5rem;
  }

  .admin-main {
    padding-top: 0;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .logotype {
    font-size: 1.1rem;
  }
.cta {
    margin: 2rem 1.5rem;
  }

  .club-cta__actions {
    width: 100%;
    flex-direction: column;
  }

  .program-highlight {
    grid-template-columns: 1fr;
  }

  .club-hero {
    min-height: 75vh;
    padding: 2rem 1.5rem;
  }

  .club-hero__scroll {
    display: none;
  }

  .club-cta__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .club-cta__actions {
    min-width: 100%;
  }

  .club-gallery__grid {
    grid-template-columns: 1fr;
  }

  .club-related__grid {
    grid-template-columns: 1fr;
  }

  .club-experiences__list {
    grid-template-columns: 1fr;
  }
}

/* === Club detail pages === */
.club-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(3rem, 8vw, 6rem);
  color: #fff;
  background: transparent;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out;
  z-index: 1;
}

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

.club-hero__parallax {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-image, url(''));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
  filter: blur(10px) grayscale(0.15) saturate(1.2);
  transform: scale(1.1);
  animation: parallaxZoom 20s ease-in-out infinite alternate;
  opacity: 1 !important;
  will-change: transform;
  visibility: visible !important;
  pointer-events: none;
}

@keyframes parallaxZoom {
  0% {
    transform: scale(1.1) translateY(0);
  }
  100% {
    transform: scale(1.15) translateY(-20px);
  }
}

.club-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 12, 0.2) 0%, rgba(5, 6, 12, 0.6) 70%, rgba(5, 6, 12, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.club-hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(var(--accent-rgb), 0.15), transparent 60%);
  z-index: 2;
  opacity: 0.6;
  pointer-events: none;
}

.club-hero__content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  animation: slideUp 0.8s ease-out 0.2s both;
}

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

.crumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.crumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.crumbs a:hover {
  color: #fff;
}

.club-hero__badge {
  display: inline-block;
  width: fit-content;
}

.club-hero__badge span {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.club-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.club-hero__signature {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0;
}

.club-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.club-hero__tags .tag-icon {
  font-size: 1.1rem;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.club-hero__tags .tag-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.club-hero__tags span:not(.tag-icon) {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.club-hero__tags span:not(.tag-icon):hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.club-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.club-hero__cta .btn-gradient,
.club-hero__cta .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.club-hero__cta .btn-gradient:hover .btn-arrow {
  transform: translateX(4px);
}

.club-hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s ease-in-out infinite;
}

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

.scroll-indicator {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.8);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(200%);
  }
}

.club-meta {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 6rem);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #05060c 0%, #070812 100%);
  position: relative;
}

.club-meta__container {
  max-width: 1200px;
  margin: 0 auto;
}

.club-meta__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.stat-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-strong-rgb), 0.2));
  margin-bottom: 1rem;
  position: relative;
}

.stat-card__icon::after {
  content: '';
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.6;
}

.stat-card .eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.stat-card h3 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.club-meta__story {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-base), transparent);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.club-meta__story h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1.5rem;
  font-weight: 700;
}

.club-meta__story p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 1rem;
}

.story-extra {
  font-size: 1rem !important;
  font-style: italic;
  opacity: 0.8;
}

.club-experiences {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 6rem);
}

.club-events__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.club-event-highlight {
  border: 1px solid transparent;
  border-radius: 32px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: transparent;
}

.club-event-highlight .program-highlight__content p {
  margin-bottom: 1rem;
}

.club-event__meta {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.club-event__meta span {
  color: #fff;
}

.club-event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* === Login Page === */
.login-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.login-hero__background {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(var(--accent-rgb), 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(var(--accent-strong-rgb), 0.05) 0%, transparent 50%);
  z-index: 0;
}

.login-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
}

.login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.login-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.login-back__icon {
  font-size: 1.25rem;
  color: var(--accent-base);
}

.login-back:hover {
  color: #fff;
}

.login-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.login-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(var(--accent-rgb), 0.3));
}

.login-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.1;
}

.login-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.05em;
}

.login-card-wrapper {
  display: flex;
  justify-content: center;
}

.login-card {
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 3rem;
  background: rgba(15, 16, 25, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.6;
}

.login-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login-card__header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.login-card__header p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}

.form-group input {
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-base);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input.input-error {
  border-color: #ff7676;
  background: rgba(255, 118, 118, 0.05);
}

.form-group input.input-error:focus {
  border-color: #ff7676;
  box-shadow: 0 0 0 3px rgba(255, 118, 118, 0.1);
}

.field-error {
  display: block;
  color: #ff7676;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding-left: 0.25rem;
}

.btn-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.75rem;
  border-radius: 16px;
  border: none;
  background: var(--accent);
  color: #05060c;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.4);
}

.btn-login:active {
  transform: translateY(0);
}

.btn-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.btn-login:hover .btn-arrow {
  transform: translateX(4px);
}

.login-divider {
  position: relative;
  text-align: center;
  margin: 0.5rem 0;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.login-divider span {
  position: relative;
  padding: 0 1rem;
  background: rgba(15, 16, 25, 0.8);
  color: var(--muted);
  font-size: 0.85rem;
}

.btn-register-toggle {
  width: 100%;
  padding: 1rem 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-register-toggle:hover {
  border-color: var(--accent-base);
  background: rgba(var(--accent-rgb), 0.05);
  color: var(--accent-base);
}

.register-panel {
  display: none;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: slideDown 0.4s ease;
}

.register-panel.active {
  display: flex;
}

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

.register-panel__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.register-panel__header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.register-panel__header p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.form-error {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 118, 118, 0.1);
  border: 1px solid rgba(255, 118, 118, 0.3);
  color: #ff7676;
  font-size: 0.9rem;
  margin: 0;
}

.form-error span:first-child {
  font-size: 1.2rem;
}

@media (max-width: 968px) {
  .login-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .login-brand {
    text-align: center;
    align-items: center;
  }

  .login-card {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .login-hero {
    padding: 1.5rem 1rem;
  }

  .login-card {
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }

  .login-card__header h2 {
    font-size: 1.75rem;
  }
}

.club-gallery {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 6rem);
  background: linear-gradient(180deg, #070812 0%, #05060c 100%);
}

.club-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  max-height: 520px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--card);
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__zoom {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card__zoom {
  transform: scale(1);
}

.gallery-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-strong-rgb), 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-card:hover .gallery-card__gradient {
  opacity: 1;
}

/* Modal galerie */
#gallery-modal-close:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: scale(1.1);
}

.club-related {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 6rem);
}

.club-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.related-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.related-card__image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card:hover .related-card__image img {
  transform: scale(1.1);
}

.related-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 6, 12, 0.8) 100%);
  z-index: 1;
}

.related-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.related-card__content .eyebrow {
  margin-bottom: 0.25rem;
}

.related-card__content h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.related-card__content p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--accent-base);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.related-card:hover .related-card__link {
  gap: 0.75rem;
}

.related-card__link .arrow {
  transition: transform 0.3s ease;
}

.related-card:hover .related-card__link .arrow {
  transform: translateX(4px);
}

.club-cta {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 40px;
  margin: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 6rem);
  padding: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(var(--accent-strong-rgb), 0.1));
  backdrop-filter: blur(20px);
}

.club-cta__background {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(var(--accent-rgb), 0.2), transparent 60%);
  opacity: 0.5;
  z-index: 0;
}

.club-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.club-cta__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.club-cta__text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.club-cta__text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 600px;
}

.club-cta__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111;
}

.club-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 240px;
}

.club-cta__actions .btn-gradient,
.club-cta__actions .btn-outline,
.club-cta__actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  text-align: center;
}

.club-cta__actions .btn-gradient:hover .btn-arrow {
  transform: translateX(4px);
}

/* === Programmes === */
.program-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.program-highlight:last-child {
  border-bottom: none;
}

.program-highlight__media {
  min-height: 300px;
}

.program-highlight__media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 24px;
  border: 1px solid var(--border);
  object-fit: cover;
}

.program-highlight__content ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.program-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.program-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
  flex: 1;
}

.program-card__link {
  text-decoration: none;
  color: var(--accent-base);
  font-weight: 600;
  margin-top: auto;
}

/* === Services === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

/* === VIP Offers === */
.vip-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vip-offer-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.vip-offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-base);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.vip-offer-card--premium {
  background: linear-gradient(135deg, rgba(206, 249, 250, 0.05), rgba(139, 231, 239, 0.05));
  border-color: var(--accent-base);
}

.vip-offer__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.vip-offer__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
}

.vip-offer__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-base);
  white-space: nowrap;
}

.vip-offer__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  width: fit-content;
}

.vip-offer__badge--premium {
  background: rgba(206, 249, 250, 0.15);
  border-color: var(--accent-base);
  color: var(--accent-base);
}

.vip-offer__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vip-offer__features li {
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.vip-offer__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-base);
  font-weight: 600;
}

.vip-offer__cta {
  margin-top: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .vip-offers {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vip-offer__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === Included Section === */
.included-section {
  position: relative;
  overflow: hidden;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.included-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(40px);
  overflow: hidden;
}

.included-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(206, 249, 250, 0.05), rgba(139, 231, 239, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.included-card[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

.included-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-base);
  box-shadow: 0 20px 60px rgba(206, 249, 250, 0.15);
}

.included-card:hover::before {
  opacity: 1;
}

.included-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(206, 249, 250, 0.1), rgba(139, 231, 239, 0.1));
  border-radius: 16px;
  border: 1px solid rgba(206, 249, 250, 0.2);
  color: var(--accent-base);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.included-card__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-base), var(--accent-strong));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.included-card__icon svg {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.included-card:hover .included-card__icon {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--accent-base);
  box-shadow: 0 8px 24px rgba(206, 249, 250, 0.3);
}

.included-card:hover .included-card__icon::before {
  opacity: 0.2;
}

.included-card:hover .included-card__icon svg {
  transform: scale(1.1);
}

.included-card h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.included-card:hover h3 {
  color: var(--accent-base);
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.included-card[data-animate].animate .included-list li {
  opacity: 1;
  transform: translateX(0);
}

.included-card[data-animate].animate .included-list li:nth-child(1) {
  transition-delay: 0.1s;
}

.included-card[data-animate].animate .included-list li:nth-child(2) {
  transition-delay: 0.2s;
}

.included-card[data-animate].animate .included-list li:nth-child(3) {
  transition-delay: 0.3s;
}

.included-card[data-animate].animate .included-list li:nth-child(4) {
  transition-delay: 0.4s;
}

.included-list li span:last-child {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  flex: 1;
  transition: color 0.3s ease;
}

.included-card:hover .included-list li span:last-child {
  color: #fff;
}

.included-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(206, 249, 250, 0.1);
  border: 1px solid rgba(206, 249, 250, 0.3);
  border-radius: 6px;
  color: var(--accent-base);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.included-check::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-base), var(--accent-strong));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.included-check svg {
  position: relative;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.included-card[data-animate].animate .included-check svg {
  transform: scale(1);
}

.included-list li:hover .included-check {
  background: var(--accent-base);
  border-color: var(--accent-base);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 12px rgba(206, 249, 250, 0.4);
}

.included-list li:hover .included-check::before {
  opacity: 1;
}

.included-list li:hover .included-check svg {
  color: #05060c;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .included-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .included-card {
    padding: 2rem;
  }
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.contact-card,
.contact-form {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 0;
  line-height: 1.4;
}

/* Espacement supplémentaire pour les labels dans les sections dynamiques */
.contact-form #club-selection label,
.contact-form #date-section label,
.contact-form #vip-selection label,
.contact-form #night-pass-selection label {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1.4;
}

/* Espacement pour les divs dynamiques */
.contact-form #club-selection,
.contact-form #date-section {
  margin-top: 0;
  display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form #club-selection select,
.contact-form #date-section input,
.contact-form #vip-selection select,
.contact-form #night-pass-selection select {
  padding: 0.9rem 1rem !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: rgba(5, 6, 12, 0.6) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  min-height: 48px !important;
  height: auto !important;
  margin: 0 !important;
  vertical-align: middle !important;
}

.contact-form input[type="date"],
.contact-form #date-section input[type="date"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  color-scheme: dark !important;
  padding: 0.9rem 1rem !important;
  padding-right: 2.5rem !important;
  min-height: 48px !important;
  height: auto !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form #date-section input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.8;
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator:hover,
.contact-form #date-section input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.contact-form input[type="date"]::-webkit-datetime-edit-text,
.contact-form input[type="date"]::-webkit-datetime-edit-month-field,
.contact-form input[type="date"]::-webkit-datetime-edit-day-field,
.contact-form input[type="date"]::-webkit-datetime-edit-year-field,
.contact-form #date-section input[type="date"]::-webkit-datetime-edit-text,
.contact-form #date-section input[type="date"]::-webkit-datetime-edit-month-field,
.contact-form #date-section input[type="date"]::-webkit-datetime-edit-day-field,
.contact-form #date-section input[type="date"]::-webkit-datetime-edit-year-field {
  color: #fff;
  padding: 0;
}

.contact-form input[type="date"]:invalid::-webkit-datetime-edit,
.contact-form #date-section input[type="date"]:invalid::-webkit-datetime-edit {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.contact-form #date-section input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.contact-form select,
.contact-form #club-selection select,
.contact-form #vip-selection select,
.contact-form #night-pass-selection select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: rgba(5, 6, 12, 0.6) !important;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 12px !important;
  padding: 0.9rem 1rem !important;
  padding-right: 2.5rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 16px !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  min-height: 48px !important;
  height: auto !important;
  margin: 0 !important;
  vertical-align: middle !important;
}

/* Style spécial pour le select Type de réservation quand une option est sélectionnée */
.contact-form #reservationType.has-selection {
  border-color: var(--accent-base) !important;
  background-color: rgba(206, 249, 250, 0.15) !important;
  color: var(--accent-base) !important;
  font-weight: 500 !important;
}

.contact-form #reservationType.has-selection:hover {
  border-color: var(--accent-base) !important;
  background-color: rgba(206, 249, 250, 0.2) !important;
}

.contact-form #reservationType.has-selection:focus {
  border-color: var(--accent-base) !important;
  background-color: rgba(206, 249, 250, 0.2) !important;
  box-shadow: 0 0 0 3px rgba(206, 249, 250, 0.3) !important;
}

.contact-form #reservationType.has-selection option {
  color: #fff !important;
  background: rgba(5, 6, 12, 0.95) !important;
}

.contact-form #reservationType.has-selection option:checked {
  color: var(--accent-base) !important;
  background: rgba(206, 249, 250, 0.1) !important;
}

.contact-form select:hover,
.contact-form #club-selection select:hover,
.contact-form #vip-selection select:hover,
.contact-form #night-pass-selection select:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background-color: rgba(5, 6, 12, 0.65) !important;
}

.contact-form select:focus,
.contact-form #club-selection select:focus,
.contact-form #vip-selection select:focus,
.contact-form #night-pass-selection select:focus {
  outline: none !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  background-color: rgba(5, 6, 12, 0.65) !important;
  box-shadow: 0 0 0 3px rgba(206, 249, 250, 0.1) !important;
}

.contact-form select option,
.contact-form #club-selection select option,
.contact-form #vip-selection select option,
.contact-form #night-pass-selection select option {
  background: rgba(5, 6, 12, 0.95) !important;
  color: #fff !important;
  padding: 0.75rem !important;
}

.contact-form input[type="date"]:hover,
.contact-form #date-section input:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background-color: rgba(5, 6, 12, 0.65) !important;
}

.contact-form input[type="date"]:focus,
.contact-form #date-section input:focus {
  outline: none !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  background-color: rgba(5, 6, 12, 0.65) !important;
  box-shadow: 0 0 0 3px rgba(206, 249, 250, 0.1) !important;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Style amélioré pour tous les selects (hors formulaire de contact) */
select:not(.contact-form select):not(.contact-form *) {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

select:not(.contact-form select):not(.contact-form *):hover {
  border-color: rgba(206, 249, 250, 0.4);
  background-color: rgba(255, 255, 255, 0.08);
}

select:not(.contact-form select):not(.contact-form *):focus {
  outline: none;
  border-color: var(--accent-base);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(206, 249, 250, 0.1);
}

select:not(.contact-form select):not(.contact-form *) option {
  background: #1a1a1a;
  color: #fff;
  padding: 0.75rem;
}

select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-form button {
  align-self: flex-start;
}

.reservation-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem clamp(1.5rem, 5vw, 6rem);
  align-items: stretch;
}

.reservation-default {
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 1;
  transform: translateY(0);
  position: relative;
  will-change: opacity, transform;
}

.reservation-default.reservation-default-exit {
  opacity: 0 !important;
  transform: translateY(-15px) !important;
  pointer-events: none;
}

.reservation-info__title,
.reservation-info__description {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.reservation-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.reservation-card-enter {
  opacity: 1;
  transform: translateY(0);
}

.reservation-card-exit {
  opacity: 0 !important;
  transform: translateY(-20px) !important;
}

.reservation-card__image {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.reservation-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation-card__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  width: 100%;
}

.reservation-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
  width: 100%;
}

.reservation-card__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.reservation-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.reservation-card__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  width: fit-content;
  margin-bottom: 0.5rem;
}

.reservation-card__badge.vip-offer__badge--premium {
  background: rgba(206, 249, 250, 0.15);
  border-color: var(--accent-base);
  color: var(--accent-base);
}

.reservation-card__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.reservation-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.reservation-card__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reservation-card__detail-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.reservation-card__detail-value {
  color: #fff;
  font-weight: 500;
}

.reservation-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reservation-card__features li {
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.reservation-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-base);
  font-weight: 600;
}

.reservation-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  text-align: left;
}

.reservation-info__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--accent-base);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.reservation-info__description {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .reservation-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .club-hero {
    min-height: auto;
    padding-top: 6rem;
  }

  .club-hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .club-cta {
    margin: 2rem 1.5rem;
  }

  .club-cta__actions {
    width: 100%;
    flex-direction: column;
  }

  .reservation-layout {
    padding: 1.5rem;
  }
}

/* Statuts des réservations */
.status-pending {
  background: rgba(251, 191, 36, 0.2) !important;
  border: 1px solid rgba(251, 191, 36, 0.5) !important;
  color: #fbbf24 !important;
}

.status-accepted {
  background: rgba(34, 197, 94, 0.2) !important;
  border: 1px solid rgba(34, 197, 94, 0.5) !important;
  color: #22c55e !important;
}

.status-rejected {
  background: rgba(239, 68, 68, 0.2) !important;
  border: 1px solid rgba(239, 68, 68, 0.5) !important;
  color: #ef4444 !important;
}

/* Notifications de réservation */
.reservation-notification.status-pending {
  border-left-color: #fbbf24 !important;
  background: rgba(251, 191, 36, 0.05) !important;
}

.reservation-notification.status-accepted {
  border-left-color: #22c55e !important;
  background: rgba(34, 197, 94, 0.05) !important;
}

.reservation-notification.status-rejected {
  border-left-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.05) !important;
}

/* Carte de réservation */
.reservation-card {
  transition: all 0.3s ease;
}

.reservation-card:hover {
  border-color: var(--accent-base);
  box-shadow: 0 8px 24px rgba(206, 249, 250, 0.1);
}

/* Modal de notification */
.notification-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.notification-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.notification-modal__content {
  position: relative;
  background: linear-gradient(135deg, rgba(5, 6, 12, 0.98), rgba(15, 20, 30, 0.98));
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 1;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.notification-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.notification-modal__header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.notification-modal__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.notification-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.notification-modal__body {
  padding: 1.5rem;
}

.notification-modal__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.notification-modal__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
}

.notification-modal--success .notification-modal__header h3 {
  color: #22c55e;
}

.notification-modal--error .notification-modal__header h3 {
  color: #ef4444;
}

/* Styles pour la page Messages */
#messages-list {
  scrollbar-width: thin;
  scrollbar-color: rgba(206, 249, 250, 0.3) transparent;
}

#messages-list::-webkit-scrollbar {
  width: 6px;
}

#messages-list::-webkit-scrollbar-track {
  background: transparent;
}

#messages-list::-webkit-scrollbar-thumb {
  background: rgba(206, 249, 250, 0.3);
  border-radius: 3px;
}

#messages-list::-webkit-scrollbar-thumb:hover {
  background: rgba(206, 249, 250, 0.5);
}

.message-item {
  transition: all 0.2s ease;
}

.message-item:hover {
  transform: translateX(4px);
}

/* Styles pour le chat de groupe */
#group-messages-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(206, 249, 250, 0.3) transparent;
}

#group-messages-container::-webkit-scrollbar {
  width: 6px;
}

#group-messages-container::-webkit-scrollbar-track {
  background: transparent;
}

#group-messages-container::-webkit-scrollbar-thumb {
  background: rgba(206, 249, 250, 0.3);
  border-radius: 3px;
}

#group-messages-container::-webkit-scrollbar-thumb:hover {
  background: rgba(206, 249, 250, 0.5);
}

