@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;700;800&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  background-color: #F8F6EF;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

.not-found-page {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.65) 0%, #F8F6EF 55%);
}

.not-found-card {
  position: relative;
  max-width: 760px;
  width: 100%;
  text-align: center;
  padding: 3rem 1.5rem;
}

.not-found-watermark {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(12rem, 28vw, 18rem);
  line-height: 0.85;
  font-weight: 800;
  color: rgba(112, 25, 61, 0.045);
  letter-spacing: -0.08em;
  user-select: none;
  pointer-events: none;
}

.not-found-code {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(5rem, 12vw, 7rem);
  line-height: 0.9;
  font-weight: 800;
  color: #70193D;
  letter-spacing: -0.03em;
}

.not-found-title {
  position: relative;
  z-index: 1;
  margin: 0.5rem 0 1.75rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
  color: #70193D;
  text-transform: uppercase;
}

.not-found-text {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  color: #a67f90;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

.not-found-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.not-found-primary,
.not-found-secondary {
  min-width: 220px;
}

.not-found-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.not-found-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.not-found-icon {
  display: inline-block; /* ensure the svg participates in inline layout */
  vertical-align: middle; /* align with text baseline */
  width: 1em; /* match the current font-size for consistent sizing */
  height: 1em;
  flex-shrink: 0;
  align-self: center; /* defensive: center inside flex containers */
}

@media (max-width: 640px) {
  .not-found-page {
    padding: 1.25rem;
  }
  .not-found-card {
    padding: 2rem 0.5rem;
  }
  .not-found-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .not-found-primary,
  .not-found-secondary {
    width: 100%;
    min-width: 0;
  }
}
.cta-button {
  background-color: #70193D;
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  display: inline-block;
  text-align: center;
}
.cta-button:hover {
  background-color: rgb(91.1532846715, 20.3467153285, 49.6459854015);
  transform: translateY(-2px);
}
.cta-button:active {
  transform: translateY(0);
}

.disabled-link-wrapper {
  position: relative;
  display: inline-flex;
  cursor: not-allowed;
}
.disabled-link-wrapper .cta-button.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.disabled-link-wrapper .coming-soon-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #3b2219;
  color: #8ab4f8;
  color: #fff;
  text-shadow: 0 0 2px #00f, 0 0 4px #00f;
  background-color: var(--primary-color, #70193D);
  color: #fff;
  text-shadow: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  pointer-events: none;
  background-color: #70193D;
}
.disabled-link-wrapper .coming-soon-tooltip svg {
  width: 20px;
  height: 20px;
  fill: #FFF7E6;
}
.disabled-link-wrapper .coming-soon-tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #70193D transparent;
}
.disabled-link-wrapper:hover .coming-soon-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.cta-solid-shadow {
  box-shadow: 4px 4px 0px rgba(166, 127, 144, 0.2);
  border-radius: 4px;
  transition: all 0.2s ease;
}
.cta-solid-shadow:hover {
  box-shadow: 6px 6px 0px rgba(166, 127, 144, 0.25);
  transform: translateY(-2px);
}
.cta-solid-shadow:active {
  transform: translateY(0);
}

.cta-outline {
  display: inline-block;
  background: transparent;
  color: #70193D;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border: 2px solid rgba(166, 127, 144, 0.3);
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.cta-outline:hover {
  border-color: #70193D;
  color: #70193D;
  background-color: rgba(112, 25, 61, 0.05);
  transform: translateY(-2px);
}
.cta-outline:active {
  transform: translateY(0);
}

.cta-full-width {
  width: 100%;
  display: block;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}
.section-header .sur-title {
  display: block;
  font-size: 0.95rem;
  color: rgba(112, 25, 61, 0.6);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.section-header .section-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #70193D;
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}
.section-header .section-description {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.15rem;
  color: #a67f90;
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background-color: #F8F6EF;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
  z-index: 100;
}
.site-header .brand .logo-img {
  height: 55px;
  width: auto;
}
.site-header .brand .brand-name {
  font-size: 2rem;
  font-weight: 800;
  color: #70193D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-header .burger-toggle {
  display: none;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  position: relative;
}
.site-header .burger-toggle .bar {
  position: absolute;
  left: 0;
  width: 30px;
  height: 4px;
  background-color: #70193D;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.site-header .burger-toggle .bar:nth-child(1) {
  top: 0;
}
.site-header .burger-toggle .bar:nth-child(2) {
  top: 10px;
}
.site-header .burger-toggle .bar:nth-child(3) {
  top: 20px;
}
.site-header .burger-toggle.is-active .bar:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.site-header .burger-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.site-header .burger-toggle.is-active .bar:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
.site-header .header-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.site-header .main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}
.site-header .main-nav a {
  text-decoration: none;
  font-size: 1.4rem;
  color: #a67f90;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-header .main-nav a:hover:not(.disabled) {
  color: #70193D;
}
.site-header .main-nav a.active {
  color: #70193D;
  font-weight: 700;
}
.site-header .main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #70193D;
}
@media (max-width: 900px) {
  .site-header {
    padding: 1rem 2rem;
  }
  .site-header .brand .logo-img {
    height: 40px;
  }
  .site-header .brand .brand-name {
    font-size: 1.25rem;
  }
  .site-header .burger-toggle {
    display: flex;
  }
  .site-header .header-content {
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: #F8F6EF;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    z-index: 90;
  }
  .site-header .header-content.is-open {
    transform: translateX(0);
  }
  .site-header .header-content .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .site-header .header-content .main-nav ul a {
    font-size: 1.8rem;
  }
}

