@charset "UTF-8";
:root.md-dark {
  --md-sys-color-primary: #ff6b5a;
  --md-sys-color-on-primary: #4a0a04;
  --md-sys-color-primary-container: #e84c3d;
  --md-sys-color-on-primary-container: #ffeae5;
  --md-sys-color-secondary: #d4a853;
  --md-sys-color-on-secondary: #3a2a00;
  --md-sys-color-secondary-container: #5e4c1a;
  --md-sys-color-on-secondary-container: #ffe6b3;
  --md-sys-color-tertiary: #7c6bc4;
  --md-sys-color-on-tertiary: #1a1042;
  --md-sys-color-tertiary-container: #3d3470;
  --md-sys-color-on-tertiary-container: #e0d8ff;
  --md-sys-color-error: #ff6b5a;
  --md-sys-color-on-error: #4a0a04;
  --md-sys-color-error-container: #931f15;
  --md-sys-color-on-error-container: #ffdad4;
  --md-sys-color-background: #0a0a0c;
  --md-sys-color-on-background: #f0ece6;
  --md-sys-color-surface: #0a0a0c;
  --md-sys-color-on-surface: #f0ece6;
  --md-sys-color-surface-variant: #1e1e24;
  --md-sys-color-on-surface-variant: #8a8690;
  --md-sys-color-outline: #5a5660;
  --md-sys-color-outline-variant: #2a2a30;
  --md-sys-color-shadow: #000000;
  --md-sys-color-scrim: #000000;
  --md-sys-color-inverse-surface: #f0ece6;
  --md-sys-color-inverse-on-surface: #1c1c22;
  --md-sys-color-inverse-primary: #c43020;
  --md-sys-color-success: #39ddc6;
  --md-sys-color-on-success: #003730;
  --md-sys-color-success-container: #005047;
  --md-sys-color-on-success-container: #60fae2;
  --md-sys-color-warning: #d4a853;
  --md-sys-color-on-warning: #3a2a00;
  --md-sys-color-warning-container: #5e4c1a;
  --md-sys-color-on-warning-container: #ffe6b3;
  --md-sys-color-surface-container-lowest: #050507;
  --md-sys-color-surface-container-low: #0a0a0c;
  --md-sys-color-surface-container: #141418;
  --md-sys-color-surface-container-high: #1c1c22;
  --md-sys-color-surface-container-highest: #1e1e24;
  --md-sys-color-surface-bright: #2a2a30;
  --md-sys-color-surface-dim: #050507;
}

.app-navbar {
  background-color: var(--md-sys-color-surface-container);
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.app-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--md-sys-color-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}
.app-navbar .navbar-brand:hover {
  color: var(--md-sys-color-on-surface);
  background-color: var(--md-sys-color-surface-container-high);
}
.app-navbar .navbar-brand .brand-icon {
  color: var(--md-sys-color-primary);
  font-size: 1.4rem;
}
.app-navbar .navbar-toggler {
  border: none;
  color: var(--md-sys-color-on-surface);
  padding: 0.5rem 0.75rem;
  font-size: 1.1rem;
}
.app-navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--md-sys-color-primary);
}
.app-navbar .nav-link {
  color: var(--md-sys-color-on-surface-variant);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.app-navbar .nav-link:hover, .app-navbar .nav-link:focus {
  color: var(--md-sys-color-on-surface);
  background-color: var(--md-sys-color-surface-container-high);
  text-decoration: none;
}
.app-navbar .nav-link .fas {
  font-size: 0.9rem;
  width: 1rem;
  text-align: center;
}
.app-navbar .nav-link-cta {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary-container);
  padding: 0.5rem 1.25rem;
  border-radius: 24px;
}
.app-navbar .nav-link-cta:hover, .app-navbar .nav-link-cta:focus {
  filter: brightness(1.1);
}
.app-navbar .search-form {
  flex: 1;
  max-width: 400px;
  margin: 0 1rem;
}
.app-navbar .search-form .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.app-navbar .search-form .search-icon {
  position: absolute;
  left: 1rem;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 0.85rem;
  pointer-events: none;
}
.app-navbar .search-form .search-input {
  width: 100%;
  background-color: var(--md-sys-color-surface-container-high);
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  color: var(--md-sys-color-on-surface);
  font-size: 0.9rem;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.app-navbar .search-form .search-input::placeholder {
  color: var(--md-sys-color-on-surface-variant);
}
.app-navbar .search-form .search-input:focus {
  outline: none;
  border-color: var(--md-sys-color-primary);
  background-color: var(--md-sys-color-surface);
}
.app-navbar .dropdown-menu {
  background-color: var(--md-sys-color-surface-container-high);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.app-navbar .dropdown-menu .dropdown-item {
  color: var(--md-sys-color-on-surface);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.app-navbar .dropdown-menu .dropdown-item:hover, .app-navbar .dropdown-menu .dropdown-item:focus {
  background-color: var(--md-sys-color-surface-container-highest);
  color: var(--md-sys-color-on-surface);
}
.app-navbar .dropdown-menu .dropdown-item .fas {
  color: var(--md-sys-color-on-surface-variant);
}
.app-navbar .dropdown-menu .dropdown-header {
  color: var(--md-sys-color-on-surface-variant);
  padding: 0.5rem 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.app-navbar .dropdown-menu .dropdown-divider {
  border-color: var(--md-sys-color-outline-variant);
  margin: 0.4rem 0;
}
.app-navbar .user-dropdown .user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem 0.3rem 0.3rem;
  border-radius: 24px;
  position: relative;
}
.app-navbar .user-dropdown .user-trigger.new-notification::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 32px;
  background-color: red;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}
.app-navbar .user-dropdown .user-trigger:hover {
  background-color: var(--md-sys-color-surface-container-high);
}
.app-navbar .user-dropdown .user-trigger .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--md-sys-color-surface-container-highest);
}
.app-navbar .user-dropdown .user-trigger .user-avatar-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 0.85rem;
}
.app-navbar .user-dropdown .user-trigger .user-pseudo {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
}
.app-navbar .user-dropdown .user-trigger .user-caret {
  font-size: 0.7rem;
  color: var(--md-sys-color-on-surface-variant);
}
.app-navbar .user-dropdown .dropdown-toggle::after {
  display: none;
}
.app-navbar .user-menu {
  min-width: 240px;
}
.app-navbar .user-menu .user-info {
  padding: 0.5rem 0.85rem;
}
.app-navbar .user-menu .user-info .user-info-pseudo {
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  font-size: 0.95rem;
}
.app-navbar .user-menu .user-info .user-info-handle {
  font-size: 0.8rem;
  color: var(--md-sys-color-on-surface-variant);
}
.app-navbar .user-nav {
  gap: 0.25rem;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .app-navbar .navbar-collapse {
    padding-top: 0.75rem;
  }
  .app-navbar .search-form {
    max-width: 100%;
    margin: 0.75rem 0;
    order: 1;
  }
  .app-navbar .main-nav {
    order: 0;
  }
  .app-navbar .user-nav {
    order: 2;
    flex-direction: column;
    align-items: stretch;
  }
  .app-navbar .user-nav .nav-link {
    width: 100%;
  }
  .app-navbar .user-dropdown .user-trigger {
    width: 100%;
  }
}

.app-footer {
  background-color: var(--md-sys-color-surface-container);
  border-top: 1px solid var(--md-sys-color-outline-variant);
  padding: 32px 0 20px;
  margin-top: auto;
}

.app-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  margin-bottom: 16px;
}

