@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

@font-face {
  font-family: 'Montserrat ExtraBold';
  src: url('static/Montserrat-ExtraBold.ttf');
}

@font-face {
  font-family: "Montserrat";
  src: url('static/Montserrat-Light.ttf');
}

@font-face {
  font-family: "General Sans";
  src: url('static/Montserrat-Regular.ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #101010;
  color: #fff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  position: relative;
}

header {
  width: 100%;
  padding: 30px 0px;
  position: fixed;
  display: flex;
  justify-content: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #101010;
  z-index: 99999;
  border-bottom: 1px solid #343434;
}

.header-con {
  width: 100%;
  max-width: calc(100% - 160px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  max-width: 160px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4ade80, #22d3ee);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
}

.container .get-tickets-btn {
  background: #b1ff42;
  color: #000;
  border: none;
  border: 2px solid #b1ff42;
  padding: 10px 32px;
  border-radius: 99px;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.container .get-tickets-btn:hover,
.container .get-tickets-btn:focus,
.container .get-tickets-btn:active {
  background: transparent;
  color: #b1ff42;
}

.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 110px; /* 添加顶部内边距，避免内容被头部遮挡 */
}

/* 背景视频容器样式 */
.bg-video-container {
  position: absolute;
  top: 110px; /* 从头部下方开始，大于header的高度 */
  left: 0;
  width: 100%;
  height: calc(100% - 110px); /* 调整视频高度，减去头部占用的空间 */
  z-index: 1;
  overflow: hidden;
}

/* 背景视频样式 */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  /* filter: brightness(0.3); */
  /* 调整视频亮度，确保文字可见 */
}

.content-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  padding: 0 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
}

.title {
  font-size: 60px;
  font-weight: 800;
  line-height: 72px;
  color: #fff;
  font-family: "Montserrat ExtraBold";
}

.title-highlight {
  color: #aeff00;
}

.date-location {
  color: #ffffff;
  font-family: "Montserrat ExtraBold";
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 33px;
  margin-top: 41px;
}

.right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  opacity: 0;
  /* 初始隐藏 */
  transition: opacity 1s ease;
}

.growth-day-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 4rem;
  position: relative;
}