.hero-banner {
  position: relative;
  background-color: #70193D;
  background-image: url("../images/hero-background.png");
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 103px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
@media (min-width: 1400px) {
  .hero-banner[data-step="1"] {
    justify-content: start;
    padding: 2rem 2rem 2rem 10rem;
  }
  .hero-banner[data-step="1"] .hero-content {
    align-items: flex-start;
  }
}
.hero-banner .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.8s ease-out;
}
.hero-banner .hero-logo {
  width: 100px;
  height: auto;
  margin-bottom: 2rem;
}
.hero-banner .hero-title {
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 800;
  color: #F8F6EF;
  line-height: 0.85;
  margin: 0 0 2rem 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: start;
}
.hero-banner .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #F8F6EF;
  margin: 0 0 3rem 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.hero-banner .hero-cta {
  background-color: #F8F6EF;
  color: #70193D;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(248, 246, 239, 0.15);
}
.hero-banner .hero-cta-outline {
  background-color: transparent;
  color: #F8F6EF;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 2px solid #F8F6EF;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(248, 246, 239, 0.15);
}
.hero-banner .hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248, 246, 239, 0.3);
}
.hero-banner .hero-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(248, 246, 239, 0.1);
}
.hero-banner .hero-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-banner .hero-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-banner .hero-spotlight {
  position: absolute;
  top: 0;
  right: 10%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1400px) {
  .hero-banner .hero-spotlight {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-banner {
    padding: 2rem 1rem;
    justify-content: center;
  }
  .hero-banner .hero-content {
    align-items: center;
    z-index: 2;
    max-width: 60%;
  }
  .hero-banner .hero-title {
    font-size: clamp(4rem, 12vw, 6.5rem);
    line-height: 1.1;
  }
  .hero-banner .hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1.2rem);
  }
  .hero-banner .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .hero-banner .hero-actions a {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-banner {
    padding: 1.5rem 1rem;
  }
  .hero-banner .hero-logo {
    width: 70px;
  }
  .hero-banner .hero-title {
    font-size: clamp(3.5rem, 15vw, 5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  .hero-banner .hero-subtitle {
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    margin-bottom: 2rem;
  }
  .hero-banner .hero-cta, .hero-banner .hero-cta-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}
.hero-banner .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  color: #F8F6EF;
  width: 36px;
  height: 36px;
  animation: bounceArrow 2s infinite ease-in-out;
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .hero-banner .scroll-indicator {
    animation: none;
  }
}
.hero-banner .scroll-indicator svg {
  width: 100%;
  height: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceArrow {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}
.why-participate {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  text-align: center;
}
.why-participate .reasons-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .why-participate .reasons-grid {
    flex-wrap: wrap;
  }
}
.why-participate .reason-card {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 3rem 2.5rem;
  text-align: left;
  border: 1px solid rgba(112, 25, 61, 0.05);
  box-shadow: 8px 8px 0px rgba(112, 25, 61, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-participate .reason-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0px rgba(112, 25, 61, 0.15);
}
.why-participate .reason-card .icon-box {
  width: 48px;
  height: 48px;
  background-color: rgba(166, 127, 144, 0.15);
  color: #70193D;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.why-participate .reason-card .icon-box svg {
  width: 24px;
  height: 24px;
}
.why-participate .reason-card .stat-number {
  font-size: 5rem;
  font-weight: 800;
  color: #70193D;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.why-participate .reason-card .card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #70193D;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.why-participate .reason-card .card-text {
  color: #a67f90;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.spotlight, .speakers-section {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  text-align: center;
}
.spotlight .speakers-grid, .speakers-section .speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.spotlight .speaker-profile, .speakers-section .speaker-profile {
  background-color: #ffffff;
  border-radius: 8px;
  width: 100%;
  max-width: 240px;
  overflow: hidden;
  border: 1px solid rgba(112, 25, 61, 0.05);
  box-shadow: 6px 6px 0px rgba(166, 127, 144, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 600px) {
  .spotlight .speaker-profile, .speakers-section .speaker-profile {
    max-width: calc(50% - 0.75rem);
  }
}
.spotlight .speaker-profile:hover, .speakers-section .speaker-profile:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px rgba(166, 127, 144, 0.2);
}
.spotlight .speaker-profile:hover .speaker-photo-placeholder span, .speakers-section .speaker-profile:hover .speaker-photo-placeholder span {
  transform: scale(1.05);
}
.spotlight .speaker-profile .speaker-photo, .speakers-section .speaker-profile .speaker-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.spotlight .speaker-profile .speaker-photo-placeholder, .speakers-section .speaker-profile .speaker-photo-placeholder {
  background-color: #70193D;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.spotlight .speaker-profile .speaker-photo-placeholder span, .speakers-section .speaker-profile .speaker-photo-placeholder span {
  font-size: 3.5rem;
  font-weight: 800;
  transition: transform 0.3s ease;
}
.spotlight .speaker-profile .speaker-info, .speakers-section .speaker-profile .speaker-info {
  padding: 1.25rem 1rem;
  text-align: center;
}
.spotlight .speaker-profile .speaker-info .speaker-name, .speakers-section .speaker-profile .speaker-info .speaker-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #70193D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
}
.spotlight .speaker-profile .speaker-info .speaker-job, .speakers-section .speaker-profile .speaker-info .speaker-job {
  color: #a67f90;
  font-size: 0.85rem;
  margin: 0 0 0.25rem 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.spotlight .speaker-profile .speaker-info .speaker-company, .speakers-section .speaker-profile .speaker-info .speaker-company {
  color: rgba(166, 127, 144, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.spotlight .speakers-toggle, .speakers-section .speakers-toggle {
  margin-top: 1rem;
  display: none;
  justify-content: center;
  width: 100%;
}
.spotlight .speakers-toggle .hero-cta-outline, .speakers-section .speakers-toggle .hero-cta-outline {
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  color: #70193D;
  border-color: #70193D;
}
.spotlight .speakers-toggle .hero-cta-outline:hover, .speakers-section .speakers-toggle .hero-cta-outline:hover {
  background-color: #70193D;
  color: #ffffff;
}
.spotlight .spotlight-actions, .speakers-section .spotlight-actions {
  display: flex;
  justify-content: center;
}

.tracks-section {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  text-align: center;
}
.tracks-section .tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
}
.tracks-section .track-card {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 3rem 2rem;
  text-align: left;
  border: 2px solid rgba(112, 25, 61, 0.15);
  box-shadow: 6px 6px 0px rgba(166, 127, 144, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tracks-section .track-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(166, 127, 144, 0.25);
}
.tracks-section .track-card .icon-box {
  width: 56px;
  height: 56px;
  background-color: transparent;
  border: 1px solid rgba(166, 127, 144, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: #70193D;
}
.tracks-section .track-card .icon-box svg {
  width: 28px;
  height: 28px;
}
.tracks-section .track-card .card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #70193D;
  margin: 0 0 1rem 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}
.tracks-section .track-card .card-text {
  color: #a67f90;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.tracks-section .section-actions {
  display: flex;
  justify-content: center;
}
.tracks-section .section-actions .cta-solid-shadow {
  box-shadow: 4px 4px 0px rgba(166, 127, 144, 0.2);
  border-radius: 4px;
}
.tracks-section .section-actions .cta-solid-shadow:hover {
  box-shadow: 6px 6px 0px rgba(166, 127, 144, 0.25);
}
.tracks-section .coming-soon-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(112, 25, 61, 0.05);
  box-shadow: 8px 8px 0px rgba(166, 127, 144, 0.15);
}
.tracks-section .coming-soon-card .coming-soon-badge {
  background-color: #70193D;
  color: #ffffff;
  padding: 1.25rem 2rem;
  border-radius: 6px;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1;
  text-align: center;
}
.tracks-section .coming-soon-card .coming-soon-text {
  color: #a67f90;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  text-align: center;
}

.practical-info-section {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  text-align: center;
}
.practical-info-section .practical-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 900px) {
  .practical-info-section .practical-content-wrapper {
    grid-template-columns: 1fr;
  }
}
.practical-info-section .info-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 3.5rem 3rem;
  text-align: left;
  box-shadow: 12px 12px 0px rgba(166, 127, 144, 0.15);
  border: 1px solid rgba(112, 25, 61, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
}
.practical-info-section .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.practical-info-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.practical-info-section .info-item .info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(166, 127, 144, 0.1);
  color: #70193D;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(166, 127, 144, 0.2);
}
.practical-info-section .info-item .info-icon svg {
  width: 24px;
  height: 24px;
}
.practical-info-section .info-item .info-text .info-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #a67f90;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.practical-info-section .info-item .info-text .info-value {
  font-size: 1.2rem;
  font-weight: 500;
  color: #70193D;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.practical-info-section .info-divider {
  border: none;
  height: 1px;
  background-color: rgba(166, 127, 144, 0.2);
  margin: auto 0 2.5rem 0;
  width: 100%;
}
.practical-info-section .info-image-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 12px 12px 0px rgba(166, 127, 144, 0.15);
  border: 1px solid rgba(112, 25, 61, 0.05);
  height: 100%;
  min-height: 400px;
}
.practical-info-section .info-image-container .info-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sponsors-section {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  text-align: center;
}
.sponsors-section .sponsors-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto 5rem;
}
.sponsors-section .sponsor-tier .tier-title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sponsors-section .sponsor-tier .tier-title::before, .sponsors-section .sponsor-tier .tier-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: currentColor;
  opacity: 0.2;
  margin: 0 1rem;
}
.sponsors-section .sponsor-tier .tier-title span {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 2px solid currentColor;
}
.sponsors-section .sponsor-tier.tier-platinium .tier-title {
  color: #7F8C8D;
}
.sponsors-section .sponsor-tier.tier-platinium .tier-title span {
  background-color: rgba(127, 140, 141, 0.1);
}
.sponsors-section .sponsor-tier.tier-gold .tier-title {
  color: #F1C40F;
}
.sponsors-section .sponsor-tier.tier-gold .tier-title span {
  background-color: rgba(241, 196, 15, 0.1);
}
.sponsors-section .sponsor-tier.tier-bronze .tier-title {
  color: #A67F90;
}
.sponsors-section .sponsor-tier.tier-bronze .tier-title span {
  background-color: rgba(166, 127, 144, 0.1);
}
.sponsors-section .sponsor-tier .tier-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.sponsors-section .sponsor-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  max-width: 240px;
  box-shadow: 4px 4px 0px rgba(166, 127, 144, 0.1);
  border: 1px solid rgba(112, 25, 61, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sponsors-section .sponsor-card:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px rgba(166, 127, 144, 0.15);
}
.sponsors-section .sponsor-card img {
  max-width: 100%;
  max-height: 80px;
  height: auto;
  object-fit: contain;
}
.sponsors-section .sponsor-card .sponsor-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #70193D;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.sponsors-section .sponsor-card .sponsor-domain {
  font-size: 0.85rem;
  color: #a67f90;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: center;
}
.sponsors-section .section-actions {
  display: flex;
  justify-content: center;
}

