﻿@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}

p {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
}

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

img, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

iframe {
  border: none;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid currentColor;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #3b3b97;
  background-color: #3b3b97;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffa5c2;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 1.25rem;
  }
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

h5, h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

p {
  margin-bottom: 1rem;
  color: #ffffff;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #ffa5c2;
  transition: all 0.25s ease;
}
a:hover {
  color: #ff7aaa;
}

strong {
  font-weight: 700;
}

.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5, .section--dark h6, .section--dark p {
  color: #ffffff;
}

.section--light h1, .section--light h2, .section--light h3, .section--light h4 {
  color: #21104a;
}
.section--light p {
  color: #21104a;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

#page-container {
  padding-top: 70px;
}

#main-content {
  min-height: calc(100vh - 70px - 200px);
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.section--dark {
  background-color: #21104a;
}

.section--light {
  background-color: #ffffff;
}

.section--body {
  background-color: #3b3b97;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.col {
  flex: 1;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.col-1-2 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 768px) {
  .col-1-2 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

.col-1-3 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 768px) {
  .col-1-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

.col-full {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  background-color: #ffa5c2;
  color: #21104a;
  border: 2px solid #ffa5c2;
}
.btn--primary:hover {
  background-color: transparent;
  color: #ffa5c2;
}

.btn--outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  background-color: transparent;
  color: #ffa5c2;
  border: 2px solid #ffa5c2;
}
.btn--outline:hover {
  background-color: #ffa5c2;
  color: #21104a;
}

.btn--dark {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  background-color: #21104a;
  color: #ffffff;
  border: 2px solid #21104a;
}
.btn--dark:hover {
  background-color: #ffa5c2;
  border-color: #ffa5c2;
  color: #21104a;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 70px;
  transition: height 0.3s ease, box-shadow 0.3s ease;
}
#main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#main-header.scrolled {
  height: 50px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.logo_container {
  flex-shrink: 0;
}
.logo_container a {
  display: block;
}
.logo_container #logo {
  height: 40px;
  width: auto;
  transition: height 0.3s ease;
}

#main-header.scrolled #logo {
  height: 28px;
}

#et-top-navigation {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  align-self: stretch;
}

#top-menu-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
}

ul#top-menu,
ul.nav {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  list-style: none;
}
@media (max-width: 980px) {
  ul#top-menu,
  ul.nav {
    display: none;
  }
}

.menu-item {
  position: relative;
  align-self: stretch;
}
.menu-item > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #21104a;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.menu-item > a:hover {
  color: #ffa5c2;
}
.menu-item.current-menu-item > a, .menu-item.current-menu-ancestor > a {
  color: #ffa5c2;
}

.menu-item-has-children > a::after {
  content: " ▾";
  font-size: 0.7em;
  opacity: 0.7;
}
.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #ffffff;
  border-top: 3px solid #21104a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  list-style: none;
}
.menu-item-has-children .sub-menu li {
  border-bottom: 1px solid rgba(33, 16, 74, 0.15);
}
.menu-item-has-children .sub-menu li:last-child {
  border-bottom: none;
}
.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #21104a;
  transition: all 0.25s ease;
}
.menu-item-has-children .sub-menu li a:hover {
  background-color: rgba(255, 165, 194, 0.15);
  color: #ffa5c2;
}
.menu-item-has-children:hover > .sub-menu {
  display: block;
}
.menu-item-has-children > .sub-menu.sub-menu--flip {
  left: auto;
  right: 0;
}

#et_mobile_nav_menu {
  display: none;
}
@media (max-width: 980px) {
  #et_mobile_nav_menu {
    display: flex;
    align-items: center;
  }
}

.mobile-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mobile-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #21104a;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.2s ease;
}
.mobile-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.mobile-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile_nav .et_mobile_menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #21104a;
  padding: 1rem 0;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: top 0.3s ease;
}
.mobile_nav .et_mobile_menu.nav-open {
  display: block;
}
.mobile_nav .et_mobile_menu > li > a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
}
.mobile_nav .et_mobile_menu > li > a:hover {
  color: #ffa5c2;
  background-color: rgba(255, 165, 194, 0.1);
}
.mobile_nav .et_mobile_menu .menu-item-has-children > a::after {
  transition: transform 0.25s ease;
  display: inline-block;
}
.mobile_nav .et_mobile_menu .menu-item-has-children.is-expanded > a::after {
  transform: rotate(-180deg);
}
.mobile_nav .et_mobile_menu .sub-menu {
  position: static;
  top: auto;
  left: auto;
  min-width: 0;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: none;
  border-top: none;
  list-style: none;
  padding-left: 2rem;
  display: none;
}
.mobile_nav .et_mobile_menu .sub-menu.open {
  display: block;
}
.mobile_nav .et_mobile_menu .sub-menu li a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
}
.mobile_nav .et_mobile_menu .sub-menu li a:hover {
  color: #ffa5c2;
  background-color: rgba(255, 165, 194, 0.1);
}

#main-header.scrolled .et_mobile_menu {
  top: 50px;
}

#main-footer {
  background-color: #222222;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
#main-footer .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  #main-footer .container {
    flex-direction: column;
    text-align: center;
  }
}

.footer__logo img {
  height: 40px;
  width: auto;
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer__right {
    align-items: center;
  }
}

.footer__links {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  list-style: none;
}
@media (max-width: 480px) {
  .footer__links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}
.footer__links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease;
}
.footer__links a:hover {
  color: #ffa5c2;
}

.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  transition: all 0.25s ease;
}
.footer__social a:hover {
  color: #ffa5c2;
}

.hero-section {
  position: relative;
  min-height: 80vh;
  background-color: #21104a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(33, 16, 74, 0.55);
  z-index: 1;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-stripes.svg");
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  transform: scale(-1, -1);
  background-size: cover;
}
.hero-section .container {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
  text-align: center;
}

.hero__logo {
  max-width: 600px;
  width: 100%;
  margin: 0 auto 3rem;
}
.hero__logo img {
  width: 100%;
  height: auto;
}

.hero__content {
  max-width: 700px;
  margin: 0 auto;
}

.hero__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffa5c2;
  margin-bottom: 0.5rem;
}

.hero__title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
}