.app-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--md-sys-color-on-surface);
  text-decoration: none;
}
.app-footer__logo .brand-icon {
  color: var(--md-sys-color-primary);
}
.app-footer__logo:hover {
  color: var(--md-sys-color-on-surface);
  text-decoration: none;
}

.app-footer__tagline {
  font-size: 12px;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
}

.app-footer__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.app-footer__link {
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 6px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.app-footer__link:hover {
  color: var(--md-sys-color-on-surface);
  background-color: var(--md-sys-color-surface-container-high);
  text-decoration: none;
}

.app-footer__copyright {
  font-size: 12px;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
  text-align: center;
}

body::before {
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.ambient-glow.glow-1 {
  top: -200px;
  left: -100px;
  background: var(--md-sys-color-primary);
}
.ambient-glow.glow-2 {
  bottom: -200px;
  right: -100px;
  background: var(--md-sys-color-tertiary);
}

.profile-page .profile-banner {
  height: 180px;
  background: linear-gradient(135deg, var(--md-sys-color-primary-container) 0%, var(--md-sys-color-tertiary-container) 100%);
  border-radius: 0 0 24px 24px;
  position: relative;
}
.profile-page .profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem 1.5rem;
  margin-top: -75px;
  text-align: center;
}
.profile-page .profile-header .profile-avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.profile-page .profile-header .profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--md-sys-color-background);
  background-color: var(--md-sys-color-surface-container);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.profile-page .profile-header .profile-pseudo {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--md-sys-color-on-background);
}
.profile-page .profile-header .profile-handle {
  font-size: 0.9rem;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 0.75rem;
}
.profile-page .profile-header .profile-bio {
  max-width: 500px;
  margin: 0 auto 1rem;
  color: var(--md-sys-color-on-surface-variant);
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre-line;
}
.profile-page .profile-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0 1.25rem;
}
.profile-page .profile-stats .profile-stat {
  text-align: center;
}
.profile-page .profile-stats .profile-stat .profile-stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--md-sys-color-on-background);
  line-height: 1;
}
.profile-page .profile-stats .profile-stat .profile-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--md-sys-color-on-surface-variant);
  margin-top: 0.2rem;
}
.profile-page .profile-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.profile-page .profile-actions form {
  margin: 0;
}
.profile-page .profile-actions .btn-profile {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: filter 0.15s ease, background-color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}
.profile-page .profile-actions .btn-profile.btn-profile-primary {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}
.profile-page .profile-actions .btn-profile.btn-profile-primary:hover {
  filter: brightness(1.1);
  color: var(--md-sys-color-on-primary);
}
.profile-page .profile-actions .btn-profile.btn-profile-outlined {
  background-color: transparent;
  color: var(--md-sys-color-primary);
  border: 1px solid var(--md-sys-color-outline);
}
.profile-page .profile-actions .btn-profile.btn-profile-outlined:hover {
  background-color: var(--md-sys-color-surface-container);
  color: var(--md-sys-color-primary);
}
.profile-page .profile-actions .btn-profile.btn-profile-secondary {
  background-color: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-on-surface);
}
.profile-page .profile-actions .btn-profile.btn-profile-secondary:hover {
  background-color: var(--md-sys-color-surface-container-highest);
}
.profile-page .profile-tabs {
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.profile-page .profile-tabs::-webkit-scrollbar {
  display: none;
}
.profile-page .profile-tabs .nav-item {
  flex-shrink: 0;
}
.profile-page .profile-tabs .nav-link {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.75rem 1.25rem;
  color: var(--md-sys-color-on-surface-variant);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 0;
}
.profile-page .profile-tabs .nav-link:hover {
  color: var(--md-sys-color-on-surface);
  background-color: var(--md-sys-color-surface-container);
}
.profile-page .profile-tabs .nav-link.active {
  color: var(--md-sys-color-primary);
  border-bottom-color: var(--md-sys-color-primary);
  background-color: transparent;
}
.profile-page .profile-tabs .nav-link .fas {
  font-size: 0.85rem;
}
.profile-page .tab-content {
  padding: 1.5rem 1rem;
}

.profile-setup {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.profile-setup__card {
  width: 100%;
  max-width: 480px;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 20px;
  padding: 40px 36px;
}
@media (max-width: 480px) {
  .profile-setup__card {
    padding: 28px 20px;
  }
}

.profile-setup__header {
  text-align: center;
  margin-bottom: 32px;
}

.profile-setup__logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--md-sys-color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.profile-setup__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 8px;
}

.profile-setup__subtitle {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
}

.profile-setup__form {
  display: flex;
  flex-direction: column;
}

.profile-setup__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 400px) {
  .profile-setup__row {
    grid-template-columns: 1fr;
  }
}

.profile-setup__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.profile-setup__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 6px;
}

.profile-setup__input {
  background-color: var(--md-sys-color-surface-container-high);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 8px;
  color: var(--md-sys-color-on-surface);
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.profile-setup__input::placeholder {
  color: var(--md-sys-color-on-surface-variant);
  opacity: 0.6;
}
.profile-setup__input:focus {
  outline: none;
  border-color: var(--md-sys-color-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 90, 0.15);
}

.profile-setup__error {
  font-size: 12px;
  color: var(--md-sys-color-error);
  margin-top: 4px;
}

.profile-setup__gender-group {
  display: flex;
  gap: 12px;
}

.gender-pill {
  flex: 1;
  cursor: pointer;
  margin: 0;
}
.gender-pill input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.gender-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
  background-color: var(--md-sys-color-surface-container-high);
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.gender-pill:hover span {
  border-color: var(--md-sys-color-outline);
  color: var(--md-sys-color-on-surface);
}
.gender-pill input[type=radio]:checked + span {
  border-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-primary);
  background-color: rgba(255, 107, 90, 0.08);
}

.profile-setup__submit {
  width: 100%;
  --md-sys-color-primary: var(--md-sys-color-primary-container);
  --md-sys-color-on-primary: var(--md-sys-color-on-primary-container);
  border: none;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 32px;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
  margin-top: 8px;
}
.profile-setup__submit:hover {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}
.profile-setup__submit:active {
  transform: scale(0.98);
}

.tiny-avatar {
  width: 50px;
  height: 50px;
  border-radius: 25px;
}

.medium-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50px;
}

.large-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50px;
}

.post-card {
  width: 300px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  margin: 8px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: var(--md-sys-color-outline);
}
.post-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--md-sys-color-surface-container-highest);
}
.post-card__media .video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}
.post-card__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.post-card:hover .post-card__thumbnail {
  transform: scale(1.04);
}
.post-card__type-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.post-card__date-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  border-radius: 10px;
  padding: 4px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  min-width: 40px;
}
.post-card__date-day {
  font-size: 18px;
  font-weight: 700;
}
.post-card__date-month {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.post-card__canceled-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--md-sys-color-error-container);
  color: var(--md-sys-color-on-error-container);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 0;
}
.post-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.post-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.post-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__title-link {
  color: var(--md-sys-color-on-surface);
  text-decoration: none;
}
.post-card__title-link:hover {
  color: var(--md-sys-color-primary);
  text-decoration: none;
}
.post-card__location {
  margin: 0;
  font-size: 12px;
  color: var(--md-sys-color-on-surface-variant);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-card__location i {
  color: var(--md-sys-color-tertiary);
  flex-shrink: 0;
  font-size: 11px;
}
.post-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid var(--md-sys-color-outline-variant);
}
.post-card__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--md-sys-color-outline-variant);
  transition: border-color 0.2s ease;
}
.post-card:hover .post-card__avatar {
  border-color: var(--md-sys-color-primary);
}
.post-card__pseudo {
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-card__pending {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--md-sys-color-surface-container-highest);
}

