@import url('https://fonts.googleapis.com/css?family=Press+Start+2P');

/* General */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Press Start 2P', cursive;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background: linear-gradient(135deg, #5e00d8, #7e30e3);
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.centered-section {
  text-align: center;
  padding: 50px 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

/* Navigation */
.logo {
  font-size: 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li:first-child {
  margin-left: 0;
}

nav ul li {
  display: inline;
  margin-left: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
}

nav a:hover {
  color: #ccc;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px; /* Adjust the font size to your liking */
    margin-bottom: 24px;
  }
  
  .countdown-item {
    margin: 0 10px;
  }
  
  .countdown-label {
    font-size: 12px; /* Adjust the font size to your liking */
    text-align: center;
  }

/* Schedule */
.schedule-table {
  margin: 0 auto;
  max-width: 800px;
  border-collapse: collapse;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.time {
    width: 25%;
    text-align: right;
    padding-right: 10px;
  }
  
  .event {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .event-name {
    flex-grow: 1;
    padding-left: 20px; /* Gap between time and event name */
    text-align: right;
  }

  .event-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: absolute;
    width: 100%;
    left: 25%;
    top: calc(100% + 10px);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    box-sizing: border-box;
    z-index: 1;
    opacity: 0; /* Add this line to hide the top part of the description */
  }
  

.chevron {
  display: inline-block;
  border-style: solid;
  border-width: 0.15em 0.15em 0 0;
  content: '';
  height: 12px;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 12px;
  margin-left: 20px; /* Gap between event name and chevron */
}

.chevron.open {
  transform: translateY(-50%) rotate(135deg);
}

/* Sponsors */
.sponsor-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.sponsor-logo {
  width: 160px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

/* Footer */
footer {
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #ccc;
}

/* Buttons */
.donate-button {
  background-color: #e91e63;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  padding: 10px 24px;
  margin: 10px 2px;
  cursor: pointer;
  border-radius: 4px;
}

.donate-button:hover {
  background-color: #c2185b;
}

.twitch-button {
  background-color: #6441a5;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  padding: 10px 24px;
  margin: 10px 2px;
  cursor: pointer;
  border-radius: 4px;
}

.twitch-button:hover {
  background-color: #8f70c7;
}

.youtube-button {
  background-color: #FF0000;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  padding: 10px 24px;
  margin: 10px 2px;
  cursor: pointer;
  border-radius: 4px;
}

.youtube-button:hover {
  background-color: #fd6363;
}

@media (max-width: 880px) {
  nav {
    flex-direction: column;
  }
  nav ul li {
    margin-left: 10px;
    font-size: 0.8rem;
}
   .logo {
      margin-bottom: 1.5rem
  }
}

.container p {
   text-align: left;
}