.hero__location {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.hero__tagline {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.hero__cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  background-color: #ffa5c2;
  color: #21104a;
  border: 2px solid #ffa5c2;
  padding: 1rem 2.5rem;
}
.hero__cta:hover {
  background-color: transparent;
  color: #ffa5c2;
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.page-hero {
  background-color: #21104a;
  padding: 6rem 0 4rem;
  text-align: center;
}
.page-hero .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.page-hero h1 {
  font-size: 2.5rem;
  color: #ffa5c2;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin: 0 auto;
}

.carousel-section {
  background-color: #21104a;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.carousel {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}

.carousel__slides {
  position: relative;
  height: 380px;
}
@media (max-width: 480px) {
  .carousel__slides {
    height: 460px;
  }
}

.carousel__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
@media (max-width: 768px) {
  .carousel__slide {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.carousel__slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel__slide.active .carousel__image-wrapper {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.carousel__slide.active .carousel__description {
  opacity: 1;
  transform: translateX(0);
}

.carousel__image-wrapper {
  flex: 0 0 50%;
  width: 50%;
  height: 360px;
  border: 3px solid #ffa5c2;
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(255, 165, 194, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateX(-28px) scale(0.97);
  transition: opacity 0.55s ease 0.1s, transform 0.55s ease 0.1s;
}
@media (max-width: 980px) {
  .carousel__image-wrapper {
    flex: 0 0 auto;
    width: 360px;
    height: 260px;
  }
}
@media (max-width: 768px) {
  .carousel__image-wrapper {
    width: 100%;
    height: 220px;
  }
}

.carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel__description {
  flex: 1;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.55s ease 0.25s, transform 0.55s ease 0.25s;
}
.carousel__description h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.carousel__description p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 0;
}

.carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.carousel__controls {
  display: flex;
}

.carousel__prev,
.carousel__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 165, 194, 0.1);
  border: 1px solid #ffa5c2;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 4px;
}
.carousel__prev:hover,
.carousel__next:hover {
  background-color: #ffa5c2;
  color: #21104a;
}

.carousel__prev {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.carousel__next {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  margin-left: -1px;
}

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

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.carousel__dot.active, .carousel__dot:hover {
  background-color: #ffa5c2;
}

.tickets-section {
  background-color: #21104a;
  background-image: url("../images/bg_wide_small@2x-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .tickets-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .tickets-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.tickets-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.tickets-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.tickets-section__header h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.tickets-section__header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
}

.tickets-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .tickets-grid {
    flex-direction: column;
    align-items: center;
  }
}

.ticket-card {
  background-color: #21104a;
  border: 1px solid transparent;
  /*border-radius: v.$border-radius-md;*/
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  padding: 3rem;
  flex: 1;
  max-width: 470px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.ticket-card:hover {
  border-color: #ffa5c2;
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.ticket-card__name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.ticket-card__early-bird {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffa5c2;
  margin-bottom: 1rem;
}

.ticket-card__price-original {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
  font-style: italic;
}

.ticket-card__price-current {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.ticket-card__price-current .price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.ticket-card__price-current .discount {
  font-size: 0.875rem;
  font-style: italic;
  color: #ffa5c2;
  margin-bottom: 0.25rem;
}

.ticket-card__price-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin-bottom: 2rem;
}

.ticket-card__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
}

.ticket-card__features {
  flex: 1;
  margin-bottom: 2rem;
}
.ticket-card__features p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.25rem;
}
.ticket-card__features p::before {
  content: "ο  ";
}
.ticket-card__features p.ticket-card__features-label {
  color: #ffffff;
  font-weight: 600;
  margin-top: 1rem;
}
.ticket-card__features p.ticket-card__features-label::before {
  content: "";
}
.ticket-card__features p strong {
  color: #ffa5c2;
}

.ticket-card__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin-bottom: 1rem;
}

.ticket-card__faq {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}
.ticket-card__faq a {
  color: #ffa5c2;
}
.ticket-card__faq a:hover {
  color: #ff7aaa;
}

.ticket-card__buy {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  background-color: #ffa5c2;
  color: #21104a;
  border: 2px solid #ffa5c2;
  display: block;
  padding: 1rem 2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.ticket-card__buy:hover {
  background-color: transparent;
  color: #ffa5c2;
}
.ticket-card__buy:hover {
  background-color: #ff7aaa;
  border-color: #ff7aaa;
  color: #21104a;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.sponsors-section {
  background-color: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .sponsors-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .sponsors-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.sponsors-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.sponsors-section__group {
  margin-bottom: 8rem;
}
.sponsors-section__group:last-child {
  margin-bottom: 0;
}

.sponsors-section__group-heading {
  text-align: center;
  font-family: Rubik, "Open Sans", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #21104a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.sponsors-section__group-heading--partner {
  color: #21104a;
}
.sponsors-section__group-heading--sponsor {
  color: #3b3b97;
}
.sponsors-section__group-heading--supporter {
  font-size: 2rem;
  color: #ffa5c2;
}

.sponsors-grid {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.sponsors-grid--partner .sponsor-item img {
  max-height: 180px;
  max-width: 300px;
}
.sponsors-grid--sponsor .sponsor-item img {
  max-height: 165px;
  max-width: 275px;
}
.sponsors-grid--supporter .sponsor-item img {
  max-height: 150px;
  max-width: 250px;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  opacity: 0.7;
}
.sponsor-item:hover {
  opacity: 1;
  transform: translateY(-3px);
}
.sponsor-item img {
  max-height: 150px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  /*filter: grayscale(100%);*/
  transition: all 0.25s ease;
}
.sponsor-item:hover img {
  /*filter: grayscale(0%);*/
}

.contact-section {
  background-color: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .contact-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.contact-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 700px;
}

.contact-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-section__header h2 {
  font-size: 2rem;
  color: #21104a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form__row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 480px) {
  .contact-form__row {
    flex-direction: column;
  }
}
.contact-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact-form__field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #21104a;
}
.contact-form__field input,
.contact-form__field textarea {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(33, 16, 74, 0.15);
  border-radius: 4px;
  font-size: 1rem;
  color: #21104a;
  background-color: #f9f9f9;
  transition: all 0.25s ease;
  width: 100%;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: #21104a;
  background-color: #ffffff;
  outline: none;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #aaa;
}
.contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form__captcha {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-form__captcha label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #21104a;
  white-space: nowrap;
}
.contact-form__captcha input {
  width: 80px;
  padding: 0.5rem 0.75rem;
  border: 2px solid rgba(33, 16, 74, 0.15);
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form__submit {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  background-color: #21104a;
  color: #ffffff;
  border: 2px solid #21104a;
  align-self: flex-start;
}
.contact-form__submit:hover {
  background-color: #ffa5c2;
  border-color: #ffa5c2;
  color: #21104a;
}
.contact-form__recaptcha-notice {
  font-size: 0.75rem;
  color: #21104a;
  opacity: 0.55;
}
.contact-form__recaptcha-notice a {
  color: inherit;
  text-decoration: underline;
}
.contact-form__recaptcha-notice a:hover {
  opacity: 1;
}

.grecaptcha-badge {
  visibility: hidden;
}

.team-section {
  background-color: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .team-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .team-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.team-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.team-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.team-section__header h2 {
  font-size: 2rem;
  color: #21104a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team-member__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffa5c2;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}
.team-member__photo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.team-member__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #21104a;
  margin-bottom: 0.25rem;
}
.team-member__role {
  font-size: 0.875rem;
  color: #21104a;
  margin-bottom: 0.25rem;
}
.team-member__email {
  font-size: 0.75rem;
  color: #3b3b97;
  text-decoration: none;
  transition: all 0.25s ease;
}
.team-member__email:hover {
  color: #ffa5c2;
}

.tracks-section {
  background-color: #21104a;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .tracks-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .tracks-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.tracks-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.tracks-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.tracks-section__header h2 {
  font-size: 2rem;
  color: #ffffff;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 980px) {
  .tracks-grid {
    grid-template-columns: 1fr;
  }
}

.track-item {
  display: flex;
  flex-direction: column;
}
.track-item__image {
  width: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
  transition: all 0.25s ease;
}
.track-item__image:hover {
  opacity: 0.85;
}
.track-item__image-link {
  display: block;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.track-item__content {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.track-item__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: left;
}
.track-item__description {
  flex: 1;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}
.track-item__description p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}
.track-item__description a {
  color: #ffa5c2;
}
.track-item__description a:hover {
  color: #ff7aaa;
}
.track-item__cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  background-color: #ffa5c2;
  color: #21104a;
  border: 2px solid #ffa5c2;
  align-self: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.track-item__cta:hover {
  background-color: transparent;
  color: #ffa5c2;
}

.about-section {
  background-color: #21104a;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .about-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .about-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.about-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.about-section .about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 980px) {
  .about-section .about__row {
    grid-template-columns: 1fr;
  }
}
.about-section .about__text h1 {
  font-size: 2rem;
  color: #ffa5c2;
  margin-bottom: 2rem;
}
.about-section .about__text p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}
.about-section .about__cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  background-color: #ffa5c2;
  color: #21104a;
  border: 2px solid #ffa5c2;
  margin-top: 1.5rem;
}
.about-section .about__cta:hover {
  background-color: transparent;
  color: #ffa5c2;
}
.about-section .about__video .video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background-color: #000;
  border: 3px solid #ffa5c2;
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(255, 165, 194, 0.25);
  overflow: hidden;
  overflow: hidden;
}
.about-section .about__video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.card:hover {
  border-color: #ffa5c2;
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card__body {
  padding: 2rem;
}
.card__year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffa5c2;
  margin-bottom: 0.5rem;
}
.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.card__subtitle {
  font-size: 0.875rem;
  color: #ffa5c2;
  margin-bottom: 1rem;
}
.card__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.info-block {
  max-width: 800px;
  margin: 0 auto;
}
.info-block h2 {
  font-size: 1.5rem;
  color: #ffa5c2;
  margin-bottom: 1.5rem;
}
.info-block h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.info-block p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}
.info-block ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.info-block ul li {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.25rem;
}
.info-block a {
  color: #ffa5c2;
}
.info-block a:hover {
  color: #ff7aaa;
}

.speakers-section {
  background-color: #21104a;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .speakers-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .speakers-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.speakers-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.speakers-section__title {
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 4rem;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
@media (max-width: 980px) {
  .speakers-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .speakers-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
  }
}

.speaker-card {
  background-color: rgba(255, 255, 255, 0.04);
  /*border: 1px solid v.$color-border;*/
  border-top-right-radius: 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.speaker-card:hover, .speaker-card:focus-visible {
  border-color: #ffa5c2;
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  outline: none;
}
.speaker-card__photo-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #3b3b97;
}
.speaker-card__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.speaker-card:hover .speaker-card__photo-wrap img {
  transform: scale(1.05);
}
.speaker-card__info {
  padding: 1rem;
}
.speaker-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}
.speaker-card__jobtitle {
  font-size: 0.75rem;
  color: #ffffff;
  background-color: rgba(255, 165, 194, 0.15);
  padding: 0.25rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 165, 194, 0.3);
  display: inline-block;
}
.speaker-card__pronouns {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.25rem;
  font-style: italic;
}
.speaker-card__talk {
  font-size: 1rem;
  color: #ffa5c2;
  font-style: italic;
  line-height: 1.4;
  margin-top: 25px;
}

.speaker-drawer {
  position: fixed;
  top: 10px;
  right: 0;
  bottom: 10px;
  border-radius: 16px;
  width: 600px;
  max-width: 100%;
  background-color: #3b3b97;
  border-left: 1px solid rgba(255, 165, 194, 0.3);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
@media (max-width: 980px) {
  .speaker-drawer {
    width: 500px;
    border-left: none;
  }
}
@media (max-width: 768px) {
  .speaker-drawer {
    width: 460px;
    border-left: none;
  }
}
@media (max-width: 480px) {
  .speaker-drawer {
    width: calc(100% - 20px);
    border-left: none;
  }
  .speaker-drawer.is-open {
    left: 10px;
  }
}
.speaker-drawer.is-open {
  transform: translateX(0);
  right: 10px;
}
.speaker-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 165, 194, 0.15);
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 1;
}
.speaker-drawer__close:hover {
  background-color: #ffa5c2;
  color: #21104a;
}
.speaker-drawer__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.speaker-drawer__content[hidden] {
  display: none;
}
.speaker-drawer__header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 3rem;
  padding-top: 2rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .speaker-drawer__header {
    padding: 1.5rem;
    padding-bottom: 0.5rem;
  }
}
.speaker-drawer__photo {
  width: 120px;
  height: 140px;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #ffa5c2;
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(255, 165, 194, 0.25);
  overflow: hidden;
}
@media (max-width: 768px) {
  .speaker-drawer__photo {
    margin-bottom: 25px;
    height: 120px;
  }
}
.speaker-drawer__meta {
  flex: 1;
  min-width: 0;
}
.speaker-drawer__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.speaker-drawer__pronouns {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin-bottom: 0.25rem;
}
.speaker-drawer__jobtitle {
  font-size: 0.75rem;
  color: #ffffff;
  background-color: rgba(255, 165, 194, 0.15);
  padding: 0.25rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 165, 194, 0.3);
  display: inline-block;
}
.speaker-drawer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.speaker-drawer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 165, 194, 0.1);
  border: 1px solid rgba(255, 165, 194, 0.3);
  color: #ffffff;
  font-size: 0.875rem;
  transition: all 0.25s ease;
  text-decoration: none;
}
.speaker-drawer__social-link:hover {
  background-color: #ffa5c2;
  border-color: #ffa5c2;
  color: #21104a;
}
.speaker-drawer__bio-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 3rem;
}
@media (max-width: 768px) {
  .speaker-drawer__bio-wrap {
    padding: 1.5rem;
  }
}
.speaker-drawer__bio-title, .speaker-drawer__talk {
  font-size: 1.125rem;
  color: #ffa5c2;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .speaker-drawer__bio-title, .speaker-drawer__talk {
    font-size: 0.875rem;
  }
}
.speaker-drawer__talk-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-top: 0.5rem;
  white-space: pre-line;
}
.speaker-drawer__talk-text * {
  color: inherit;
}
.speaker-drawer__bio {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  white-space: pre-line;
}
.speaker-drawer__bio * {
  color: inherit;
}
.speaker-drawer__talk-banner {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.speaker-drawer__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 1.5rem 0;
}
.speaker-drawer__video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}
.speaker-drawer blockquote {
  border-left: 3px solid #ffa5c2;
  padding-left: 25px;
}