.post-card__pending-spinner {
  width: 28px;
  height: 28px;
  border-width: 3px;
  color: var(--md-sys-color-primary);
}

.post-card__pending-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
  text-align: center;
  padding: 0 12px;
}

.post-card__moderated {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.post-card__moderated-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--md-sys-color-error);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--md-sys-color-on-error);
  font-size: 18px;
}

.post-card__moderated-label {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  padding: 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tags-card {
  margin-bottom: 10px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.form-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--md-sys-color-on-primary);
  background-color: var(--md-sys-color-primary);
}

.form-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

label:has(md-checkbox) {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 10px;
}

.price-row,
.planning {
  position: relative;
  overflow: visible !important;
}

.planning .card,
.price-row {
  overflow: visible;
}

.delete-planning, .delete-price {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(25%, -25%);
  z-index: 1;
  cursor: pointer;
}

/* ─── File input ─── */
.file-upload-area {
  border: 2px dashed var(--md-sys-color-secondary);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.file-upload-area:hover {
  border-color: var(--md-sys-color-primary);
  background-color: rgb(from var(--md-sys-color-primary) r g b/50%);
}

.file-upload-area .add-file {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-upload-area .upload-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  background: var(--md-sys-color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-upload-area .upload-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--md-sys-color-on-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.file-upload-area p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--clr-muted);
}

.file-upload-area strong {
  color: var(--clr-accent);
  font-weight: 600;
}

.preview-img-area {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
.preview-img-area .preview {
  position: relative;
}
.preview-img-area .delete-preview {
  position: absolute;
  top: 0px;
  right: 0px;
  transform: translate(50%, -50%);
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

.home-section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 8px;
}

.home-section-subtitle {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 0;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 520px;
}
.home-hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.home-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.home-hero__shape--1 {
  width: 480px;
  height: 480px;
  background: var(--md-sys-color-primary-container);
  top: -120px;
  left: -100px;
}
.home-hero__shape--2 {
  width: 320px;
  height: 320px;
  background: var(--md-sys-color-tertiary-container);
  bottom: -80px;
  right: 10%;
}
.home-hero__shape--3 {
  width: 200px;
  height: 200px;
  background: var(--md-sys-color-secondary-container);
  top: 40%;
  left: 55%;
}
.home-hero .container {
  position: relative;
  z-index: 1;
}
.home-hero__content {
  padding-top: 20px;
}
.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--md-sys-color-primary);
  margin-bottom: 20px;
}
.home-hero__title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 20px;
}
.home-hero__subtitle {
  font-size: 17px;
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 36px;
}
.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.home-hero__btn {
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.home-hero__btn:hover {
  transform: translateY(-2px);
}
.home-hero__btn--primary {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  border: none;
  box-shadow: 0 4px 16px rgba(232, 76, 61, 0.3);
}
.home-hero__btn--primary:hover {
  box-shadow: 0 6px 24px rgba(232, 76, 61, 0.45);
  color: var(--md-sys-color-on-primary-container);
}
.home-hero__btn--secondary {
  background-color: transparent;
  color: var(--md-sys-color-on-surface);
  border: 1px solid var(--md-sys-color-outline);
}
.home-hero__btn--secondary:hover {
  border-color: var(--md-sys-color-on-surface);
  color: var(--md-sys-color-on-surface);
}
.home-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.home-hero__card {
  position: relative;
  width: 300px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.home-hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}
.home-hero__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-hero__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
}
.home-hero__play-btn svg {
  width: 100%;
  height: 100%;
}
.home-hero__card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}
.home-hero__card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.home-hero__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}
.home-hero__card-author {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.home-styles {
  padding: 80px 0;
  background-color: var(--md-sys-color-surface-container-lowest);
}

.home-style-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid var(--md-sys-color-outline-variant);
  background-color: var(--md-sys-color-surface-container);
  text-decoration: none;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.home-style-card:hover {
  transform: translateY(-4px);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.home-style-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.home-style-card__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.home-style-card__desc {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.home-style-card__link {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.home-style-card--kizomba {
  border-color: rgba(255, 107, 90, 0.25);
}
.home-style-card--kizomba .home-style-card__icon {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}
.home-style-card--kizomba .home-style-card__name,
.home-style-card--kizomba .home-style-card__link {
  color: var(--md-sys-color-primary);
}
.home-style-card--kizomba .home-style-card__desc {
  color: var(--md-sys-color-on-surface-variant);
}
.home-style-card--kizomba:hover {
  border-color: var(--md-sys-color-primary);
}
.home-style-card--salsa {
  border-color: rgba(212, 168, 83, 0.25);
}
.home-style-card--salsa .home-style-card__icon {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}
.home-style-card--salsa .home-style-card__name,
.home-style-card--salsa .home-style-card__link {
  color: var(--md-sys-color-secondary);
}
.home-style-card--salsa .home-style-card__desc {
  color: var(--md-sys-color-on-surface-variant);
}
.home-style-card--salsa:hover {
  border-color: var(--md-sys-color-secondary);
}
.home-style-card--bachata {
  border-color: rgba(124, 107, 196, 0.25);
}
.home-style-card--bachata .home-style-card__icon {
  background-color: var(--md-sys-color-tertiary-container);
  color: var(--md-sys-color-on-tertiary-container);
}
.home-style-card--bachata .home-style-card__name,
.home-style-card--bachata .home-style-card__link {
  color: var(--md-sys-color-tertiary);
}
.home-style-card--bachata .home-style-card__desc {
  color: var(--md-sys-color-on-surface-variant);
}
.home-style-card--bachata:hover {
  border-color: var(--md-sys-color-tertiary);
}

.home-features {
  padding: 80px 0;
}

.home-feature {
  padding: 24px;
  border-radius: 16px;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  height: 100%;
}
.home-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.home-feature__icon--primary {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}
.home-feature__icon--secondary {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}
.home-feature__icon--tertiary {
  background-color: var(--md-sys-color-tertiary-container);
  color: var(--md-sys-color-on-tertiary-container);
}
.home-feature__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 10px;
}
.home-feature__desc {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.65;
  margin-bottom: 0;
}

.home-cta {
  padding: 80px 0 100px;
  background-color: var(--md-sys-color-surface-container-lowest);
}
.home-cta__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.home-cta__title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 12px;
}
.home-cta__subtitle {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 36px;
}
.home-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.home-cta__btn {
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232, 76, 61, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.home-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232, 76, 61, 0.45);
  color: var(--md-sys-color-on-primary-container);
  text-decoration: none;
}
.home-cta__skip {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  text-decoration: none;
}
.home-cta__skip:hover {
  color: var(--md-sys-color-on-surface);
  text-decoration: underline;
}

.explorer {
  padding: 0 0 80px;
}

.explorer-header {
  padding: 40px 0 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}
.explorer-header__top {
  margin-bottom: 24px;
}
.explorer-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--md-sys-color-primary);
  margin-bottom: 8px;
}
.explorer-header__subtitle {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
}

.explorer-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.explorer-type-tabs {
  display: flex;
  gap: 4px;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 12px;
  padding: 4px;
  width: fit-content;
}

.explorer-type-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.explorer-type-tab:hover {
  background-color: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-on-surface);
  text-decoration: none;
}
.explorer-type-tab--active {
  background-color: var(--md-sys-color-surface-container-highest);
  color: var(--md-sys-color-on-surface);
  font-weight: 600;
}

