body {
  background-color: #1e1e1e;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: hidden;
}

* {
  font-family: "Source Code Pro", sans-serif;
}

/* Style the navbar */
#navbar {
  /* margin-top: 100px; */
  overflow: hidden;
  /* background: white; */
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  padding: 24px 120px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  height: 180px;
  transition: all ease-in-out 0.4s;
  will-change: transform, height;
  transform: translateZ(0);
  backface-visibility: hidden;
  background: transparent;
}

#navbar.fixed {
  background: rgba(255, 255, 255, 0.8);
  height: 60px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.text-background {
  /* background-color: rgba(216, 216, 216, 0.75); */
  /* padding: 10px 10px; */
  border-radius: 10px;
  margin: 0 10px;
}

#navbar .navbar-items {
  display: flex;
}

/* Navbar links */
#navbar .navbar-items a {
  display: block;
  color: #000000;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  font-size: 0.8em;
  background-color: rgba(242, 242, 242, 1);
  border-radius: 0.3rem;
  margin: 0 0.5em;
  font-family: 'Source Code Pro', monospace;
  font-weight: bold;
  box-shadow: 1px 6px 12px -8px rgba(0, 0, 0, 0.6);
  transition: box-shadow ease-in-out 0.4s;
}

#navbar .navbar-items a:hover {
  box-shadow: 0 6px 10px -5px rgba(0, 0, 50, 0.9);
  background-color: rgba(242, 242, 242, 0.4);
  transform: scale3d(-1, 1, 1);
}

#navbar img {
  height: 4vh;
  width: 4vh;
  padding-left: 5px;
}

.speaker-info {
  color: white;
  position: relative;
}
.sponsor-info {
  color: black;
}

#speakers {
  height: 100%;
  margin: 80px 80px;
  display: flex;
  flex-direction: column; /* changed from flex-flow */
  align-items: center;
  justify-content: center;
  width: 100%; /* full width by default */
  max-width: 63.25vw; /* maximum width on larger screens */
  position: relative;
}

section.sponsors-section {
  background:
    linear-gradient(6deg, rgba(58, 50, 73, 0.9), 0%, rgba(0, 0, 0, 0.6) 100%),
    url(https://bsdc.sfo2.cdn.digitaloceanspaces.com/glitch_bg2.gif);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  position: relative;
  margin-top: 50px;
  padding-top: 50px;
}
section.sponsors-section h1,
section.sponsors-section h2,
section.sponsors-section {
  color: white;
}

section.sponsors-section h2 {
  margin-bottom: 0;
  font-size: 50px;
}

.sponsors {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  text-align: center;
  padding-bottom: 50px;
}

/* Media Query for Mobile Devices */
@media (max-width: 900px) {
  #speakers {
    height: auto; /* adjust height for mobile */
    max-width: 100%; /* full width on small screens */
    padding: 20px; /* add some padding */
  }
}

#speakers-header {
  width: 100%;
  text-align: center;
}

.speakers-images {
  width: 100%;
  max-height: 100%;
  text-align: center;
  display: flex;
  gap: 30px; /* Reduced the gap for better visual grouping */
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  margin-top: 1em; /* Add some margin up top */
  margin-bottom: 30px; /* Added some space at the bottom */
}

.speaker-info:hover {
  z-index: 1000;
}

.speaker-info {
  transition: background-color 0.2s ease-in-out;
}

.sponsor {
  width: 15vw; /* Responsive width */
  height: 15vw; /* Responsive height, keeping the aspect ratio */
  max-width: 200px; /* Maximum size */
  max-height: 200px; /* Maximum size */
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  display: block;
  margin: 1em auto;
  cursor: pointer;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  transition: all 0.3s ease-in-out; /* Smooth transition for shadow and transform */
}

.speaker-info:hover .sponsor {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Larger shadow on hover for a 'lifted' effect */
  transform: scale(1.05); /* Slightly scale up the images on hover */
}

.speaker-info:not(.expanded) {
  user-select: none;
}

.speaker-info.expanded .sponsor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.speaker-info.expanded .speaker-text {
  text-align: left;
}

.speaker-info .bio {
  display: none;
  visibility: hidden;
  color: black;
}

.speaker-info.expanded .bio {
  display: block;
  visibility: visible;
}

.speaker-info.expanded .name {
  color: gray;
  font-weight: bold;
  font-size: 2em;
}