.hosts-section {
  background-color: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .hosts-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .hosts-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.hosts-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.hosts-section__title {
  font-size: 2rem;
  color: #21104a;
  text-align: center;
  margin-bottom: 4rem;
}
.hosts-section .speaker-card {
  background-color: rgba(33, 16, 74, 0.05);
}
.hosts-section .speaker-card__name {
  color: #21104a;
}
.hosts-section .speaker-card__pronouns {
  color: rgba(33, 16, 74, 0.55);
}
.hosts-section .speaker-card__jobtitle {
  color: #21104a;
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media (max-width: 980px) {
  .hosts-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hosts-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
}

.speaker-drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.speaker-drawer-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

body.drawer-open {
  overflow: hidden;
}

.games-filter-bar {
  background-color: #3b3b97;
  padding: 2rem 0;
}
.games-filter-bar .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.games-filter-bar #game-search {
  flex: 1;
  min-width: 240px;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.25s ease;
}
.games-filter-bar #game-search::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.games-filter-bar #game-search:focus {
  border-color: #ffa5c2;
  background-color: rgba(255, 255, 255, 0.12);
  outline: none;
}

.game-filter-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  padding: 0.5rem 1.25rem;
}
.game-filter-btn:hover, .game-filter-btn.active {
  background-color: #ffa5c2;
  border-color: #ffa5c2;
  color: #21104a;
}