.explorer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.explorer-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--md-sys-color-outline-variant);
  background-color: transparent;
  color: var(--md-sys-color-on-surface-variant);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.explorer-tag:hover {
  background-color: var(--md-sys-color-surface-container);
  border-color: var(--md-sys-color-outline);
  color: var(--md-sys-color-on-surface);
  text-decoration: none;
}
.explorer-tag--active {
  background-color: var(--md-sys-color-primary-container);
  border-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}
.explorer-tag--active:hover {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}

.explorer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.explorer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  gap: 12px;
}
.explorer-empty__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 8px;
}
.explorer-empty__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  margin: 0;
}
.explorer-empty__subtitle {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  max-width: 400px;
  margin: 0;
}
.explorer-empty__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.explorer-empty__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 76, 61, 0.3);
  color: var(--md-sys-color-on-primary-container);
  text-decoration: none;
}

.post-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-content__title {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  line-height: 1.3;
  margin: 0;
}

.post-content__header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}

.post-content__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--md-sys-color-outline-variant);
}

.post-content__pseudo {
  font-size: 14px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  text-decoration: none;
  flex: 1;
}
.post-content__pseudo:hover {
  color: var(--md-sys-color-primary);
  text-decoration: none;
}

.post-content__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-left: auto;
}
.post-content__actions .btn {
  padding: 6px 12px;
  font-size: 13px;
}
.post-content__actions form {
  display: inline-flex;
}

.post-content__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.4;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.post-content__action-btn:hover {
  background-color: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-on-surface);
  text-decoration: none;
}
.post-content__action-btn--danger:hover {
  background-color: var(--md-sys-color-error-container);
  color: var(--md-sys-color-on-error-container);
}

.post-content__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-content__description {
  font-size: 15px;
  line-height: 1.75;
  color: var(--md-sys-color-on-surface);
  white-space: pre-line;
}
.post-content__description a.hashtag,
.post-content__description a.user {
  color: var(--md-sys-color-primary);
  font-weight: 500;
  text-decoration: none;
}
.post-content__description a.hashtag:hover,
.post-content__description a.user:hover {
  text-decoration: underline;
}

.post-content__comments {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--md-sys-color-outline-variant);
}

.post-content__comment-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-content__comment-textarea {
  width: 100%;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 12px;
  color: var(--md-sys-color-on-surface);
  padding: 12px 16px;
  font-size: 14px;
  resize: vertical;
  transition: border-color 0.15s ease;
}
.post-content__comment-textarea::placeholder {
  color: var(--md-sys-color-on-surface-variant);
}
.post-content__comment-textarea:focus {
  outline: none;
  border-color: var(--md-sys-color-primary);
  background-color: var(--md-sys-color-surface-container-low);
}

.post-content__comment-submit {
  align-self: flex-end;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  border: none;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.15s ease;
}
.post-content__comment-submit:hover {
  filter: brightness(1.1);
}

.commentary {
  display: flex;
  gap: 10px;
  padding: 10px 0;
}

.commentary-response {
  margin-top: 6px;
  padding: 6px 0 6px 12px;
  border-left: 2px solid var(--md-sys-color-outline-variant);
}

.commentary-avatar {
  flex-shrink: 0;
}
.commentary-avatar img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.commentary-response .commentary-avatar img {
  width: 30px;
  height: 30px;
}

.commentary-body {
  flex: 1;
  min-width: 0;
}

.commentary-bubble {
  background-color: var(--md-sys-color-surface-container);
  border-radius: 14px;
  padding: 8px 14px;
  display: inline-block;
  max-width: 100%;
}

.commentary-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.commentary-pseudo {
  font-weight: 600;
  font-size: 13px;
  color: var(--md-sys-color-on-surface);
}

.commentary-date {
  font-size: 11px;
  color: var(--md-sys-color-outline);
}

.commentary-content {
  font-size: 14px;
  color: var(--md-sys-color-on-surface);
  word-wrap: break-word;
  line-height: 1.5;
}
.commentary-content p:last-child {
  margin-bottom: 0;
}

.commentary-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 4px;
  padding-left: 4px;
}

.commentary-action {
  background: none;
  border: none;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.commentary-action:hover {
  background-color: var(--md-sys-color-surface-container);
  color: var(--md-sys-color-on-surface);
}
.commentary-action .fas {
  font-size: 10px;
}

.response-form-wrapper {
  margin-top: 6px;
  padding-left: 4px;
}

.response-textarea {
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 10px;
  color: var(--md-sys-color-on-surface);
  padding: 8px 14px;
  resize: vertical;
  font-size: 13px;
  width: 100%;
  transition: border-color 0.15s ease;
}
.response-textarea:focus {
  outline: none;
  border-color: var(--md-sys-color-primary);
}

.response-form-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 6px;
}

.btn-text {
  background: none;
  border: none;
  padding: 5px 12px;
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  cursor: pointer;
  border-radius: 20px;
  transition: background-color 0.15s ease;
}
.btn-text:hover {
  background-color: var(--md-sys-color-surface-container);
}

.btn-primary-action {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  border: none;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: filter 0.15s ease;
}
.btn-primary-action:hover {
  filter: brightness(1.1);
}

.response-area {
  margin-top: 4px;
}

.load-responses-form-button {
  background: none;
  border: none;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--md-sys-color-primary);
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  transition: background-color 0.15s ease;
}
.load-responses-form-button:hover {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}
.load-responses-form-button .fas {
  font-size: 10px;
  transition: transform 0.2s ease;
}
.load-responses-form-button.loading .fas {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 576px) {
  .post-content__header {
    gap: 8px;
  }
  .post-content__actions {
    width: 100%;
    margin-left: 0;
  }
  .commentary-avatar img {
    width: 30px;
    height: 30px;
  }
  .commentary-response .commentary-avatar img {
    width: 26px;
    height: 26px;
  }
}
.notif-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}
.notif-page__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  margin: 0;
}
.notif-page__title i {
  color: var(--md-sys-color-primary);
}
.notif-page__mark-all {
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  text-decoration: none;
  transition: color 0.15s ease;
}
.notif-page__mark-all:hover {
  color: var(--md-sys-color-primary);
  text-decoration: none;
}
.notif-page__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}
.notif-page__empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--md-sys-color-surface-container-high);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 16px;
}
.notif-page__empty-text {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
}

.notif-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notif-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.notif-item:hover {
  background-color: var(--md-sys-color-surface-container-high);
  border-color: var(--md-sys-color-outline-variant);
}
.notif-item--unread {
  background-color: var(--md-sys-color-surface-container-high);
  border-color: var(--md-sys-color-outline-variant);
}
.notif-item__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.notif-item__type-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  z-index: 1;
  border: 2px solid var(--md-sys-color-surface-container);
}
.notif-item__type-icon--like {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}
.notif-item__type-icon--comment {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}
.notif-item__type-icon--follow {
  background-color: var(--md-sys-color-tertiary-container);
  color: var(--md-sys-color-on-tertiary-container);
}
.notif-item__type-icon--checker {
  background-color: var(--md-sys-color-success-container);
  color: var(--md-sys-color-on-success-container);
}
.notif-item__type-icon--ticket {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}
.notif-item__type-icon--cancel {
  background-color: var(--md-sys-color-error-container);
  color: var(--md-sys-color-on-error-container);
}
.notif-item__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--md-sys-color-outline-variant);
}
.notif-item__body {
  flex: 1;
  min-width: 0;
}
.notif-item__text {
  font-size: 14px;
  color: var(--md-sys-color-on-surface);
  line-height: 1.5;
  margin: 0 0 4px;
}
.notif-item__pseudo {
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  text-decoration: none;
}
.notif-item__pseudo:hover {
  color: var(--md-sys-color-primary);
  text-decoration: none;
}
.notif-item__time {
  font-size: 12px;
  color: var(--md-sys-color-on-surface-variant);
}
.notif-item__action {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--md-sys-color-surface-container-highest);
  color: var(--md-sys-color-on-surface-variant);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.notif-item__action:hover {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  text-decoration: none;
}
.notif-item__dot {
  position: absolute;
  top: 14px;
  right: 56px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--md-sys-color-primary);
  flex-shrink: 0;
}