.year-text {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: -0.5rem;
  background: linear-gradient(135deg, #fff, #e5e7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-text {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #e5e7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.singapore-text {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e5e7eb;
  letter-spacing: 1px;
  z-index: 4;
  opacity: 1;
  /* 初始隐藏 */
  transition: opacity 1s ease;
}

/* 打字效果相关样式 */
.typing-container {
  position: relative;
  display: inline-block;
}

.typing-line {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  /* 初始隐藏文字 */
}

.typing-cursor {
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background-color: #aeff00;
  margin-left: 18px;
  /* 调整光标与文字的间距 */
  vertical-align: text-bottom;
  /* 确保光标在文字后方 */
  animation: cursor-blink 1s infinite;
  opacity: 0;
  display: none;
  /* 默认隐藏 */
  position: relative;
  top: 2px;
  /* 微调光标垂直位置 */
}

.banner-btn {
  margin-top: 5rem;
  display: none;
  width: auto;
}

@keyframes cursor-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* 新模块样式 */
.modules-section {
  width: 100%;
  max-width: calc(100% - 160px);
  margin: 0 auto;
  position: relative;
}
.modules-section .modules-title {
  padding: 80px 0px 60px 0px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.modules-section .modules-title .title-con {
  color: #b0ff42;
  font-family: "Montserrat ExtraBold";
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.modules-section .modules-title .title-desc {
  width: 320px;
  font-family: "Montserrat ExtraBold";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: linear-gradient(90deg, #fff 0%, #999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modules-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.module-card {
  background-image: url('img/card02_bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 80px;
  height: 709px;
  padding: 60px;
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.module-card-white {
  background-image: url('img/card01_bg.png');
}

.module-card.active {
  width: 69%;
}

.module-card.collapsed {
  width: 30%;
}

.active .module-content-mobile {
  display: none;
  position: relative;
}

.module-content-mobile .module-title {
  width: 120px;
  margin-bottom: 38px;
}

.module-content-mobile .module-toggle {
  position: absolute;
  bottom: 60px;
  right: 60px;
}

.module-content-mobile p {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  font-family: "Montserrat ExtraBold";
}

.collapsed .module-content {
  display: none;
}

.module-card-black .module-content-mobile p {
  color: #fff;
}

.module-content {
  position: relative;
  z-index: 1;
}

.module-title {
  font-size: 2.45rem;
  font-weight: 800;
  color: #fff;
  font-family: "Montserrat ExtraBold";
  margin-bottom: 1rem;
  line-height: normal;
}

.module-card-white .module-title {
  color: #222;
}

.module-card-white .venue-badge {
  color: #222222;
  border: 1px solid #222222;
  background: transparent;
}
.module-card-white .venue-badge-active {
  background: #222222;
  color: #fff;
}

.venue-badge {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.venue-badge-active {
  background: #fff;
  color: #000;
}

.module-text {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

.module-text-container {
  margin-top: 39px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 366px;
}

.module-text-container .module-image {
  width: 236px;
  height: 100%;
  flex-shrink: 0;
  border-radius: 20px;
}

.module-text-container .module-text-content {
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 366px;
}

.module-card-white .module-text-container .module-text-content .module-text {
  color: #222;
}
.module-text-container .module-text-content .module-text-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.module-text-container .module-text-content .module-text-bold {
  color: #9d9d9d4d;
  font-family: "Montserrat ExtraBold";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

.module-toggle {
  width: 64px;
  height: 42px;
  border-radius: 60px;
  text-align: center;
  line-height: 30px;
  background: #b5b5b533;
  color: #fff;
  font-size: 26px;
}

.module-toggle-active {
  line-height: 40px;
}

.module-toggle:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.modules-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 0px 100px 0px;
}

.modules-footer .modules-footer-btn {
  display: flex;
  align-items: center;
}

.modules-footer .modules-footer-btn .modules-footer-btn-con {
  width: 150px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 60px;
  background: #b0ff42;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
}

.modules-footer .modules-footer-btn .disabled {
  background: #b5b5b5;
  cursor: not-allowed !important;
}

.modules-footer .modules-footer-btn .modules-footer-btn-con img {
  height: 30px;
}

.calendar-section {
  width: 100%;
  max-width: calc(100% - 160px);
  margin: 0 auto;
  position: relative;
}

.calendar-title {
  padding: 0 0px 0px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.calendar-title .title-con {
  color: #b0ff42;
  font-family: "Montserrat ExtraBold";
  font-size: 42px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.calendar-title .title-desc {
  width: 420px;
  font-family: "Montserrat";
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  background: linear-gradient(90deg, #fff 0%, #999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calendar-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 2px;
}

.calendar-container-con {
  height: 255px;
  width: 100%;
  border-radius: 40px;
  background: #232323;
  position: relative;
  color: #2c2c2c;
  font-family: "Montserrat";
  font-size: 100px;
  font-style: normal;
  font-weight: 300;
  line-height: 90px;
  padding-left: 10px;
}
.calendar-container-con-active {
  background: #b1ff42;
  color: #101010;
}
.calendar-container-con-active .year-img {
  width: 115px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
}
.calendar-container-con-active .lihua-img {
  width: 188px;
  position: absolute;
  top: 10px;
  right: -100px;
  z-index: 100;
}
.calendar-container-con-box-01 {
  background: #7d8791;
  color: #2c2c2c;
}
.calendar-container-con-box-01 .text-img-01 {
  width: 86px;
  position: absolute;
  left: 16px;
  bottom: 22px;
}
.calendar-container-con-box-01 .diannao-img {
  position: absolute;
  width: 200px;
  z-index: 100;
  bottom: -49px;
  right: -40px;
}

.calendar-container-con-box-03 {
  background: #aaaaaa;
  color: #2c2c2c;
}
.calendar-container-con-box-03 .text-img-03 {
  height: 26px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
}
.calendar-container-con-box-03 .qizhi-img {
  width: 160px;
  bottom: -40px;
  z-index: 100;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.calendar-container-mobile {
  display: none;
}
.calendar-container-mobile .calendar-container-con {
  height: 189px;
}
.calendar-container-mobile .calendar-container-con-active {
  background: #b1ff42;
  height: 255px;
}
.bg-18 {
  background: #181818;
}
.calendar-container-con-box {
  height: 189px;
}

.event-section {
  padding: 80px 0px;
  background-color: #101010;
  background-image: url('img/BG.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.event-section-con {
  max-width: calc(100% - 160px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.event-section-con .event-container {
  height: 100%;
  width: 660px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.event-section-con .event-container .event-container-con {
  width: 165px;
  height: 165px;
  border-left: 1px solid #28282e;
  border-bottom: 1px solid #28282e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-section-con .event-container .event-container-con img {
  height: 160px;
}

.event-section-con .event-container .event-container-con:nth-child(4n) {
  border-right: 1px solid #28282e;
}

.event-section-con .event-container .event-container-con:nth-child(17),
.event-section-con .event-container .event-container-con:nth-child(18),
.event-section-con .event-container .event-container-con:nth-child(19),
.event-section-con .event-container .event-container-con:nth-child(20) {
  border-bottom: none;
}

/* 合作伙伴容器样式 */
.partner-container {
  position: relative;
  overflow: hidden;
}
.event-section-con .event-container-mobile {
  display: none;
}
/* 图片样式 */
.partner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.speaker-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 0px;
  background-image: url('img/banner.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.speaker-section img {
  height: 88px;
  margin-bottom: 24px;
}
.speaker-section p {
  color: #f4f4f6;
  text-align: center;
  font-family: "General Sans";
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 76.8px;
  margin-bottom: 24px;
}
.speaker-section-mobile {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 0px 220px 0px;
  background-image: url('img/yd-banner.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.speaker-section-mobile img {
  height: 108px;
  margin-bottom: 24px;
}

.speaker-section-mobile p {
  width: 100%;
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 69.6px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  font-family: "PF Din Text Comp Pro";
}
.speaker-section-mobile p span {
  color: #b0ff42;
}

.speaker-section p span {
  color: #b0ff42;
}

.line-1 {
  position: absolute;
  opacity: 0.2;
  width: 1px;
  height: 100%;
  left: -20px;
  top: 0;
  background: linear-gradient(
    270deg,
    #4d4c5c00 0%,
    #4d4c5c 20.19%,
    #4d4c5c 83.17%,
    #a3a0c200 100%
  );
}
.line-2 {
  position: absolute;
  width: 1px;
  height: 100%;
  opacity: .3;
  left: 240px;
  background: linear-gradient(
    270deg,
    #4d4c5c00 0%,
    #4d4c5c 20.19%,
    #4d4c5c 83.17%,
    #a3a0c200 100%
  );
}
.event-section .event-title {
  padding-left: 28px;
  flex-shrink: 0;
}
.event-section .event-title .title-con {
  color: #b0ff42;
  font-family: "Montserrat ExtraBold";
  font-size: 42px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}
.title-desc {
  width: 320px;
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
  background: linear-gradient(90deg, #fff 0%, #999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1160px) {
  .event-section-con {
    flex-direction: column;
  }
  .line-1,
  .line-2 {
    display: none;
  }
}
/* 响应式设计 */
@media (max-width: 992px) {
  .speaker-section-mobile {
    display: flex;
  }
  .speaker-section {
    display: none;
  }
  .modules-container {
    flex-direction: column;
    align-items: center;
    padding: 12px;
  }
  .event-section-con {
    flex-direction: column;
    align-items: flex-start;
  }
  .line-1,
  .line-2 {
    display: none;
  }
  #event-container {
    display: none;
  }
  .event-section-con .event-container-mobile {
    display: flex;
    padding: 0 12px;
  }
  .title-con {
    margin-bottom: 16px;
  }
  .title-desc {
    width: 420px;
  }
  .event-section-con .event-container {
    width: 730px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: -60px;
  }
  .calendar-container-mobile {
    padding: 0 12px;
  }
  .modules-footer {
    display: none;
  }
  .calendar-container {
    display: none;
  }
  .calendar-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .calendar-title .title-desc {
    width: 70%;
  }
  .calendar-container-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 2px;
  }
  .modules-container .module-card {
    width: 100%;
    margin-bottom: 8px;
    height: auto;
    border-radius: 40px;
  }
  .modules-container .module-card.active {
    height: auto;
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px; /* 设置一个较大的max-height以确保内容可以完全展开 */
  }
  /* 折叠模块样式 - 添加动画属性 */
  .modules-container .module-card.collapsed {
    height: 200px;
    /* 设置折叠状态的高度 */
    transform: translateY(0);
    max-height: 200px; /* 限制折叠状态的最大高度 */
  }
  .modules-container .module-content-mobile .module-title {
    margin-bottom: 16px;
  }
  .modules-container .module-toggle {
    width: 64px;
    height: 48px;
    line-height: 33px;
  }
  .modules-container .module-toggle-active {
    line-height: 45px;
  }
  .modules-container .module-content-mobile .module-toggle {
    right: 32px;
    bottom: none;
    top: 50%;
    transform: translateY(-50%);
  }
  .modules-container .venue-badge {
    display: block;
    margin-bottom: 8px;
  }
  .module-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .module-content .module-title {
    margin-bottom: 12px;
    font-size: 1.8em;
  }
  .module-content .module-text-container {
    margin-top: 10px;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
  }
  .module-content .module-text-container .module-image {
    order: 1;
    margin-bottom: 12px;
    width: 100%;
    height: 240px;
    object-fit: cover;
  }
  .module-content .module-text-container .module-text-content {
    justify-content: flex-start;
    padding-left: none;
    min-height: auto;
    padding: 0;
    order: 2;
  }
  .modules-section .modules-title {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 48px 24px 16px 24px;
  }
  .modules-section .modules-title .title-con {
    margin-bottom: 16px;
  }
  .modules-container .module-content-mobile .module-title {
    width: 300px;
  }
  .modules-section {
    max-width: 100%;
  }
  .calendar-section {
    padding-top: 48px;
    max-width: 100%;
  }
  .event-section-con {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .speaker-section-mobile p {
    font-size: 52px;
    width: 500px;
  }
  .event-section-con .event-container {
    width: 100%;
  }
  .event-section-con .event-container .event-container-con:nth-child(4n) {
    border-right: none;
  }
  .event-section-con .event-container .event-container-con:nth-child(3n) {
    border-right: 1px solid #28282e;
  }
  .event-section-con .event-container .event-container-con:nth-child(13),
  .event-section-con .event-container .event-container-con:nth-child(14),
  .event-section-con .event-container .event-container-con:nth-child(15) {
    border-bottom: none;
  }
  .modules-container {
    padding: 0 1rem;
  }
  .module-card {
    padding: 48px 32px;
  }
  .module-title {
    font-size: 1.5rem;
  }
  .modules-container .module-card.collapsed {
    height: 160px; /* 设置折叠状态的高度 */
    transform: translateY(0);
    max-height: 160px;
    /* 限制折叠状态的最大高度 */
  }
}
@media (max-width: 1200px) {
  .title {
    font-size: 65px;
    line-height: 70px;
    text-transform: uppercase;
  }
  .year-text {
    font-size: 5rem;
  }
  .event-text {
    font-size: 2.5rem;
  }
}
@media (max-width: 1200px) {
  .module-text {
    font-size: 0.9em;
  }
  .module-text-container .module-text-content .module-text-bold {
    font-size: 14px;
  }
  .module-toggle {
    height: 32px;
    width: 52px;
    line-height: 20px;
  }
  .module-toggle-active {
    line-height: 30px;
  }
}
@media (max-width: 1100px) {
  .module-text {
    font-size: 0.6em;
  }
  .module-text-container .module-text-content .module-text-bold {
    font-size: 12px;
  }
  .module-toggle {
    height: 32px;
    width: 52px;
    line-height: 24px;
  }
  .module-toggle-active {
    line-height: 28px;
  }
}
@media (min-width: 1280px) {
  .header-con {
    max-width: 1280px;
  }
  .modules-section {
    max-width: 1280px;
  }
  .calendar-section {
    max-width: 1280px;
  }
  .event-section-con {
    max-width: 1280px;
  }
  .content-overlay {
    padding: 0 2em;
  }
}
@media (max-width: 992px) {
  .header-con {
    max-width: calc(100% - 60px);
  }
  .logo img {
    max-width: 120px;
  }
  .content-overlay {
    flex-direction: column;
    text-align: center;
    padding: 10rem 2rem 4rem;
  }
  .left-content,
  .right-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .growth-day-text {
    align-items: center;
  }
  .singapore-text {
    right: 50%;
    transform: translateX(50%);
    bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .typing-cursor {
    width: .6em;
    height: 3px;
    margin-left: 6px;
  }
  .title {
    font-size: 45px;
    line-height: 50px;
    text-transform: uppercase;
  }
  .year-text {
    font-size: 4rem;
  }
  .event-text {
    font-size: 2rem;
  }
  .container .get-tickets-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 540px) {
  .module-card {
    background-image: url('img/yd-card01_bg.png');
    background-size: cover;
  }
  .module-card-black {
    background-image: url('img/yd-card02_bg.png');
  }
  .speaker-section-mobile p {
    font-size: 42px;
    width: 400px;
    line-height: normal;
  }
  .event-section {
    background-image: url('img/YDBG.png');
  }
  .event-section .event-title .title-con {
    font-size: 40px;
    margin-bottom: 16px;
  }
  .event-section .event-title .title-desc {
    width: 280px;
    z-index: 1;
    position: relative;
  }
  .event-section-con .event-container .event-container-con {
    width: 33%;
    height: 110px;
  }
  .event-section-con .event-container .event-container-con img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 480px) {
  .event-container-mobile {
    padding: 0px 12px;
  }
  .event-section-con .event-container .event-container-con {
    width: 33%;
    height: 110px;
  }
  .event-section-con .event-container .event-container-con img {
    width: 100%;
    height: 100%;
  }
  .calendar-container-mobile {
    grid-template-columns: repeat(2, 1fr);
  }
  .module-text {
    font-size: 14px;
  }
  .module-content .module-text-container .module-image {
    height: 100px;
  }
  .modules-container {
    padding: 0 4px;
  }
  .module-card {
    padding: 48px 32px;
  }
  .date-location {
    display: none;
  }
  .modules-section {
    max-width: 100%;
  }
  .calendar-section {
    max-width: 100%;
  }
  .event-section-con {
    max-width: 100%;
  }
  .hero-section {
    padding-top: 70px;
    align-items: flex-start;
  }
  .bg-video-container {
    top: 70px;
    height: calc(100% - 70px);
  }
  .typing-cursor {
    width: .6em;
    height: 3px;
    margin-left: 6px;
  }
  .banner-btn {
    display: block;
    font-size: 18px;
  }
  header {
    padding: 0;
  }
  .header-con {
    padding: 12px 0px;
    max-width: 100%;
    border-bottom: none;
    justify-content: center;
  }
  header .get-tickets-btn {
    display: none;
  }
  .left-content {
    justify-content: space-between;
    height: 100%;
  }
  .content-overlay {
    padding: 3rem 1rem 6rem;
    height: 100%;
  }
  .title {
    font-size: 35px;
    line-height: 45px;
    text-transform: uppercase;
  }
  .year-text {
    font-size: 3rem;
  }
  .event-text {
    font-size: 1.5rem;
  }
  .date-location {
    font-size: 1rem;
  }
}
/* Footer Styles */
.section-footer {
  padding: 40px 0 0;
}
.footer-container {
  width: 100%;
  max-width: calc(100% - 160px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.footer-logo .logo img {
  max-width: 180px;
  margin-bottom: 20px;
}
.footer-desc {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}
.footer-links {
  display: flex;
  justify-content: space-between;
  flex: 0 0 65%;
  flex-wrap: wrap;
}
.footer-link-column {
  margin-right: 40px;
  margin-bottom: 20px;
}
.footer-link-column h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-link-column ul {
  list-style: none;
}
.footer-link-column ul li {
  margin-bottom: 10px;
}
.footer-link-column ul li a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-link-column ul li a:hover {
  color: #b1ff42;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  border-top: 0.5px solid #343434;
}
.social-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.social-icons a img {
  width: 40px;
  height: 40px;
}
.copyright {
  color: #5e6b7e;
  font-family: "Karla";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}
@media (max-width: 768px) {
  .footer-container {
    max-width: calc(100% - 40px);
    flex-direction: column;
  }
  .social-icons {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .footer-logo {
    margin-bottom: 40px;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-link-column {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 570px) {
  .social-icons {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 35px;
  }
  .footer-logo {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .footer-logo .logo img {
    margin-bottom: 40px;
  }
}