.games-section {
  background-color: #21104a;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .games-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .games-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.games-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.games-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 2rem;
}
@media (max-width: 768px) {
  .games-masonry {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
@media (max-width: 480px) {
  .games-masonry {
    grid-template-columns: 1fr;
  }
}

.game-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.game-card:hover, .game-card:focus-visible {
  border-color: #ffa5c2;
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  outline: none;
}
.game-card__image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #3b3b97;
}
.game-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-card__image-wrap img {
  transform: scale(1.05);
}
.game-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.game-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.game-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__inner {
  position: relative;
  background-color: #21104a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  max-width: 800px;
  width: calc(100% - 2rem);
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
.lightbox.open .lightbox__inner {
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 165, 194, 0.15);
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.lightbox__close:hover {
  background-color: #ffa5c2;
  color: #21104a;
}
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 165, 194, 0.15);
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 1;
}
.lightbox__prev:hover, .lightbox__next:hover {
  background-color: #ffa5c2;
  color: #21104a;
}
.lightbox__prev {
  left: 1rem;
}
.lightbox__next {
  right: 1rem;
}
.lightbox__img {
  max-height: 60vh;
  width: auto;
  max-width: 100%;
  border-radius: 4px;
  object-fit: contain;
}
.lightbox__title, .lightbox__caption {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
.lightbox__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  max-width: 600px;
}

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(33, 16, 74, 0.9);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.schedule-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.schedule-tab {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 0;
  padding: 1rem 2rem;
}
.schedule-tab.active, .schedule-tab:hover {
  color: #ffa5c2;
  border-bottom-color: #ffa5c2;
}

.session-card {
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 4px solid #3b3b97;
  border-radius: 0 4px 4px 0;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.25s ease;
}
.session-card[data-track=A] {
  border-left-color: #3b3b97;
}
.session-card[data-track=B] {
  border-left-color: #ffa5c2;
}
.session-card:hover {
  border-left-color: #ffa5c2;
}
.session-card__time {
  font-size: 0.75rem;
  color: #ffa5c2;
  margin-bottom: 0.25rem;
}
.session-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}
.session-card__speaker {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}
.session-card__toggle {
  float: right;
  color: #ffa5c2;
  font-size: 1.125rem;
  cursor: pointer;
}

.carousel-banner {
  background-color: #21104a;
  padding: 1rem 0;
  text-align: center;
}
.carousel-banner .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.carousel-banner h2 {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.carousel-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.talks-page .page-hero .container {
  display: flex;
  align-items: center;
  gap: 4rem;
  text-align: left;
}
.talks-page .page-hero .page-hero__mask {
  flex-shrink: 0;
  height: 220px;
  width: auto;
  border-left: 3px solid #ffa5c2;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  .talks-page .page-hero .page-hero__mask {
    display: none;
  }
}
.talks-page .page-hero .page-hero__text {
  flex: 1;
}
.talks-page .page-hero .page-hero__text h2 {
  margin-bottom: 25px;
}
.talks-page .page-hero .page-hero__text p {
  margin: 0;
  max-width: none;
}
.talks-page .talks-what-to-expect {
  background-color: #21104a;
  padding-bottom: 3rem;
}
.talks-page .talks-what-to-expect .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.talks-page .talks-what-to-expect h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.talks-page .talks-what-to-expect .expectation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 980px) {
  .talks-page .talks-what-to-expect .expectation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .talks-page .talks-what-to-expect .expectation-grid {
    grid-template-columns: 1fr;
  }
}
.talks-page .talks-what-to-expect .expectation-item {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 1rem;
}
.talks-page .talks-what-to-expect .expectation-item__title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.talks-page .talks-what-to-expect .expectation-item .emoji {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}
.talks-page .talks-what-to-expect .expectation-item h4 {
  font-size: 1rem;
  color: #ffa5c2;
  margin-bottom: 0.5rem;
}
.talks-page .talks-what-to-expect .expectation-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.talks-page .talks-what-to-expect .talks-note {
  margin-top: 1.5rem;
}
.talks-page .talks-submit {
  background-color: #3b3b97;
  padding: 2rem 0;
}
.talks-page .talks-submit .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .talks-page .talks-submit .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.talks-page .talks-submit p {
  font-size: 1rem;
  color: #ffffff;
  margin: 0 auto;
  max-width: 780px;
}
.talks-page .talks-submit .btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
  background-color: #ffa5c2;
  color: #21104a;
  border: 2px solid #ffa5c2;
  flex-shrink: 0;
}
.talks-page .talks-submit .btn-primary:hover {
  background-color: transparent;
  color: #ffa5c2;
}