.login-card--wide {
  max-width: 480px;
}

.login-page {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 24px;
  padding: 40px 36px;
}
.login-card__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.login-card__brand-icon {
  font-size: 24px;
  color: var(--md-sys-color-primary);
}
.login-card__brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--md-sys-color-on-surface);
  letter-spacing: -0.02em;
}
.login-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  text-align: center;
  margin-bottom: 24px;
}
.login-card__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.login-card__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.login-card__divider::before, .login-card__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--md-sys-color-outline-variant);
}
.login-card__divider span {
  font-size: 12px;
  color: var(--md-sys-color-on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.login-card__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.login-card__submit {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 50px;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
  margin-top: 4px;
}
.login-card__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.login-card__submit:active {
  transform: translateY(0);
}
.login-card__register {
  text-align: center;
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--md-sys-color-outline-variant);
}
.login-card__register-link {
  color: var(--md-sys-color-primary);
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}
.login-card__register-link:hover {
  text-decoration: underline;
  color: var(--md-sys-color-primary);
}

.login-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 50px;
  border: 1px solid var(--md-sys-color-outline-variant);
  background-color: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-on-surface);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.login-social-btn:hover {
  background-color: var(--md-sys-color-surface-container-highest);
  border-color: var(--md-sys-color-outline);
  color: var(--md-sys-color-on-surface);
  text-decoration: none;
}
.login-social-btn img {
  flex-shrink: 0;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.login-field > div {
  margin: 0;
}
.login-field__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-field__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
}
.login-field__forgot {
  font-size: 12px;
  color: var(--md-sys-color-on-surface-variant);
  text-decoration: none;
}
.login-field__forgot:hover {
  color: var(--md-sys-color-primary);
  text-decoration: none;
}
.login-field__input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--md-sys-color-outline-variant);
  background-color: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-on-surface);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.login-field__input::placeholder {
  color: var(--md-sys-color-on-surface-variant);
  opacity: 0.6;
}
.login-field__input:focus {
  border-color: var(--md-sys-color-primary);
  background-color: var(--md-sys-color-surface-container-highest);
}

.signup-gender {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--md-sys-color-outline-variant);
  background-color: var(--md-sys-color-surface-container-high);
}
.signup-gender label {
  text-align: center;
  padding: 10px 8px;
  margin: 0px;
  font-size: 14px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.signup-gender input[type=radio] {
  display: none;
}
.signup-gender input[type=radio]:checked + label {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  font-weight: 600;
}

.signup-captcha {
  display: flex;
  justify-content: center;
}

.video-view {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-areas: "main sidebar";
  gap: 24px;
  align-items: start;
  padding: 24px 16px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .video-view {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "sidebar";
  }
}
.video-view__main {
  grid-area: main;
  min-width: 0;
}
.video-view__player-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
  margin-bottom: 16px;
}
.video-view__pending {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #000;
}
.video-view__pending-spinner {
  width: 48px;
  height: 48px;
  border-width: 4px;
  color: var(--md-sys-color-primary);
}
.video-view__pending-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
  text-align: center;
  max-width: 360px;
  margin: 0;
  padding: 0 24px;
}
.video-view__moderated {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.video-view__moderated-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--md-sys-color-error);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--md-sys-color-on-error);
  font-size: 26px;
  margin-bottom: 4px;
}
.video-view__moderated-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.video-view__moderated-body {
  font-size: 14px;
  text-align: center;
  max-width: 400px;
  margin: 0;
  padding: 0 24px;
  opacity: 0.85;
}
.video-view__content {
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 16px;
  padding: 20px;
}
.video-view__sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 16px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--md-sys-color-outline-variant) transparent;
}
.video-view__sidebar .d-flex {
  flex-direction: column;
  align-items: stretch;
}
.video-view__sidebar .post-card {
  width: 100%;
  margin: 0 0 8px;
}
@media (max-width: 991px) {
  .video-view__sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  .video-view__sidebar .d-flex {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .video-view__sidebar .post-card {
    width: 300px;
    margin: 8px;
  }
}
.video-view__sidebar-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  padding: 0 4px;
}
.video-view__sidebar-title i {
  color: var(--md-sys-color-primary);
}

/*
.video-js--podida {
	width: 100%;
	border-radius: 16px;

	// Big play button
	.vjs-big-play-button {
		border-radius: 50%;
		width: 64px;
		height: 64px;
		line-height: 64px;
		border: 3px solid rgba(255, 255, 255, 0.85);
		background-color: rgba(0, 0, 0, 0.45);
		backdrop-filter: blur(6px);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		margin: 0;
		transition: background-color 0.15s ease, transform 0.15s ease;

		&:hover {
			background-color: var(--md-sys-color-primary-container);
			border-color: transparent;
			transform: translate(-50%, -50%) scale(1.1);
		}

		.vjs-icon-placeholder::before {
			font-size: 28px;
			line-height: 60px;
		}
	}

	// Control bar
	.vjs-control-bar {
		border-radius: 0 0 16px 16px;
		background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
		padding: 0 8px 4px;
	}

	// Progress bar accent
	.vjs-play-progress,
	.vjs-volume-level {
		background-color: var(--md-sys-color-primary);
	}
}
*/
.event-canceled-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background-color: var(--md-sys-color-error-container);
  color: var(--md-sys-color-on-error-container);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.event-view {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-areas: "main sidebar";
  gap: 24px;
  align-items: start;
  padding: 24px 16px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .event-view {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "sidebar";
  }
}
.event-view__main {
  grid-area: main;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-view__content {
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 16px;
  padding: 20px;
}
.event-view__sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 16px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--md-sys-color-outline-variant) transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-view__sidebar .d-flex {
  flex-direction: column;
  align-items: stretch;
}
.event-view__sidebar .post-card {
  width: 100%;
  margin: 0 0 8px;
}
@media (max-width: 991px) {
  .event-view__sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  .event-view__sidebar .d-flex {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .event-view__sidebar .post-card {
    width: 300px;
    margin: 8px;
  }
}
.event-view__sidebar-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  padding: 0 4px;
}
.event-view__sidebar-title i {
  color: var(--md-sys-color-secondary);
}

.event-view__carousel {
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--md-sys-color-surface-container-lowest);
}

.event-carousel__inner {
  border-radius: 16px;
}
.event-carousel__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.event-carousel__indicators li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 4px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.event-carousel__indicators li.active {
  background-color: var(--md-sys-color-primary);
  transform: scale(1.3);
}
.event-carousel__control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.event-carousel__control.carousel-control-prev {
  left: 12px;
}
.event-carousel__control.carousel-control-next {
  right: 12px;
}
.event-carousel__control i {
  font-size: 16px;
  color: #fff;
}
.event-carousel__control:hover {
  background-color: var(--md-sys-color-primary-container);
}
.event-carousel__control:hover i {
  color: var(--md-sys-color-on-primary-container);
}

