/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f8f8f8;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #7c0a02;
  padding: 15px 30px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.navbar ul li a.active,
.navbar ul li a:hover {
  text-decoration: underline;
}

.navbar-countdown .mini-timer {
  padding: 6px 12px;
  border-radius: 4px;
  text-align: center;
}

.navbar-countdown .timer-title {
  display: block;
  font-size: 0.8em;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  color: #fff;
  width: 100%;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

.hero .cta {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 24px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.hero .cta:hover {
  background: #ffd633;
}

/* Center Section with 3 Blocks */
.center-actions {
  display: flex;
  justify-content: space-between;
  padding: 40px 30px;
  gap: 20px;
}

.action-block {
  flex: 1;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-block a {
  padding: 12px 18px;
  background: #ffffffcc;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.action-block.right-block {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.right-block h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Accordion Section */
.accordion-section {
  padding: 50px 20px;
  max-width: 800px;
  margin: auto;
}

.accordion h2 {
  text-align: center;
  margin-bottom: 30px;
}

.accordion-btn {
  background-color: #7c0a02;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 16px;
  transition: background 0.3s;
  margin-bottom: 5px;
  border-radius: 5px;
}

.accordion-btn:hover {
  background-color: #9b1c1c;
}

.accordion-panel {
  padding: 15px;
  background-color: white;
  display: none;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

.accordion-panel p {
  margin: 0;
}

/* Page Sections */
.page-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.page-section iframe {
  margin-top: 20px;
  border-radius: 8px;
  border: 2px solid #ccc;
}

/* Countdown Section */
.countdown-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

#mainCountdown {
  font-size: 24px;
  margin-top: 10px;
  color: #7c0a02;
}

/* Footer */
footer {
  background: #7c0a02;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  margin-top: 30px;
}