.showcase-page .showcase-intro {
  background-color: #21104a;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .showcase-page .showcase-intro {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .showcase-page .showcase-intro {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.showcase-page .showcase-intro .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 860px;
}
.showcase-page .showcase-intro h2 {
  color: #ffa5c2;
  margin-bottom: 1.5rem;
}
.showcase-page .showcase-intro p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
}
.showcase-page .showcase-award {
  background-color: rgba(255, 165, 194, 0.1);
  border-top: 3px solid #ffa5c2;
  border-bottom: 3px solid #ffa5c2;
  padding: 3rem 0;
}
.showcase-page .showcase-award .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 860px;
}
.showcase-page .showcase-award h3 {
  color: #ffa5c2;
  margin-bottom: 1rem;
}
.showcase-page .showcase-award p {
  color: #ffffff;
}
.showcase-page .showcase-deadline {
  background-color: #3b3b97;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .showcase-page .showcase-deadline {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .showcase-page .showcase-deadline {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.showcase-page .showcase-deadline .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}
.showcase-page .showcase-deadline h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}
.showcase-page .showcase-deadline .deadline-notice {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: #ffa5c2;
  color: #21104a;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.showcase-panel {
  background-color: #21104a;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .showcase-panel {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .showcase-panel {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.showcase-panel .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.showcase-panel__layout {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .showcase-panel__layout {
    flex-direction: column;
  }
}

.showcase-panel__image {
  flex: 0 0 380px;
  margin: 0;
  position: sticky;
  top: 90px;
}
@media (max-width: 1100px) {
  .showcase-panel__image {
    flex: 0 0 300px;
  }
}
@media (max-width: 768px) {
  .showcase-panel__image {
    flex: none;
    position: static;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 3rem;
  }
}
.showcase-panel__image img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-panel__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 1.5rem;
}

.showcase-panel__section h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffa5c2;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .showcase-panel__section h1 {
    font-size: 2rem;
  }
}
.showcase-panel__section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffa5c2;
  margin-bottom: 1rem;
}
.showcase-panel__section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffa5c2;
  margin-bottom: 1rem;
}
.showcase-panel__section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  line-height: 1.75;
}
.showcase-panel__section a {
  color: #ffa5c2;
}
.showcase-panel__section a:hover {
  color: #ff7aaa;
}
.showcase-panel__section .deadline-notice {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: #ffa5c2;
  color: #21104a;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.showcase-panel__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.showcase-panel__section--award {
  border-left: 3px solid #ffa5c2;
  padding-left: 2rem;
}
.showcase-panel__section--award p {
  color: #ffffff;
}

.game-detail-page {
  background-color: white;
}
.game-detail-page .game-detail__banner {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem 0;
}
.game-detail-page .game-detail__banner .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.game-detail-page .game-detail__banner-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-decoration: none;
}
.game-detail-page .game-detail__banner-link img {
  height: 48px;
  width: auto;
  display: block;
}
.game-detail-page .game-detail__banner-link span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffa5c2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.game-detail-page .game-detail__banner-link:hover span {
  color: #ffa5c2;
}
.game-detail-page .game-detail__intro {
  position: relative;
  background-color: transparent;
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 3rem;
  color: #3b3b97;
}
.game-detail-page .game-detail__intro .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}
.game-detail-page .game-detail__tetris {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  .game-detail-page .game-detail__tetris {
    display: none;
  }
}
.game-detail-page .game-detail__tetris--tl {
  top: 230px;
  left: 40px;
  width: 130px;
  transform: rotate(-12deg);
  opacity: 0.85;
}
.game-detail-page .game-detail__tetris--tr {
  top: 60px;
  right: 30px;
  width: 150px;
  transform: rotate(8deg);
  opacity: 0.85;
}
.game-detail-page .game-detail__tetris--bl {
  bottom: -40px;
  left: 20px;
  width: 120px;
  transform: rotate(15deg);
  opacity: 0.75;
}
.game-detail-page .game-detail__tetris--br {
  bottom: -20px;
  right: 10px;
  width: 110px;
  transform: rotate(-8deg);
  opacity: 0.75;
}
.game-detail-page .game-detail__layout {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.game-detail-page .game-detail__cover {
  flex: 0 0 420px;
  margin: 0;
  border: 3px solid #ffa5c2;
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(255, 165, 194, 0.25);
  overflow: hidden;
}
@media (max-width: 1100px) {
  .game-detail-page .game-detail__cover {
    flex: 0 0 340px;
  }
}
@media (max-width: 768px) {
  .game-detail-page .game-detail__cover {
    flex: none;
    width: 100%;
    max-width: 480px;
  }
}
.game-detail-page .game-detail__cover img {
  width: 100%;
  height: auto;
  display: block;
}
.game-detail-page .game-detail__info {
  flex: 1;
  padding-top: 1rem;
}
.game-detail-page .game-detail__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #3b3b97;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .game-detail-page .game-detail__title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .game-detail-page .game-detail__title {
    font-size: 1.5rem;
  }
}
.game-detail-page .game-detail__developer {
  font-size: 1.25rem;
  color: #3b3b97;
  margin-bottom: 2rem;
}
.game-detail-page .game-detail__desc {
  font-size: 1.125rem;
  color: #3b3b97;
  line-height: 1.85;
  margin-bottom: 3rem;
}
.game-detail-page .game-detail__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: #ffa5c2;
  color: #21104a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.game-detail-page .game-detail__link:hover {
  background-color: #ff7aaa;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.game-detail-page .game-detail__media {
  background-color: transparent;
  padding: 3rem 0 4rem;
}
.game-detail-page .game-detail__media .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1000px;
}
.game-detail-page .game-detail__media-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
  margin-bottom: 1.5rem;
}
.game-detail-page .game-detail__media-main img,
.game-detail-page .game-detail__media-main iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
}
.game-detail-page .game-detail__media-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 0.5rem;
}
.game-detail-page .game-detail__media-thumb {
  position: relative;
  aspect-ratio: 16/9;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  transition: all 0.25s ease;
}
.game-detail-page .game-detail__media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-detail-page .game-detail__media-thumb:hover {
  border-color: rgba(255, 165, 194, 0.6);
}
.game-detail-page .game-detail__media-thumb--active {
  border-color: #ffa5c2;
  box-shadow: 0 0 0 1px #ffa5c2;
}
.game-detail-page .game-detail__media-play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 1.5rem;
  pointer-events: none;
  transition: all 0.25s ease;
}
.game-detail__media-thumb:hover .game-detail-page .game-detail__media-play-badge {
  background-color: rgba(0, 0, 0, 0.2);
}