.event-view__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 12px;
  padding: 10px 14px;
  flex: 1;
  min-width: 200px;
}
.event-meta-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.event-meta-item__icon--primary {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}
.event-meta-item__icon--secondary {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}
.event-meta-item__icon--tertiary {
  background-color: var(--md-sys-color-tertiary-container);
  color: var(--md-sys-color-on-tertiary-container);
}
.event-meta-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.event-meta-item__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--md-sys-color-on-surface-variant);
}
.event-meta-item__value {
  font-size: 13px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-sidebar-card {
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 16px;
  padding: 18px 20px;
}
.event-sidebar-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 16px;
}
.event-sidebar-card__title i {
  color: var(--md-sys-color-primary);
}

.event-schedule {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event-schedule__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
}
.event-schedule__row--open {
  background-color: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-on-surface);
}
.event-schedule__day {
  font-weight: 500;
}
.event-schedule__hours {
  font-size: 12px;
  text-align: right;
}
.event-schedule__closed {
  font-size: 12px;
  color: var(--md-sys-color-on-surface-variant);
  font-style: italic;
}

.event-ticket-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-ticket-form__submit {
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: 50px;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
  margin-top: 4px;
}
.event-ticket-form__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.event-ticket-price {
  padding: 12px;
  border-radius: 12px;
  background-color: var(--md-sys-color-surface-container-high);
  border: 1px solid var(--md-sys-color-outline-variant);
}
.event-ticket-price__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.event-ticket-price__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
}
.event-ticket-price__amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--md-sys-color-secondary);
}
.event-ticket-price__qty > div {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-ticket-price__qty > div label {
  font-size: 12px;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
  white-space: nowrap;
}

.naming-page {
  max-width: 840px;
  margin: 40px auto;
  padding: 0 16px 60px;
}
.naming-page__header {
  margin-bottom: 32px;
}
.naming-page__event {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--md-sys-color-primary);
  margin-bottom: 8px;
}
.naming-page__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 8px;
}
.naming-page__title i {
  color: var(--md-sys-color-secondary);
}
.naming-page__subtitle {
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
}
.naming-page__back {
  display: block;
  font-size: 14px;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 20px;
}

.naming-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.naming-form__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}
.naming-form__submit {
  padding: 13px 36px;
  border: none;
  border-radius: 50px;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.naming-form__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.naming-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.naming-group__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}
.naming-group__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.naming-group__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  flex: 1;
}
.naming-group__count {
  font-size: 12px;
  color: var(--md-sys-color-on-surface-variant);
  background-color: var(--md-sys-color-surface-container-high);
  padding: 3px 10px;
  border-radius: 20px;
}

.naming-ticket {
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 14px;
  padding: 16px;
}
.naming-ticket__number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--md-sys-color-surface-container-highest);
  color: var(--md-sys-color-on-surface-variant);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 22px;
}
.naming-ticket__fields {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .naming-ticket__fields {
    grid-template-columns: 1fr;
  }
}

.event-ticket-select {
  flex: 1;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--md-sys-color-outline-variant);
  background-color: var(--md-sys-color-surface-container);
  color: var(--md-sys-color-on-surface);
  font-size: 13px;
  outline: none;
}
.event-ticket-select:focus {
  border-color: var(--md-sys-color-primary);
}

.search-page {
  padding: 32px 0 60px;
}

.search-page__header {
  margin-bottom: 28px;
}

.search-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 6px;
}
.search-page__eyebrow .fas {
  color: var(--md-sys-color-primary);
}

.search-page__query {
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 800;
  color: var(--md-sys-color-on-surface);
  margin: 0;
  word-break: break-word;
}

.search-page__tabs {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search-page__tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--md-sys-color-on-surface-variant);
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.search-page__tab:hover {
  color: var(--md-sys-color-on-surface);
  background-color: var(--md-sys-color-surface-container);
}
.search-page__tab.active {
  color: var(--md-sys-color-primary);
  border-bottom-color: var(--md-sys-color-primary);
  font-weight: 600;
}
.search-page__tab .fas {
  font-size: 12px;
}

.search-page__panels .spinner {
  padding: 28px 0;
}
.search-page__panels .spinner .spinner-border {
  color: var(--md-sys-color-primary);
}

.search-page__cards {
  display: flex;
  flex-wrap: wrap;
}

.search-page__profile-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}

.profile-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.profile-result:hover {
  background-color: var(--md-sys-color-surface-container-high);
  border-color: var(--md-sys-color-outline);
  text-decoration: none;
}

.profile-result__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--md-sys-color-outline-variant);
}

.profile-result__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.profile-result__pseudo {
  font-size: 15px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-result__bio {
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-result__arrow {
  color: var(--md-sys-color-on-surface-variant);
  font-size: 12px;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .search-page__tab {
    padding: 8px 12px;
    font-size: 13px;
  }
}
.cgu {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.cgu__header {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}

.cgu__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--md-sys-color-primary);
  margin-bottom: 10px;
}

.cgu__title {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  color: var(--md-sys-color-on-surface);
  margin: 0 0 12px;
  line-height: 1.2;
}

.cgu__meta {
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
}

.cgu__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}
.cgu__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cgu__section p {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.75;
  margin-bottom: 14px;
}
.cgu__section p:last-child {
  margin-bottom: 0;
}
.cgu__section p strong {
  color: var(--md-sys-color-on-surface);
  font-weight: 600;
}
.cgu__section p a {
  color: var(--md-sys-color-primary);
  text-decoration: underline;
}
.cgu__section p a:hover {
  color: var(--md-sys-color-primary);
  opacity: 0.8;
}
.cgu__section ul,
.cgu__section ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.cgu__section ul li,
.cgu__section ol li {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.7;
  margin-bottom: 6px;
}
.cgu__section ul li strong,
.cgu__section ol li strong {
  color: var(--md-sys-color-on-surface);
  font-weight: 600;
}

.cgu__section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--md-sys-color-primary-container);
  display: inline-block;
}

.cgu__subsection-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  margin: 24px 0 12px;
}

.cgu__highlight {
  display: flex;
  gap: 16px;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-primary-container);
  border-left: 4px solid var(--md-sys-color-primary-container);
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0;
}
.cgu__highlight ol {
  margin-bottom: 12px;
}

.cgu__highlight-icon {
  font-size: 22px;
  color: var(--md-sys-color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.cgu__highlight-note {
  font-size: 13px !important;
  color: var(--md-sys-color-on-surface-variant);
  font-style: italic;
  background-color: var(--md-sys-color-surface-container-high);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 12px !important;
}

.cgu__table-wrapper {
  overflow-x: auto;
  margin: 16px 0;
  border-radius: 12px;
  border: 1px solid var(--md-sys-color-outline-variant);
}

.cgu__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.cgu__table thead {
  background-color: var(--md-sys-color-surface-container-high);
}
.cgu__table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  white-space: nowrap;
}
.cgu__table tbody tr {
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}
.cgu__table tbody tr:last-child {
  border-bottom: none;
}
.cgu__table tbody tr:nth-child(even) {
  background-color: var(--md-sys-color-surface-container);
}
.cgu__table tbody td {
  padding: 12px 16px;
  color: var(--md-sys-color-on-surface-variant);
  vertical-align: top;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .cgu__highlight {
    flex-direction: column;
    gap: 10px;
  }
  .cgu__highlight-icon {
    display: none;
  }
  .cgu__section-title {
    font-size: 17px;
  }
}
.contact-page {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 48px;
}

.contact-page__header {
  text-align: center;
}

.contact-page__eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--md-sys-color-primary);
  margin-bottom: 12px;
}
.contact-page__eyebrow i {
  margin-right: 6px;
}

.contact-page__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 12px;
}

.contact-page__subtitle {
  font-size: 1rem;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0;
}