.partners-section {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  text-align: center;
}
.partners-section .partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}
.partners-section .partner-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  max-width: 220px;
  border: 1px solid rgba(112, 25, 61, 0.05);
  box-shadow: 4px 4px 0px rgba(166, 127, 144, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partners-section .partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px rgba(166, 127, 144, 0.15);
}
.partners-section .partner-card img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}
.partners-section .partners-description {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-style: italic;
  color: rgba(166, 127, 144, 0.8);
  font-size: 1rem;
  margin: 0;
}

.contact-section {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}
.contact-section .contact-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 5rem 3rem;
  width: 100%;
  max-width: 1000px;
  border: 1px solid rgba(112, 25, 61, 0.05);
  box-shadow: 0 4px 20px rgba(166, 127, 144, 0.1);
  text-align: center;
}
.contact-section .contact-card .section-header {
  margin-bottom: 4rem;
}
.contact-section .contact-card .section-header .section-description {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.15rem;
  color: #a67f90;
  margin-top: 1.5rem;
  line-height: 1.6;
}
.contact-section .contact-footer {
  display: flex;
  justify-content: center;
  align-items: end;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .contact-section .contact-footer {
    align-items: center;
    flex-direction: column;
    gap: 3rem;
  }
}
.contact-section .contact-action {
  display: flex;
  justify-content: center;
}
.contact-section .contact-action .cta-button {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.contact-section .social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-section .social-section .sur-title {
  display: block;
  font-size: 0.85rem;
  color: #a67f90;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.contact-section .social-section .social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.contact-section .social-section .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(166, 127, 144, 0.3);
  color: #a67f90;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.contact-section .social-section .social-links a svg {
  width: 20px;
  height: 20px;
}
.contact-section .social-section .social-links a:hover {
  color: #70193D;
  border-color: #70193D;
  background-color: rgba(112, 25, 61, 0.05);
}

.site-footer {
  background-color: #70193D;
  color: #ffffff;
  margin-top: 4rem;
  padding: 4rem 4rem 2rem;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.site-footer .footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}
.site-footer .brand-col .footer-logo {
  display: block;
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.site-footer .brand-col .footer-logo .logo-img {
  height: 80px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .site-footer .brand-col .footer-logo .logo-img {
    margin: 0 auto;
  }
}
.site-footer .footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.site-footer ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.site-footer .social-links-footer {
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 600px) {
  .site-footer .social-links-footer {
    justify-content: center;
  }
}
.site-footer .social-links-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.site-footer .social-links-footer a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
  text-decoration: none;
}
.site-footer .social-links-footer a svg {
  width: 20px;
  height: 20px;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

.about-hero {
  position: relative;
  background-color: #F8F6EF;
  min-height: calc(100vh - 103px);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.about-hero .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  animation: fadeIn 0.8s ease-out;
}
.about-hero .sur-title {
  color: rgba(112, 25, 61, 0.6);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.about-hero .about-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: #70193D;
  line-height: 0.85;
  margin: 0 0 3rem 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.about-hero .about-title .title-highlight {
  color: #a67f90;
}
.about-hero .about-description {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.15rem;
  color: #a67f90;
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.6;
}
.about-hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  color: rgba(166, 127, 144, 0.5);
  width: 36px;
  height: 36px;
  animation: bounceArrow 2s infinite ease-in-out;
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .about-hero .scroll-indicator {
    animation: none;
  }
}
.about-hero .scroll-indicator svg {
  width: 100%;
  height: 100%;
}

.edition-hero {
  position: relative;
  background-color: #F8F6EF;
  min-height: calc(100vh - 103px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.edition-hero .edition-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  animation: fadeIn 0.8s ease-out;
}
.edition-hero .sur-title {
  color: rgba(112, 25, 61, 0.6);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.edition-hero .edition-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: #70193D;
  line-height: 0.85;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.edition-hero .edition-title .edition-year {
  color: #a67f90;
}
.edition-hero .edition-description {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.1rem;
  color: #a67f90;
  margin-bottom: 2rem;
  max-width: 600px;
}
.edition-hero .edition-info {
  font-size: 0.9rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #a67f90;
  font-weight: 500;
}
.edition-hero .edition-info p {
  margin: 0.5rem 0;
}
.edition-hero .edition-info .info-date {
  font-weight: 700;
  color: #70193D;
  text-transform: uppercase;
}
.edition-hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  color: rgba(166, 127, 144, 0.5);
  width: 36px;
  height: 36px;
  animation: bounceArrow 2s infinite ease-in-out;
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .edition-hero .scroll-indicator {
    animation: none;
  }
}
.edition-hero .scroll-indicator svg {
  width: 100%;
  height: 100%;
}

.edition-stats {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
}
.edition-stats .stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 3rem;
}
.edition-stats .stat-item {
  text-align: center;
}
.edition-stats .stat-number {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  color: #70193D;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.edition-stats .stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #a67f90;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.edition-quote {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  text-align: center;
}
.edition-quote .quote-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.edition-quote .quote-icon {
  margin-bottom: 1rem;
  color: #a67f90;
}
.edition-quote .quote-text {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #70193D;
  font-style: italic;
  line-height: 1.3;
  margin: 0 0 2rem 0;
}
.edition-quote .quote-author {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  color: #a67f90;
  font-style: normal;
}

.team-section {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  text-align: center;
}
.team-section .team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.team-section .team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50% - 1.5rem);
}
@media (min-width: 768px) {
  .team-section .team-member {
    width: calc(20% - 2.4rem);
  }
  .team-section .team-member:first-of-type:nth-last-of-type(1) {
    width: 100%;
  }
  .team-section .team-member:first-of-type:nth-last-of-type(2), .team-section .team-member:first-of-type:nth-last-of-type(2) ~ .team-member {
    width: calc(50% - 1.5rem);
  }
  .team-section .team-member:first-of-type:nth-last-of-type(3), .team-section .team-member:first-of-type:nth-last-of-type(3) ~ .team-member, .team-section .team-member:first-of-type:nth-last-of-type(6), .team-section .team-member:first-of-type:nth-last-of-type(6) ~ .team-member {
    width: calc(33.333% - 2rem);
  }
  .team-section .team-member:first-of-type:nth-last-of-type(4), .team-section .team-member:first-of-type:nth-last-of-type(4) ~ .team-member, .team-section .team-member:first-of-type:nth-last-of-type(7), .team-section .team-member:first-of-type:nth-last-of-type(7) ~ .team-member, .team-section .team-member:first-of-type:nth-last-of-type(8), .team-section .team-member:first-of-type:nth-last-of-type(8) ~ .team-member {
    width: calc(25% - 2.25rem);
  }
}
.team-section .member-photo-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #70193D;
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-section .member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-section .member-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #70193D;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.team-section .member-role {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.85rem;
  color: #a67f90;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