.history-page .history-hero {
  background-color: #21104a;
}
.history-page .history-hero .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 980px) {
  .history-page .history-hero .container {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 0.5rem;
  }
}
.history-page .history-hero__content {
  flex: 1;
  min-width: 0;
}
.history-page .history-hero__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.history-page .history-hero__title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffa5c2;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .history-page .history-hero__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .history-page .history-hero__title {
    font-size: 2rem;
  }
}
.history-page .history-hero__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}
.history-page .history-hero__intro {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.history-page .history-hero__images {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.history-page .history-hero__images img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .history-page .history-hero__images {
    display: block;
    position: relative;
    height: 380px;
  }
  .history-page .history-hero__images img {
    position: absolute;
    aspect-ratio: unset;
    object-fit: cover;
    border-radius: 16px;
  }
  .history-page .history-hero__images img:first-child {
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }
  .history-page .history-hero__images img:last-child {
    width: 80%;
    height: 80%;
    bottom: -120px;
    right: 0;
    z-index: 2;
    border: 3px solid #ffa5c2;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  }
}
@media (max-width: 980px) {
  .history-page .history-hero__images img {
    display: none;
  }
}
.history-page .history-hero__fade {
  line-height: 0;
}
.history-page .history-hero__fade img {
  width: 100%;
  display: block;
}
.history-page .history-section {
  background-color: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .history-page .history-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .history-page .history-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.history-page .history-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.history-page .history-era {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(33, 16, 74, 0.15);
}
.history-page .history-era:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.history-page .history-era--no-images .history-era__text {
  max-width: 780px;
}
@media (max-width: 980px) {
  .history-page .history-era {
    flex-direction: column;
    gap: 2rem;
  }
}
.history-page .history-era__text {
  flex: 1;
  min-width: 0;
}
.history-page .history-era__period {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffa5c2;
  background-color: rgba(255, 165, 194, 0.15);
  padding: 0.25rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.history-page .history-era__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #21104a;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .history-page .history-era__title {
    font-size: 1.25rem;
  }
}
.history-page .history-era p {
  font-size: 1rem;
  color: #3b3b97;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.history-page .history-era p:last-child {
  margin-bottom: 0;
}
.history-page .history-era__images {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .history-page .history-era__images--overlap {
    display: block;
    position: relative;
    height: 320px;
  }
  .history-page .history-era__images--overlap .history-era__image {
    position: absolute;
    aspect-ratio: unset;
  }
  .history-page .history-era__images--overlap .history-era__image:first-child {
    width: 82%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 1;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }
  .history-page .history-era__images--overlap .history-era__image:last-child {
    width: 80%;
    height: 80%;
    bottom: -120px;
    right: 0;
    z-index: 2;
  }
}
.history-page .history-era__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border: 3px solid #ffa5c2;
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(255, 165, 194, 0.25);
  overflow: hidden;
}

.award-page .award-hero {
  background-color: #ffa5c2;
}
.award-page .award-hero .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 980px) {
  .award-page .award-hero .container {
    flex-direction: column;
    gap: 2rem;
  }
}
.award-page .award-hero__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #21104a;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.award-page .award-hero__year {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #21104a;
  line-height: 1;
  margin-bottom: 0.25rem;
  opacity: 0.2;
}
.award-page .award-hero__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #21104a;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .award-page .award-hero__title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .award-page .award-hero__title {
    font-size: 1.5rem;
  }
}
.award-page .award-hero__developer {
  font-size: 1.25rem;
  font-weight: 600;
  color: #21104a;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}
.award-page .award-hero__content {
  flex: 1;
  min-width: 0;
}
.award-page .award-hero__description {
  font-size: 1rem;
  color: #21104a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.award-page .award-hero__description p {
  margin-bottom: 0.5rem;
}
.award-page .award-hero__judges h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #21104a;
  margin-bottom: 0.5rem;
}
.award-page .award-hero__judges ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.award-page .award-hero__judges ul li {
  font-size: 0.875rem;
  color: #21104a;
  background-color: rgba(33, 16, 74, 0.12);
  padding: 0.25rem 1rem;
  border-radius: 4px;
}
.award-page .award-hero__image {
  flex: 1;
  min-width: 0;
}
.award-page .award-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  border-top-right-radius: 80px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.award-page .award-hero__fade {
  line-height: 0;
}
.award-page .award-hero__fade img {
  width: 100%;
  display: block;
}
.award-page .award-hero__link {
  margin-top: 2rem;
}
.award-page .award-section {
  background-color: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .award-page .award-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .award-page .award-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.award-page .award-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1100px;
}
.award-page .award-section__heading {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #21104a;
  text-align: center;
  margin-bottom: 4rem;
}
.award-page .award-winner {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(33, 16, 74, 0.15);
}
.award-page .award-winner:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.award-page .award-winner--reversed {
  flex-direction: row-reverse;
}
@media (max-width: 980px) {
  .award-page .award-winner {
    flex-direction: column !important;
    gap: 2rem;
  }
}
.award-page .award-winner__image-col {
  flex: 1;
  min-width: 0;
}
.award-page .award-winner__image-col img {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid #ffa5c2;
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(255, 165, 194, 0.25);
  overflow: hidden;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
}
.award-page .award-winner__text-col {
  flex: 1;
  min-width: 0;
}
.award-page .award-winner__year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffa5c2;
  background-color: rgba(255, 165, 194, 0.15);
  padding: 0.25rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.award-page .award-winner__title {
  font-size: 2rem;
  font-weight: 900;
  color: #21104a;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .award-page .award-winner__title {
    font-size: 1.5rem;
  }
}
.award-page .award-winner__developer {
  font-size: 1.125rem;
  color: #21104a;
  opacity: 0.65;
  margin-bottom: 1.5rem;
}
.award-page .award-winner__description {
  color: #3b3b97;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.award-page .award-winner__description p {
  margin-bottom: 0.5rem;
}
.award-page .award-winner__judges h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #21104a;
  margin-bottom: 0.5rem;
}
.award-page .award-winner__judges ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.award-page .award-winner__judges ul li {
  font-size: 0.875rem;
  color: #21104a;
  background-color: rgba(255, 165, 194, 0.15);
  padding: 0.25rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 165, 194, 0.3);
}
.award-page .award-winner__link {
  display: inline-block;
  margin-top: 1.5rem;
}

.pitch-perfect-page .pitch-panel {
  background-color: #21104a;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .pitch-perfect-page .pitch-panel {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .pitch-perfect-page .pitch-panel {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.pitch-perfect-page .pitch-panel .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.pitch-perfect-page .pitch-panel__layout {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .pitch-perfect-page .pitch-panel__layout {
    flex-direction: column;
  }
}
.pitch-perfect-page .pitch-panel__images {
  flex: 0 0 40%;
  position: sticky;
  top: 90px;
}
@media (max-width: 768px) {
  .pitch-perfect-page .pitch-panel__images {
    display: none;
  }
}
@media (max-width: 1100px) {
  .pitch-perfect-page .pitch-panel__images {
    flex: 0 0 300px;
  }
}
@media (min-width: 768px) {
  .pitch-perfect-page .pitch-panel__images {
    display: block;
    height: 440px;
  }
  .pitch-perfect-page .pitch-panel__images img {
    position: absolute;
    object-fit: cover;
    border-radius: 16px;
  }
  .pitch-perfect-page .pitch-panel__images img:first-child {
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }
  .pitch-perfect-page .pitch-panel__images img:last-child {
    width: 80%;
    height: 80%;
    bottom: -80px;
    right: 0;
    z-index: 2;
    border: 3px solid #ffa5c2;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  }
}
.pitch-perfect-page .pitch-panel__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 1.5rem;
}
.pitch-perfect-page .pitch-panel__section h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffa5c2;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .pitch-perfect-page .pitch-panel__section h1 {
    font-size: 2rem;
  }
}
.pitch-perfect-page .pitch-panel__section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffa5c2;
  margin-bottom: 1rem;
}
.pitch-perfect-page .pitch-panel__section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  line-height: 1.75;
  margin: 0;
}
.pitch-perfect-page .pitch-panel__section ul {
  list-style: disc;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}