.contact-page__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .contact-page__body {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

.contact-page__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 12px;
}

.contact-info-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  border-radius: 10px;
  font-size: 16px;
}

.contact-info-card__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--md-sys-color-on-surface-variant);
  margin: 0 0 4px;
}

.contact-info-card__value {
  font-size: 14px;
  color: var(--md-sys-color-on-surface);
  margin: 0;
  text-decoration: none;
}
.contact-info-card__value:hover {
  color: var(--md-sys-color-primary);
  text-decoration: none;
}

.contact-info-card__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-info-card__link {
  font-size: 13px;
  color: var(--md-sys-color-primary);
  text-decoration: none;
  padding: 3px 10px;
  border: 1px solid var(--md-sys-color-primary);
  border-radius: 20px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.contact-info-card__link:hover {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  text-decoration: none;
}

.contact-page__form-wrapper {
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 16px;
  padding: 32px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 575px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 6px;
}

.contact-form__input,
.contact-form__textarea {
  background-color: var(--md-sys-color-surface-container-high);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 8px;
  color: var(--md-sys-color-on-surface);
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--md-sys-color-on-surface-variant);
  opacity: 0.6;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--md-sys-color-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 90, 0.15);
  background-color: var(--md-sys-color-surface-container-high);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__error {
  font-size: 12px;
  color: var(--md-sys-color-error);
  margin-top: 4px;
}

.contact-form__recaptcha {
  margin-bottom: 24px;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  border: none;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 32px;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
  width: 100%;
}
.contact-form__submit:hover {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}
.contact-form__submit:active {
  transform: scale(0.98);
}

.error-page {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
  text-align: center;
}

.error-page__inner {
  max-width: 520px;
  width: 100%;
}

.error-page__code {
  font-size: clamp(96px, 20vw, 160px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--md-sys-color-primary) 0%, var(--md-sys-color-tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  user-select: none;
}

.error-page__icon {
  font-size: 48px;
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 24px;
  opacity: 0.5;
}

.error-page__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 12px;
}

.error-page__desc {
  font-size: 15px;
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.6;
  margin-bottom: 36px;
}

.error-page__url {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: monospace;
  font-size: 13px;
  color: var(--md-sys-color-on-surface-variant);
  background-color: var(--md-sys-color-surface-container);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 36px;
}

.error-page__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-page__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.error-page__btn:hover {
  text-decoration: none;
  opacity: 0.88;
  transform: translateY(-1px);
}
.error-page__btn:active {
  transform: translateY(0);
}
.error-page__btn--primary {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}
.error-page__btn--secondary {
  background-color: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-on-surface);
  border: 1px solid var(--md-sys-color-outline-variant);
}

.md-sys-color-primary {
  background-color: var(--md-sys-color-primary) !important;
}

.md-sys-color-on-primary {
  color: var(--md-sys-color-on-primary) !important;
}

.md-sys-color-primary-container {
  background-color: var(--md-sys-color-primary-container) !important;
}

.md-sys-color-on-primary-container {
  color: var(--md-sys-color-on-primary-container) !important;
}

.md-sys-color-secondary {
  background-color: var(--md-sys-color-secondary) !important;
}

.md-sys-color-on-secondary {
  color: var(--md-sys-color-on-secondary) !important;
}

.md-sys-color-secondary-container {
  background-color: var(--md-sys-color-secondary-container) !important;
}

.md-sys-color-on-secondary-container {
  color: var(--md-sys-color-on-secondary-container) !important;
}

.md-sys-color-tertiary {
  background-color: var(--md-sys-color-tertiary) !important;
}

.md-sys-color-on-tertiary {
  color: var(--md-sys-color-on-tertiary) !important;
}

.md-sys-color-tertiary-container {
  background-color: var(--md-sys-color-tertiary-container) !important;
}

.md-sys-color-on-tertiary-container {
  color: var(--md-sys-color-on-tertiary-container) !important;
}

.md-sys-color-error {
  background-color: var(--md-sys-color-error) !important;
}

.md-sys-color-on-error {
  color: var(--md-sys-color-on-error) !important;
}

.md-sys-color-error-container {
  background-color: var(--md-sys-color-error-container) !important;
}

.md-sys-color-on-error-container {
  color: var(--md-sys-color-on-error-container) !important;
}

.md-sys-color-success {
  background-color: var(--md-sys-color-success) !important;
}

.md-sys-color-on-success {
  color: var(--md-sys-color-on-success) !important;
}

.md-sys-color-success-container {
  background-color: var(--md-sys-color-success-container) !important;
}

.md-sys-color-on-success-container {
  color: var(--md-sys-color-on-success-container) !important;
}

.md-sys-color-warning {
  background-color: var(--md-sys-color-warning) !important;
}

.md-sys-color-on-warning {
  color: var(--md-sys-color-on-warning) !important;
}

.md-sys-color-warning-container {
  background-color: var(--md-sys-color-warning-container) !important;
}

.md-sys-color-on-warning-container {
  color: var(--md-sys-color-on-warning-container) !important;
}

.md-sys-color-background {
  background-color: var(--md-sys-color-background) !important;
}

.md-sys-color-on-background {
  color: var(--md-sys-color-on-background) !important;
}

.md-sys-color-surface {
  background-color: var(--md-sys-color-surface) !important;
}

.md-sys-color-on-surface {
  color: var(--md-sys-color-on-surface) !important;
}

.md-sys-color-surface-variant {
  background-color: var(--md-sys-color-surface-variant) !important;
}

.md-sys-color-on-surface-variant {
  color: var(--md-sys-color-on-surface-variant) !important;
}

.md-sys-color-outline {
  border: 1px solid var(--md-sys-color-outline) !important;
}

.md-sys-color-outline-variant {
  border: 1px solid var(--md-sys-color-outline-variant) !important;
}

.md-sys-color-shadow {
  background-color: var(--md-sys-color-shadow) !important;
}

.md-sys-color-scrim {
  background-color: var(--md-sys-color-scrim) !important;
}

.md-sys-color-inverse-surface {
  background-color: var(--md-sys-color-inverse-surface) !important;
}

.md-sys-color-inverse-on-surface {
  color: var(--md-sys-color-inverse-on-surface) !important;
}

.md-sys-color-inverse-primary {
  background-color: var(--md-sys-color-inverse-primary) !important;
}

.md-sys-color-surface-container-lowest {
  background-color: var(--md-sys-color-surface-container-lowest) !important;
}

.md-sys-color-surface-container-low {
  background-color: var(--md-sys-color-surface-container-low) !important;
}

.md-sys-color-surface-container {
  background-color: var(--md-sys-color-surface-container) !important;
}

.md-sys-color-surface-container-high {
  background-color: var(--md-sys-color-surface-container-high) !important;
}

.md-sys-color-surface-container-highest {
  background-color: var(--md-sys-color-surface-container-highest) !important;
}

.md-sys-color-surface-bright {
  background-color: var(--md-sys-color-surface-bright) !important;
}

.md-sys-color-surface-dim {
  background-color: var(--md-sys-color-surface-dim) !important;
}