.speaker-info.expanded {
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  z-index: 1001;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: .5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  padding: 2em;
  padding-left: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.speaker-info .close {
  display: none;
  visibility: hidden;
  cursor: pointer;
}

.speaker-info.expanded .close {
  display: block;
  visibility: visible;
  background-color: #000000;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2em;
}

#schedule-section {
  display: flex;
  width: 100%;
  padding: 80px 1em;
  background-image: url(public/images/hills.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#schedule-header {
  width: 100%;
  text-align: center;
}

#schedule-header > h2 {
  color: black;
  background-color: rgba(255, 255, 255, 0.4);
  padding: .2em;
  width: auto;
  display: inline-block;
}

#schedule {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0 100px;
}

#schedule > li {
  background-color: white;
  display: block;
  padding: 2em;
  margin-bottom: 1em;
  min-width: 80%;
  max-width: 600px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
  position: relative;
}

#schedule > li.meta {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3) inset;
  background-color: #f2f2f2;
}

#schedule > li:not(.meta) {
  margin-left: 2em;
}

#schedule > li:hover {
  transform: scale(1.05);
}

#schedule > li:hover .descript {
  display: block;
  z-index: 2;
}

#schedule > li a {
  color: gray;
}

#schedule > li .descript ~ .color-bar::before {
  content: 'Hover for description';
  display: block;
  font-size: .9em;
  color: gray;
  text-align: right;
  position: absolute;
  padding: 0 .5em;
  bottom: 8px;
  left: 0;
  right: 0;
  z-index: 1;
}

#schedule > li .descript {
  background-color: rgba(255, 255, 255, 0.95);
  font-size: .9em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  padding: 1em;
  transition: all 0.2s ease-in-out;
  overflow: scroll;
}

#schedule > li > .color-bar {
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

#schedule .title {
  font-weight: bolder;
  font-size: 2em;
}

#schedule .who {
  font-size: 1em;
  display: block;
  color: gray;
  width: 100%;
}

#schedule .time {
  font-size: 1.5em;
  display: block;
  width: 100%;
  color: gray;
}

x p {
  margin: 0;
  font-size: 18px;
  font-weight: 200;
  color: white;
}

.bar {
  height: 100%;
  width: 0%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: black;
  z-index: -5;
}

.image-container {
  position: relative;
  width: 100%;
  height: 900px;
  text-align: center;
}

.image-container.main-hero {
  /* background-image: url('https://bsdc.sfo2.cdn.digitaloceanspaces.com/xbanner_hero.jpg'); */
  background-image: url('https://bsdc.sfo2.cdn.digitaloceanspaces.com/glitch-hero.gif');
  width: 100%;
  min-height: 100vh;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.bison-herd {
  height: 100px;
  display: none;
  position: absolute;
  bottom: -5px;
  right: 0;
  left: 0;
}

.bison {
  display: none;
  position: absolute;
}

.container {
  display: flex;
  overflow: hidden;
}
.left-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("public/images/trees.png");
  background-size: cover;
  position: relative; /* To position the logo absolutely within this container */
  height: 955px;
}

.flex-column-center {
  justify-content: center;
  align-items: center;
}

#gallery-container {
  width: 100%;
  padding: 5em;
  text-align: center;
}

.buffalo-logo {
  position: absolute;
  max-width: 100%; /* Adjust as needed */
  height: auto; /* Adjust as needed */
  /* Position the logo as required, e.g., top: 20px; left: 20px; */
}
.right-column {
  flex: 1;
  padding-right: 60px;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  background-color: white;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 64px;
  overflow: scroll;
}

.about-header {
  font-size: 80px;
  font-family: "Jersey 15", serif;
  font-weight: 400;
  line-height: 57.6px;
}

.about-text {
  color: white;
  leading-trim: both;
  text-edge: cap;
  /* Body/B—01/Regular */
  font-family: "Source Code Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 32.4px */
  padding: 0 2em;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-container {
  color: white;
  max-width: 1000px;
}

.big-sky {
  font-family: "Jersey 15", serif;
  font-size: 80px; /* Adjust as needed */
  color: black;
  margin-bottom: 5px;
}

.dev-con {
  font-family: "Jersey 15", serif;
  font-size: 80px; /* Adjust as needed */
  color: white;
  background-color: black;
  padding: 10px;
  margin: 0px;
  border-radius: 10px;
  /* only a little wider than content */
  width: fit-content;
}

.conference-text, .conference-text span {
  color: var(--Brand-Primary-P01, #3b324b);
  text-align: center;
  leading-trim: both;

  text-edge: cap;
  /* Headline/H—01 */
  font-family: "Jersey 15", serif;
  font-size: 90px;
  font-weight: bolder;
  /* font-style: normal; */
  font-weight: 500;
  /* line-height: 135%; 86.4px */
  /* margin-top: 10px; */
}

.conference-text .countdown {
  display: block;
  padding-top: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jersey 15", serif;
  font-weight: bold;
}

h1 {
  font-size: 60px;
  font-weight: 800;
  left: 20px;
  line-height: 1;
  color: white;
}

h2 {
  font-size: 40px;
  line-height: 1;
  color: white;
}

#hero {
  display: flex;
  width: 1920px;
  max-height: 951px;
  padding: 0px 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 55px;
}

#hero-background {
  background-image: url("public/images/cloud.png");
}