.pitch-perfect-page .pitch-panel__section ul li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  line-height: 1.75;
}
.pitch-perfect-page .pitch-panel__section ul li strong {
  color: #ffffff;
}
.pitch-perfect-page .pitch-panel__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff !important;
}
.pitch-perfect-page .pitch-panel__section--collab {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.pitch-perfect-page .pitch-panel__section--collab p a {
  color: #ffa5c2;
  font-weight: 700;
}
.pitch-perfect-page .pitch-panel__section--collab p a:hover {
  color: #ff7aaa;
}
.pitch-perfect-page .pitch-panel__cta {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: #ffa5c2;
  color: #21104a;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.pitch-perfect-page .pitch-panel__cta:hover {
  background-color: #ff7aaa;
  color: #21104a;
}

.faq-page .faq-section {
  background-color: #21104a;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .faq-page .faq-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .faq-page .faq-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.faq-page .faq-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 900px;
}
.faq-page .faq-contact-notice {
  background-color: rgba(255, 165, 194, 0.1);
  border: 1px solid #ffa5c2;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 4rem;
  text-align: center;
}
.faq-page .faq-contact-notice p {
  color: #ffffff;
  margin: 0;
  font-size: 1rem;
}
.faq-page .faq-contact-notice p a {
  color: #ffa5c2;
  font-weight: 700;
}
.faq-page .faq-contact-notice p a:hover {
  color: #ff7aaa;
}
.faq-page .faq-group {
  margin-bottom: 4rem;
}
.faq-page .faq-group h2 {
  font-size: 1.5rem;
  color: #ffa5c2;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.faq-page .faq-item {
  margin-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: all 0.25s ease;
}
.faq-page .faq-item:hover {
  border-color: rgba(255, 165, 194, 0.3);
}
.faq-page .faq-item__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.25s ease;
}
.faq-page .faq-item__question:hover {
  color: #ffa5c2;
}
.faq-page .faq-item__question::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffa5c2;
  flex-shrink: 0;
  line-height: 1;
  transition: all 0.25s ease;
}
.faq-page .faq-item__question.open::after {
  transform: rotate(45deg);
}
.faq-page .faq-item__answer {
  display: none;
  padding: 0 2rem 1.5rem;
}
.faq-page .faq-item__answer.open {
  display: block;
}
.faq-page .faq-item__answer p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.faq-page .faq-item__answer p:last-child {
  margin-bottom: 0;
}
.faq-page .faq-item__answer p a {
  color: #ffa5c2;
}
.faq-page .faq-item__answer p a:hover {
  color: #ff7aaa;
}

.photos-page .photos-featured {
  background-color: #21104a;
  padding: 4rem 0 2rem;
}
.photos-page .photos-featured .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.photos-page .photos-featured__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.photos-page .photos-featured__arrow {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(33, 16, 74, 0.6);
  color: #ffffff;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.photos-page .photos-featured__arrow:hover:not(:disabled) {
  border-color: #ffa5c2;
  color: #ffa5c2;
}
.photos-page .photos-featured__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
@media (max-width: 480px) {
  .photos-page .photos-featured__arrow {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
.photos-page .photos-featured__frame {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.photos-page .photos-featured__frame img {
  display: block;
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 0.25s ease;
  border: 3px solid #ffa5c2;
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(255, 165, 194, 0.25);
  overflow: hidden;
}
.photos-page .photos-featured__frame img.is-loading {
  opacity: 0.4;
}
.photos-page .photos-featured__caption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  text-align: center;
  min-height: 1.4em;
}
.photos-page .photos-carousel {
  background-color: #21104a;
  padding: 0 0 4rem;
}
.photos-page .photos-carousel .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.photos-page .photos-carousel__wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.photos-page .photos-carousel__track-outer {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.photos-page .photos-carousel__track {
  display: flex;
  gap: 0.5rem;
  transition: transform 0.35s ease;
}
.photos-page .photos-carousel__thumb {
  flex: 0 0 auto;
  width: 120px;
  height: 80px;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.photos-page .photos-carousel__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photos-page .photos-carousel__thumb:hover {
  border-color: rgba(255, 165, 194, 0.6);
  transform: translateY(-2px);
}
.photos-page .photos-carousel__thumb.is-active {
  border-color: #ffa5c2;
}
@media (max-width: 480px) {
  .photos-page .photos-carousel__thumb {
    width: 90px;
    height: 60px;
  }
}
.photos-page .photos-carousel__arrow {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(33, 16, 74, 0.6);
  color: #ffffff;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.photos-page .photos-carousel__arrow:hover {
  border-color: #ffa5c2;
  color: #ffa5c2;
}
.photos-page .photos-carousel__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.photos-page .photos-drive-callout {
  background-color: #3b3b97;
  padding: 3rem 0;
}
.photos-page .photos-drive-callout .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.photos-page .photos-drive-callout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid #ffa5c2;
  border-radius: 8px;
  padding: 2rem 3rem;
}
@media (max-width: 768px) {
  .photos-page .photos-drive-callout__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
}
.photos-page .photos-drive-callout__text h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.photos-page .photos-drive-callout__text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  margin: 0;
}
.photos-page .photos-drive-callout .btn--outline {
  flex-shrink: 0;
}

.program-page {
  background-color: #3b3b97;
  padding-bottom: 4rem;
}

.program-page__header {
  padding: 3rem 0 2rem;
}
.program-page__header .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.program-page__header h1 {
  margin-bottom: 0.25rem;
}
.program-page__header .program-page__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
}

.program-day {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}
.program-day:last-child {
  margin-bottom: 0;
}

.day-label-wrap {
  padding: 0 1.5rem 1rem;
}

.day-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #21104a;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.day-label:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.day-label .fa-calendar {
  color: #ffa5c2;
  font-size: 0.875rem;
}

