body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background-color: #fff;
  color: #000;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.tickets-link {
  color: #fff;
  background-color: red;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.tickets-link:hover {
  text-decoration: underline;
}

.hamburger-menu {
  font-size: 2rem;
  cursor: pointer;
}

main {
  padding: 20px;
}

video {
  width: 100%;
  max-height: 400px;
}

/* Sponsors Section */
.sponsors-section {
  background-color: #0F3557;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.sponsors-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.sponsors-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.sponsors-section .download-button {
  background-color: #C49A6C;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.sponsors-section .download-button:hover {
  background-color: #fff;
  color: #0F3557;
  border: 2px solid #C49A6C;
}

/* Countdown Section */
.countdown-section {
  background-color: #f5f5f5;
  padding: 40px 20px;
  margin-top: 20px;
  text-align: center;
}

.countdown-section .container {
  max-width: 600px;
  margin: 0 auto;
}

.chronos-logo img {
  max-width: 200px;
  margin-bottom: 20px;
}

.countdown-timer h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

#countdown {
  display: flex;
  justify-content: space-around;
}

.time-box {
  background-color: #C49A6C;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  border: 2px solid #0F3557;
  text-align: center;
}

.time-box span {
  font-size: 1.5rem;
  font-weight: bold;
}

.time-box small {
  font-size: 0.8rem;
}

.call-to-action img {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

/* Box Section */
.box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.box {
  flex: 1 1 calc(33.333% - 20px);
  padding: 15px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}

.box a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.box h3 {
  margin: 10px 0;
  font-size: 1.25rem;
}

.box p {
  color: #555;
}

footer {
  background-color: #f1f1f1;
  padding: 20px;
  text-align: center;
}

footer a {
  color: #333;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}