#big-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#big-logo img {
  max-width: 100%;
  /* Make the image responsive */
  height: auto;
  /* Maintain the aspect ratio */
}

#big-sky-hero-text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: transparent;
  font-size: 18px;
  font-weight: 200;
  width: 100%;
  border-radius: 10px;
  padding: 20px 0;
  cursor: pointer;
  color: white;
}

button:hover {
  border: 1px solid white;
}

a {
  color: white;
}


.sponsor-info a {
  color: black;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: block;
}

.sponsor-info img {
  box-shadow: none;
  border-radius: 0;
  padding: 3em;
  object-fit: contain;
}

.sponsor-blk-bg a {
  background-color: black;
}

.scroll-icon {
  height: 50px;
  width: 35px;
  border: 1px solid white;
  border-radius: 100px;
  padding: 5px 14px 20px 14px;
  box-sizing: border-box;
}

.scroll {
  height: 10px;
  width: 5px;
  border-radius: 10px;
  background-color: white;
}

.live-bar {
  background-color: #4f4f4f;
  color: white;
  overflow: hidden;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.live-bar .dot {
  display: inline-block;
  background-color: red;
  height: 10px;
  width: 10px;
  border-radius: 50%;
}

@media screen and (max-width: 1000px) {
  #navbar {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  #navbar .navbar-items {
    margin-top: 2em;
  }
}

@media screen and (max-width: 1100px) {
  #navbar {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  #navbar .navbar-items {
    margin-top: 2em;
  }

  .image-container.main-hero + div {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .image-container.main-hero + div > div {
    width: 100% !important;
    max-width: 800px !important;
  }

  .main-content-top {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .main-content-top > div {
    width: 100% !important;
    max-width: 800px !important;
  }

  .about-section {
    width: 100%;
    padding: 0 20px;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.5;
    padding: 0;
  }
}

.image-container.main-hero + div {
  position: relative;
}

.image-container.main-hero + div::after {
  display: none;
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #1E1E1E;
  transform: skewY(-3deg);
  z-index: 1;
}

.sponsors-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #1E1E1E;
  transform: skewY(3deg);
  z-index: 1;
}

.sponsor-cta {
  position: relative;
  background-color: #D6FF62;
  padding: 5em;
  margin: 0;
}

.sponsor-cta-top {
  position: relative;
  height: 100px;
  background: #D6FF62;
  transform: skewY(3deg);
  margin-bottom: -50px;
}

.sponsor-cta-bottom {
  position: relative;
  height: 100px;
  background: #D6FF62;
  transform: skewY(-3deg);
  margin-top: -50px;
}

.speakers-section {
  flex: 1;
  width: 100%;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.speakers-header {
  width: 100%;
  text-align: center;
}

.speakers-title {
  color: #EFEFEF;
  font-size: 72px;
  font-family: 'Jersey 15', Serif;
  font-weight: 500;
  line-height: 113.40px;
  word-wrap: break-word;
}

.speakers-title .bracket {
  color: #D6FF62;
}

.speaker-placeholder {
  text-align: center;
  color: #EFEFEF;
}

.speaker-placeholder img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.main-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5em 1em;
  background: #1E1E1E;
  gap: 40px;
}

.main-content-top {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.main-content-top > div {
  flex: 1;
}

.speakers-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width: 1100px) {
  .main-content-top {
    flex-direction: column;
    gap: 20px;
  }

  .main-content-top > div {
    width: 100%;
    max-width: 800px;
  }
}

.date-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.date-bracket {
  color: #D6FF62;
  font-size: 72px;
  font-family: 'Jersey 15', Serif;
  font-weight: 500;
  line-height: 113.40px;
  word-wrap: break-word;
}

.date-bracket.end {
  font-size: 84px;
}

.date-text {
  color: #EFEFEF;
  font-size: 72px;
  font-family: 'Jersey 15', Serif;
  font-weight: 500;
  line-height: 113.40px;
  word-wrap: break-word;
}