.values-section {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  text-align: center;
}
.values-section .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.values-section .value-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: left;
  border: 1px solid rgba(112, 25, 61, 0.05);
  box-shadow: 6px 6px 0px rgba(166, 127, 144, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.values-section .value-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px rgba(166, 127, 144, 0.25);
}
.values-section .value-card .value-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.values-section .value-card .value-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #70193D;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  line-height: 1.1;
}
.values-section .value-card .value-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  color: #a67f90;
  line-height: 1.6;
  margin: 0;
}

.legal-page {
  background-color: #F8F6EF;
}
.legal-page .legal-hero {
  padding: 5rem 2rem 2rem;
  text-align: center;
  margin-bottom: 0;
}
.legal-page .legal-hero-content {
  max-width: 900px;
  margin: 0 auto;
}
.legal-page .legal-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  margin: 0;
  color: #70193D;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.legal-page .legal-intro {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: #a67f90;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
}
.legal-page .legal-toc {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.legal-page .legal-toc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(112, 25, 61, 0.15);
  color: #70193D;
  background-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.legal-page .legal-toc a:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}
.legal-page .legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  gap: 1.5rem;
}
.legal-page .legal-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(112, 25, 61, 0.05);
  box-shadow: 8px 8px 0px rgba(166, 127, 144, 0.15);
}
.legal-page .legal-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #70193D;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legal-page .legal-card-text,
.legal-page .legal-note,
.legal-page .legal-list,
.legal-page .legal-list dt,
.legal-page .legal-list dd {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.legal-page .legal-card-text,
.legal-page .legal-note {
  color: #a67f90;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}
.legal-page .legal-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(112, 25, 61, 0.08);
}
.legal-page .legal-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}
.legal-page .legal-list-item {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(112, 25, 61, 0.08);
  align-items: center;
}
.legal-page .legal-list-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.legal-page .legal-term {
  color: #70193D;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
}
.legal-page .legal-definition {
  margin: 0;
  color: #a67f90;
  line-height: 1.7;
}
.legal-page .legal-link {
  color: #70193D;
  font-weight: 700;
  text-decoration: none;
}
.legal-page .legal-link:hover {
  text-decoration: underline;
}
.legal-page .legal-actions {
  display: flex;
  justify-content: center;
  padding: 0 2rem 5rem;
}
@media (max-width: 768px) {
  .legal-page .legal-hero {
    padding-top: 3rem;
  }
  .legal-page .legal-content {
    padding-top: 2rem;
  }
  .legal-page .legal-card {
    padding: 1.5rem;
  }
  .legal-page .legal-list-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

.access-section {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  text-align: center;
}
.access-section .access-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.access-section .access-main-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2.5rem;
  text-align: left;
  border: 1px solid rgba(112, 25, 61, 0.05);
  box-shadow: 4px 4px 15px rgba(112, 25, 61, 0.03), 8px 8px 0px rgba(112, 25, 61, 0.04);
}
.access-section .access-main-card .location-header {
  margin-bottom: 2rem;
}
.access-section .access-main-card .location-header .location-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #70193D;
  margin-bottom: 0.75rem;
}
.access-section .access-main-card .location-header .location-title-wrap svg {
  width: 24px;
  height: 24px;
}
.access-section .access-main-card .location-header .location-title-wrap .location-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.access-section .access-main-card .location-header .location-address {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(112, 25, 61, 0.6);
  margin: 0 0 0.5rem 0;
}
.access-section .access-main-card .location-header .location-desc {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  color: rgba(112, 25, 61, 0.4);
  margin: 0;
}
.access-section .access-main-card .location-map-placeholder {
  background-color: #F8F6EF;
  border-radius: 6px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(112, 25, 61, 0.05);
}
.access-section .access-main-card .location-map-placeholder p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.85rem;
  color: rgba(112, 25, 61, 0.5);
  margin: 0;
}
.access-section .access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.access-section .access-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: left;
  border: 1px solid rgba(112, 25, 61, 0.05);
  box-shadow: 4px 4px 15px rgba(112, 25, 61, 0.03), 6px 6px 0px rgba(112, 25, 61, 0.04);
}
.access-section .access-card .access-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(112, 25, 61, 0.05);
  color: #70193D;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.access-section .access-card .access-icon svg {
  width: 24px;
  height: 24px;
}
.access-section .access-card .access-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #70193D;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.access-section .access-card .access-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  color: rgba(166, 127, 144, 0.8);
  line-height: 1.6;
  margin: 0;
}
.access-section .access-card .access-link {
  margin-top: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #70193D;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(112, 25, 61, 0.2);
  transition: text-decoration-color all 0.2s ease;
}
.access-section .access-card .access-link:hover {
  text-decoration-color: #70193D;
}