.day-label__chevron {
  font-size: 0.6rem;
  margin-left: 0.25rem;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.program-day.is-collapsed .day-label__chevron {
  transform: rotate(-90deg);
}

.day-tracks-wrapper {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s ease;
}

.program-day.is-collapsed .day-tracks-wrapper {
  grid-template-rows: 0fr;
}

.day-tracks {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.program-track {
  --slot-w: 150px;
  --slot-gap: 8px;
}
@media (min-width: 768px) {
  .program-track {
    --slot-w: 190px;
    --slot-gap: 10px;
  }
}
@media (min-width: 980px) {
  .program-track:first-of-type {
    border-top-right-radius: 40px;
  }
  .program-track:first-of-type .track-header {
    border-top-right-radius: 40px;
  }
}

.track-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-header__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.track-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.track-scroll:active {
  cursor: grabbing;
}
.track-scroll::-webkit-scrollbar {
  display: none;
}

.program-track--white .track-scroll {
  scrollbar-width: thin;
}
.program-track--white .track-scroll::-webkit-scrollbar {
  height: 4px;
}
.program-track--white .track-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.program-track--white .track-scroll::-webkit-scrollbar-thumb {
  background: rgba(59, 59, 151, 0.3);
  border-radius: 2px;
}

.track-items {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--slot-gap);
  padding: 10px 1.5rem 14px;
  min-width: max-content;
}

.track-scroll .session[data-speaker-id] {
  cursor: inherit;
}

.session[data-speaker-id] {
  cursor: pointer;
}

.session {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 0.5rem 1rem 1rem;
  min-height: 148px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.session:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.session--30 {
  width: var(--slot-w);
}
.session--60 {
  width: calc(2 * var(--slot-w) + var(--slot-gap));
}
.session--90 {
  width: calc(3 * var(--slot-w) + 2 * var(--slot-gap));
}
.session--break:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.session__time {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.session__title {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.session__desc {
  font-size: 0.75rem;
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.session__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: auto;
}
.session__location i {
  font-size: 0.6rem;
  opacity: 0.7;
}

.session__speaker {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  margin-bottom: 0.25rem;
}

.program-track--pink {
  background-color: #fde8ef;
}
.program-track--pink .track-header {
  background-color: #e8547a;
  color: #fff;
}
.program-track--pink .track-header__dot {
  background-color: rgba(255, 255, 255, 0.7);
}
.program-track--pink .session {
  background-color: #fff;
}
.program-track--pink .session--break {
  background-color: #fce4ec;
  box-shadow: none;
}
.program-track--pink .session__time {
  color: rgba(33, 16, 74, 0.5);
}
.program-track--pink .session__title {
  color: #c2185b;
}
.program-track--pink .session__desc {
  color: rgba(33, 16, 74, 0.7);
}
.program-track--pink .session__location {
  color: rgba(33, 16, 74, 0.55);
}
.program-track--pink .session--break .session__title {
  color: rgba(194, 24, 91, 0.55);
}
.program-track--pink .session__speaker {
  color: rgba(194, 24, 91, 0.7);
}

.program-track--purple {
  background-color: #21104a;
}
.program-track--purple .track-header {
  background-color: #160b33;
  color: #ffa5c2;
}
.program-track--purple .track-header__dot {
  background-color: #ffa5c2;
}
.program-track--purple .session {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.program-track--purple .session--break {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}
.program-track--purple .session__time {
  color: rgba(255, 255, 255, 0.45);
}
.program-track--purple .session__title {
  color: #ffa5c2;
}
.program-track--purple .session__desc {
  color: rgba(255, 255, 255, 0.6);
}
.program-track--purple .session__location {
  color: rgba(255, 255, 255, 0.45);
}
.program-track--purple .session--break .session__title {
  color: rgba(255, 165, 194, 0.5);
}
.program-track--purple .session__speaker {
  color: rgba(255, 165, 194, 0.75);
}

.program-track--white {
  background-color: #f0f0f7;
}
.program-track--white .track-header {
  background-color: #d8d8ec;
  color: #21104a;
}
.program-track--white .track-header__dot {
  background-color: #3b3b97;
}
.program-track--white .session {
  background-color: #fff;
  border: 1px solid rgba(59, 59, 151, 0.1);
}
.program-track--white .session--break {
  background-color: #e8e8f4;
  border-color: transparent;
  box-shadow: none;
}
.program-track--white .session__time {
  color: rgba(33, 16, 74, 0.5);
}
.program-track--white .session__title {
  color: #3b3b97;
}
.program-track--white .session__desc {
  color: rgba(33, 16, 74, 0.7);
}
.program-track--white .session__location {
  color: rgba(33, 16, 74, 0.55);
}
.program-track--white .session--break .session__title {
  color: rgba(59, 59, 151, 0.5);
}
.program-track--white .session__speaker {
  color: rgba(59, 59, 151, 0.65);
}

.press-page {
  background-color: #21104a;
  min-height: calc(100vh - 70px - 200px);
}
.press-page .press-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .press-page .press-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .press-page .press-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.press-page .press-section .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 900px;
}
.press-page .press-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}
.press-page .press-breadcrumbs a {
  color: #ffa5c2;
  text-decoration: none;
}
.press-page .press-breadcrumbs a:hover {
  color: #ff7aaa;
  text-decoration: underline;
}
.press-page .press-breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.75);
}
.press-page .press-listing {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
}
.press-page .press-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.2s ease;
}
.press-page .press-item:last-child {
  border-bottom: none;
}
.press-page .press-item:hover {
  background-color: rgba(255, 255, 255, 0.06);
}
.press-page .press-item__icon {
  width: 1.5rem;
  text-align: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  color: #ffa5c2;
}
.press-page .press-item__name {
  flex: 1;
  font-weight: 600;
  word-break: break-word;
}
.press-page .press-item__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.press-page .press-item__size {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}
.press-page .press-item__date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}
.press-page .press-item--folder .press-item__icon {
  color: #f5c542;
}
.press-page .press-item--up .press-item__icon {
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 480px) {
  .press-page .press-item {
    padding: 0.5rem 1rem;
  }
  .press-page .press-item__meta {
    display: none;
  }
}
.press-page .press-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  padding: 6rem 0;
}
.press-page .press-empty i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}
.press-page .press-empty p {
  font-size: 1.125rem;
  margin: 0;
}

.not-found-page {
  background-color: #21104a;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
}
.not-found-page .not-found__hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
}
.not-found-page .not-found__hero .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  justify-content: center;
}
.not-found-page .not-found__content {
  text-align: center;
  max-width: 820px;
}
.not-found-page .not-found__wave-hand {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: wave 2.2s ease-in-out infinite;
  transform-origin: 70% 80%;
}
@media (prefers-reduced-motion: reduce) {
  .not-found-page .not-found__wave-hand {
    animation: none;
  }
}
.not-found-page .not-found__headline {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffa5c2;
  line-height: 1.15;
  margin-bottom: 2rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .not-found-page .not-found__headline {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .not-found-page .not-found__headline {
    font-size: 1.5rem;
  }
}
.not-found-page .not-found__subtext {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4rem;
}
.not-found-page .not-found__cta {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: #ffa5c2;
  color: #21104a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.not-found-page .not-found__cta:hover {
  background-color: #ff7aaa;
}

@keyframes wave {
  0%, 60%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(18deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(12deg);
  }
  50% {
    transform: rotate(-4deg);
  }
}