.calendar-button-container {
  align-self: stretch;
  margin: 50px 0;
  height: 72px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.calendar-button {
  padding: 24px 40px;
  background: #D6FF62;
  border-radius: 40px;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.calendar-button a {
  text-decoration: none;
  text-align: center;
  color: #1E1E1E;
  font-size: 18px;
  font-family: Source Code Pro;
  font-weight: 600;
  line-height: 24.30px;
  word-wrap: break-word;
}

.calendar-button a span {
  color: #1E1E1E;
  font-weight: 800;
}

.about-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sponsors-title {
  flex-grow: 1;
}

.sponsors-subtitle {
  flex-grow: 1;
  margin-bottom: 0;
  font-size: 50px;
}

.sponsors-bracket {
  color: #D6FF62;
  font-family: 'Jersey 15', Serif;
  font-weight: 500;
  word-wrap: break-word;
}

.sponsor-cta {
  padding: 5em;
  background-color: #D6FF62;
}

.sponsor-cta-title {
  padding-bottom: .5em;
  align-self: stretch;
  color: #3b324b;
  font-size: 80px;
  font-family: 'Jersey 15';
  font-weight: 400;
  line-height: 57.60px;
  word-wrap: break-word;
}

.sponsor-cta-text {
  padding-bottom: 1em;
  align-self: stretch;
  color: #3b324b;
  font-size: 24px;
  font-family: Source Code Pro;
  font-weight: 400;
  line-height: 32.40px;
  word-wrap: break-word;
}

.sponsor-cta-button {
  padding: 24px 40px;
  border-radius: 40px;
  border: 2px #3b324b solid;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.sponsor-cta-button a {
  text-align: center;
  color: #3b324b;
  font-size: 18px;
  font-family: Source Code Pro;
  font-weight: 600;
  line-height: 24.30px;
  word-wrap: break-word;
}

.sponsor-cta-button a span {
  color: #3b324b;
  font-weight: 800;
}

.social-section {
  width: 100%;
  height: 100%;
  margin-top: 50px;
  padding: 80px 120px;
  background: #1E1E1E;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.social-text {
  width: 100%;
  text-align: center;
  color: #EFEFEF;
  font-size: 24px;
  font-family: Source Code Pro;
  font-weight: 400;
  line-height: 32.40px;
  word-wrap: break-word;
}

.social-hashtag {
  width: 989px;
  text-align: center;
  color: #EFEFEF;
  font-size: 64px;
  font-family: Source Code Pro;
  font-weight: 500;
  line-height: 86.40px;
  word-wrap: break-word;
}

/* Common text styles */
.text-bracket {
  color: #D6FF62;
  font-family: 'Jersey 15', Serif;
  font-weight: 500;
  word-wrap: break-word;
}

.text-title {
  color: #EFEFEF;
  font-family: 'Jersey 15', Serif !important;
  font-weight: 500;
  line-height: 113.40px;
  word-wrap: break-word;
}

.text-body {
  color: #EFEFEF;
  font-family: Source Code Pro;
  font-weight: 400;
  line-height: 32.40px;
  word-wrap: break-word;
}

/* Layout containers */
.flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

/* Main content section */
.main-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5em 1em;
  background: #1E1E1E;
  gap: 40px;
}

.main-content > div {
  flex: 1;
}

/* Date section */
.date-bracket {
  font-size: 72px;
}

.date-bracket.end {
  font-size: 84px;
}

.date-text {
  font-size: 72px;
}

/* Calendar button */
.calendar-button-container {
  align-self: stretch;
  margin: 50px 0;
  height: 72px;
  gap: 10px;
}

.calendar-button {
  padding: 24px 40px;
  background: #D6FF62;
  border-radius: 40px;
  gap: 10px;
}

.calendar-button a {
  text-decoration: none;
  text-align: center;
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 600;
  line-height: 24.30px;
}

.calendar-button a span {
  font-weight: 800;
}

/* Sponsors section */
.sponsors-title {
  flex-grow: 1;
}

.sponsors-subtitle {
  flex-grow: 1;
  margin-bottom: 0;
  font-size: 50px;
}

.sponsor-cta {
  padding: 5em;
  background-color: #D6FF62;
}

.sponsor-cta-title {
  padding-bottom: .5em;
  align-self: stretch;
  color: #3b324b;
  font-size: 80px;
  font-family: 'Jersey 15';
  font-weight: 400;
  line-height: 57.60px;
}

.sponsor-cta-text {
  padding-bottom: 1em;
  align-self: stretch;
  color: #3b324b;
  font-size: 24px;
  line-height: 32.40px;
}

.sponsor-cta-button {
  padding: 24px 40px;
  border-radius: 40px;
  border: 2px #3b324b solid;
  gap: 10px;
}

.sponsor-cta-button a {
  text-align: center;
  color: #3b324b;
  font-size: 18px;
  font-weight: 600;
  line-height: 24.30px;
}

.sponsor-cta-button a span {
  font-weight: 800;
}

/* Social section */
.social-section {
  width: 100%;
  height: 100%;
  padding: 80px 120px;
  background: #1E1E1E;
}

.social-text {
  width: 100%;
  text-align: center;
  font-size: 24px;
}

.social-hashtag {
  width: 989px;
  text-align: center;
  font-size: 64px;
  font-weight: 500;
  line-height: 86.40px;
}

/* Speakers section */
.speakers-section {
  flex: 1;
  width: 100%;
  flex-grow: 1;
}

.speakers-header {
  width: 100%;
  text-align: center;
}

.speakers-title {
  font-size: 72px;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
}

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

.speaker-placeholder img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Remove all glitch effects */
.conference-text {
  position: relative;
}

.conference-text::before,
.conference-text::after {
  display: none;
}

.sponsors-title {
  position: relative;
}

.speakers-title {
  position: relative;
}

.sponsor-cta {
  position: relative;
  overflow: hidden;
}

.sponsor-cta-title {
  position: relative;
}

/* Remove hover animations */
.sponsor:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.calendar-button:hover {
  box-shadow: 0 6px 10px -5px rgba(0, 0, 50, 0.9);
  background-color: rgba(242, 242, 242, 0.4);
  transform: scale3d(-1, 1, 1);
}

/* Fix for the linter error */
.dev-con {
  margin: 0px;
  border-radius: 10px;
  /* only a little wider than content */
  width: fit-content;
}

/* Speaker cards */

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
}