.program-section {
  background-color: #F8F6EF;
  padding: 4rem 2rem;
  text-align: center;
}
.program-section .section-description {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(112, 25, 61, 0.6);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.program-section .program-grid {
  display: grid;
  grid-template-columns: 100px repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 0.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}
@media (max-width: 900px) {
  .program-section .program-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.program-section .time-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(112, 25, 61, 0.05);
  color: #70193D;
  font-weight: 800;
  border-radius: 6px;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .program-section .time-slot {
    position: sticky;
    top: 87px;
    z-index: 10;
    padding: 0.75rem 0.5rem;
    margin: 0;
    background-color: #F8F6EF;
    text-align: left;
    justify-content: flex-start;
    border-bottom: 2px solid rgba(112, 25, 61, 0.1);
    border-radius: 0;
  }
}
.program-section .session-card {
  background-color: #70193D;
  color: #ffffff;
  border-radius: 6px;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.program-section .session-card:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 15px rgba(112, 25, 61, 0.2);
}
.program-section .session-card.is-empty {
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px dashed rgba(112, 25, 61, 0.1);
  color: transparent;
  cursor: default;
}
.program-section .session-card.is-empty:hover {
  transform: none;
  box-shadow: none;
}
.program-section .session-card.session-pause {
  background-color: #8C8C8C; /* Gris des pauses */
}
.program-section .session-card.session-full-width {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.program-section .session-card.session-full-width .session-footer {
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.program-section .session-card .session-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}
.program-section .session-card .session-speaker {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}
.program-section .session-card .session-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.program-section .session-card .session-footer .session-format {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.program-section .session-card .session-footer .session-room {
  background-color: #ffffff;
  color: #70193D;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay .modal-content {
  background-color: #ffffff;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 12px;
  padding: 3rem;
  position: relative;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .modal-overlay .modal-content {
    padding: 2rem 1.5rem;
    width: 95%;
  }
}
.modal-overlay.is-active .modal-content {
  transform: translateY(0);
}
.modal-overlay .modal-close {
  position: absolute;
  top: 2.5rem;
  right: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(166, 127, 144, 0.2);
  color: rgba(166, 127, 144, 0.7);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (min-width: 768px) {
  .modal-overlay .modal-close {
    right: 2.5rem;
  }
}
.modal-overlay .modal-close:hover {
  border-color: #70193D;
  color: #70193D;
  transform: scale(1.05);
}
.modal-overlay .modal-header {
  border-bottom: 1px solid rgba(112, 25, 61, 0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  padding-right: 3rem; /* Space for close button */
}
.modal-overlay .modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #70193D;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}
.modal-overlay .modal-header .modal-meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  color: rgba(166, 127, 144, 0.8);
}
.modal-overlay .modal-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.modal-overlay .modal-badges .badge-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.modal-overlay .modal-badges .badge-group .badge {
  background-color: rgba(112, 25, 61, 0.05);
  color: #70193D;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}
.modal-overlay .modal-badges .badge-group .info-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  color: rgba(166, 127, 144, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-overlay .modal-badges .badge-group .info-text svg {
  width: 16px;
  height: 16px;
}
.modal-overlay .modal-badges .track-badge {
  background-color: rgba(166, 127, 144, 0.1);
  color: #A67F90;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}
.modal-overlay .speaker-profile {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.modal-overlay .speaker-profile .speaker-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #70193D;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}
.modal-overlay .speaker-profile .speaker-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.modal-overlay .speaker-profile .speaker-info {
  flex-grow: 1;
  min-width: 200px;
}
.modal-overlay .speaker-profile .speaker-info .name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #70193D;
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
}
.modal-overlay .speaker-profile .speaker-info .job {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  color: rgba(166, 127, 144, 0.8);
  margin: 0;
}
.modal-overlay .speaker-profile .speaker-links {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
.modal-overlay .speaker-profile .speaker-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(166, 127, 144, 0.2);
  color: rgba(166, 127, 144, 0.7);
  transition: all 0.2s ease;
}
.modal-overlay .speaker-profile .speaker-links a:hover {
  border-color: #70193D;
  color: #70193D;
  background-color: rgba(112, 25, 61, 0.05);
}
.modal-overlay .speaker-profile .speaker-links a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.modal-overlay .modal-body {
  position: relative;
}
.modal-overlay .modal-body .session-title-large {
  font-size: 1.3rem;
  font-weight: 800;
  color: #70193D;
  text-transform: uppercase;
  margin: 0 0 1.5rem 0;
}
.modal-overlay .modal-body .session-desc {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: rgba(166, 127, 144, 0.9);
  line-height: 1.7;
  margin: 0;
}
.modal-overlay .modal-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  pointer-events: auto;
}
.modal-overlay .modal-nav .nav-btn {
  background-color: rgba(166, 127, 144, 0.05);
  border: 1px solid rgba(166, 127, 144, 0.2);
  color: #70193D;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-overlay .modal-nav .nav-btn:hover {
  background-color: rgba(112, 25, 61, 0.05);
  color: #70193D;
  border-color: rgba(112, 25, 61, 0.3);
}
.modal-overlay .modal-nav .nav-btn[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}
.modal-overlay .modal-nav .nav-btn[disabled]:hover {
  background-color: rgba(166, 127, 144, 0.05);
  color: #70193D;
  border-color: rgba(166, 127, 144, 0.2);
}
.modal-overlay .modal-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.modal-overlay .modal-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: rgba(166, 127, 144, 0.3);
  transition: all 0.2s ease;
}
.modal-overlay .modal-dots .dot.is-active {
  background-color: #70193D;
  width: 24px;
}

.leaflet-container,
.leaflet-pane,
.leaflet-top,
.leaflet-bottom {
  z-index: 99 !important;
}

.links-page {
  background-color: var(--bgcolor, #F5F3EC);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  text-align: center;
}

.links-header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.links-header h1 {
  color: var(--primary-color, #70193D);
  font-size: 1.8rem;
  margin: 0.5rem 0 0.2rem;
  text-transform: uppercase;
}
.links-header p {
  color: var(--text-color, #a67f90);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.social-links a, .social-links button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  color: var(--primary-color, #70193D);
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, background-color 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  padding: 0;
}
.social-links a:hover, .social-links button:hover {
  transform: scale(1.1);
}
.social-links a svg, .social-links button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
}

.link-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.link-icon {
  width: 48px;
  height: 48px;
  background-color: var(--bgcolor, #F5F3EC);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.link-content {
  flex-grow: 1;
  text-align: left;
}
.link-content h2 {
  color: var(--primary-color, #70193D);
  font-size: 1.1rem;
  margin: 0 0 0.2rem 0;
  text-transform: uppercase;
}
.link-content p {
  color: var(--text-color, #a67f90);
  margin: 0;
  font-size: 0.9rem;
}

.link-action {
  color: var(--text-color, #a67f90);
  opacity: 0.5;
}
.link-action svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.links-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-color, #a67f90);
  font-size: 0.8rem;
  width: 100%;
  max-width: 500px;
}

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