/*

.md-sys-color-primary {


    background-color: var( --md-sys-color-primary ) !important;


}

.md-sys-color-on-primary {


    color: var( --md-sys-color-on-primary ) !important;


}

.md-sys-color-primary-container {


    background-color: var( --md-sys-color-primary-container ) !important;


}

.md-sys-color-on-primary-container {


    color: var( --md-sys-color-on-primary-container ) !important;


}

.md-sys-color-secondary {


    background-color: var( --md-sys-color-secondary ) !important;


}

.md-sys-color-on-secondary {


    color: var( --md-sys-color-on-secondary ) !important;


}

.md-sys-color-secondary-container {


    background-color: var( --md-sys-color-secondary-container ) !important;


}

.md-sys-color-on-secondary-container {


    color: var( --md-sys-color-on-secondary-container ) !important;


}

.md-sys-color-tertiary {


    background-color: var( --md-sys-color-tertiary ) !important;


}

.md-sys-color-on-tertiary {


    color: var( --md-sys-color-on-tertiary ) !important;


}

.md-sys-color-tertiary-container {


    background-color: var( --md-sys-color-tertiary-container ) !important;


}

.md-sys-color-on-tertiary-container {


    color: var( --md-sys-color-on-tertiary-container ) !important;


}

.md-sys-color-error {


    background-color: var( --md-sys-color-error ) !important;


}

.md-sys-color-on-error {


    color: var( --md-sys-color-on-error ) !important;


}

.md-sys-color-error-container {


    background-color: var( --md-sys-color-error-container ) !important;


}

.md-sys-color-on-error-container {


    color: var( --md-sys-color-on-error-container ) !important;


}

.md-sys-color-background {


    background-color: var( --md-sys-color-background ) !important;


}

.md-sys-color-on-background {


    color: var( --md-sys-color-on-background ) !important;


}

.md-sys-color-surface {


    background-color: var( --md-sys-color-surface ) !important;


}

.md-sys-color-on-surface {


    color: var( --md-sys-color-on-surface ) !important;


}

.md-sys-color-surface-variant {


    background-color: var( --md-sys-color-surface-variant ) !important;


}

.md-sys-color-on-surface-variant {


    color: var( --md-sys-color-on-surface-variant ) !important;


}

.md-sys-color-outline {


    border: 1px solid var( --md-sys-color-outline ) !important;


}

.md-sys-color-outline-variant {


    border: 1px solid var( --md-sys-color-outline-variant ) !important;


}

.md-sys-color-shadow {


    background-color: var( --md-sys-color-shadow ) !important;


}

.md-sys-color-scrim {


    background-color: var( --md-sys-color-scrim ) !important;


}

.md-sys-color-inverse-surface {


    background-color: var( --md-sys-color-inverse-surface ) !important;


}

.md-sys-color-inverse-on-surface {


    color: var( --md-sys-color-inverse-on-surface ) !important;


}

.md-sys-color-inverse-primary {


    background-color: var( --md-sys-color-inverse-primary ) !important;


}

.md-sys-color-surface-container-lowest {


    background-color: var( --md-sys-color-surface-container-lowest ) !important;


}

.md-sys-color-surface-container-low {


    background-color: var( --md-sys-color-surface-container-low ) !important;


}

.md-sys-color-surface-container {


    background-color: var( --md-sys-color-surface-container ) !important;


}

.md-sys-color-surface-container-high {


    background-color: var( --md-sys-color-surface-container-high ) !important;


}

.md-sys-color-surface-container-highest {


    background-color: var( --md-sys-color-surface-container-highest ) !important;


}

.md-sys-color-surface-bright {


    background-color: var( --md-sys-color-surface-bright ) !important;


}

.md-sys-color-surface-dim {


    background-color: var( --md-sys-color-surface-dim ) !important;


}

*/
:root {
  --filled-button-toggle-color: var( --md-sys-color-secondary );
  --filled-button-on-toggle-color: var( --md-sys-color-primary );
  --filled-button-active-color: var( --md-sys-color-primary );
  --filled-button-on-active-color: var( --md-sys-color-on-primary );
}

md-filled-button.toggle {
  --md-sys-color-primary: #00000000;
  --md-sys-color-on-primary: var( --filled-button-on-toggle-color );
  border: 1px solid var(--filled-button-on-toggle-color);
}
md-filled-button.toggle:hover {
  box-shadow: none;
}
md-filled-button.toggle.active {
  --md-sys-color-primary: var( --filled-button-active-color );
  --md-sys-color-on-primary: var( --filled-button-on-active-color );
  border: 1px solid var(--filled-button-on-toggle-color);
}

md-filled-text-field,
md-outlined-text-field {
  width: 100%;
}
md-filled-text-field[type=hidden],
md-outlined-text-field[type=hidden] {
  display: none;
}

md-outlined-select,
md-filled-select {
  width: 100%;
  min-width: 10%;
}

/*
@use "material-bootstrap-variables.scss";

@use "../../bootstrap/scss/bootstrap.scss";
*/
body,
header .nav {
  background-color: var(--md-sys-color-background);
  color: var(--md-sys-color-on-background);
}

.btn-link {
  color: var(--md-sys-color-primary);
}
.btn-link:hover {
  text-decoration: none;
  color: var(--md-sys-color-primary);
}

.md-outlined-card {
  background-color: var(--md-sys-color-surface);
  border: 1px solid var(--md-sys-color-outline-variant);
  color: var(--md-sys-color-on-surface);
  border-radius: 20px;
  transition: all 0.5s;
}
.md-outlined-card:hover {
  border: 1px solid color-mix(in srgb, var(--md-sys-color-outline-variant) 70%, white);
}
.md-outlined-card .card__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.md-outlined-card .card__title,
.md-outlined-card .card__text {
  color: var(--md-sys-color-on-surface);
}
.md-outlined-card .card__icon {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}

.card,
.md-filled-card {
  background-color: var(--md-sys-color-surface-container-highest);
  color: var(--md-sys-color-on-surface);
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s;
}
.card .card__title,
.md-filled-card .card__title {
  font-weight: bold;
  margin-bottom: 20px;
}
.card .card__title,
.card .card__text,
.md-filled-card .card__title,
.md-filled-card .card__text {
  color: var(--md-sys-color-on-surface);
}
.card .card__icon,
.md-filled-card .card__icon {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}

a {
  color: var(--md-sys-color-primary);
  transition: all 0.2s;
}
a:hover {
  color: var(--md-sys-color-primary);
  text-decoration: none;
}

.list-group-item {
  background-color: var(--md-sys-color-surface-container);
  color: var(--md-sys-color-on-surface);
}

.list-group-item-action {
  background-color: var(--md-sys-color-surface-container);
  color: var(--md-sys-color-on-surface);
}
.list-group-item-action:hover {
  background-color: color-mix(in srgb, var(--md-sys-color-on-surface) 8%, var(--md-sys-color-surface-container));
  color: var(--md-sys-color-on-surface);
}

.list-group-item-action.active,
.list-group-item-action.focus {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-surface);
  border-color: var(--md-sys-color-on-surface);
}

.nav-pills .nav-link.active {
  color: var(--md-sys-color-on-primary);
}
.nav-pills .nav-link:hover {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}

.nav-tabs .nav-link {
  color: var(--md-sys-color-on-surface);
}
.nav-tabs .nav-link.active {
  background-color: var(--md-sys-color-secondary);
  color: var(--md-sys-color-on-secondary);
}

.dropdown-menu {
  background-color: var(--md-sys-color-surface-container);
  color: var(--md-sys-color-on-surface);
}

.dropdown-item {
  color: var(--md-sys-color-on-surface);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--md-sys-color-on-surface);
  background-color: color-mix(in srgb, var(--md-sys-color-on-surface), transparent 92%);
}

.modal-content {
  background-color: var(--md-sys-color-surface);
  color: var(--md-sys-color-on-surface);
}

/*************** APP *****************/
/****************************************/
.bg-black {
  background-color: black;
}

.thumbnail-avatar {
  width: 50px;
  height: 50px;
}

/*# sourceMappingURL=app.css.map */