@media screen and (max-width: 1200px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.speaker {
  background: linear-gradient(6deg, rgba(58, 50, 73, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%),
    url(https://bsdc.sfo2.cdn.digitaloceanspaces.com/glitch_bg2.gif);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 20px 18px -10px rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
  will-change: transform;
  transform: translateZ(0);
}

.speaker:hover {
  transform: scale(1.02) translateZ(0);
  z-index: 5;
}

.speaker img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
}

.speaker .speaker-name {
  font-family: "Jersey 15", serif;
  color: white;
  font-size: 1.8em;
  text-align: center;
}

.speaker .speaker-info {
  display: none;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 30, 30, 0.95);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 0.9em;
  line-height: 1.4;
  overflow-y: auto;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(4px);
}

.speaker:hover .speaker-info {
  display: block;
  visibility: visible;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.schedule-block {
  background: linear-gradient(90deg, rgba(70, 70, 70, 0.95) 0%, rgba(30,30,30,0) 90%);
  border-radius: 18px;
  box-shadow: 0 6px 24px -8px rgba(0,0,0,0.5);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 6px solid #D6FF62;
  position: relative;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

.schedule-block > .block-extra {
  display: none;
}
/* 
.schedule-block:hover > .block-extra {
  display: block;
} */




.schedule-block--speaker {
  background: linear-gradient(90deg, rgba(58,50,73,0.95) 0%, rgba(30,30,30,0) 90%);
}

.schedule-block:hover {
  box-shadow: 0 0 0 2px #D6FF62, 0 10px 24px -8px rgba(0,0,0,0.7);
  transform: translateY(-2px) translateZ(0);
  z-index: 2;
}

.block-time {
  font-family: 'Source Code Pro', monospace;
  color: #D6FF62;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.2em;
}

.block-title {
  font-family: 'Jersey 15', serif;
  color: #EFEFEF;
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 0.1em;
  line-height: 1.1;
}

.schedule-block .block-content {
  color: #bdbdbd;
  font-size: 1.1em;
  font-family: 'Source Code Pro', monospace;
  margin-top: 0.2em;
}

@media (max-width: 700px) {
  .schedule-list {
    padding: 1rem 0.5rem;
  }
  .schedule-block {
    padding: 1rem 1rem;
  }
  .block-title {
    font-size: 1.2em;
  }
}

.red-btn {
  background-color: #f02a2a !important;
  color: white !important;
}

.red-btn .dot {
  content: '';
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.livestream-btn {
  display: none;
  visibility: hidden;
}


.pixel-fireworks-container {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 9999;
  overflow: visible;
}
.pixel-firework {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  opacity: 1;
  will-change: transform, opacity;
  pointer-events: none;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Force hardware acceleration for fixed elements */
.fixed {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

