#mana-cc-schedule-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f2f5;
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

.mana-cc-container {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  color: #333;
  text-align: center;
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.mana-cc-header {
  margin-bottom: 50px;
}

.mana-cc-header h2 {
  font-size: 3.5em;
  font-weight: 800;
  margin-bottom: 5px;
  color: #1a237e;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.mana-cc-header p {
  font-size: 1.3em;
  margin-bottom: 0;
  color: #555;
}

.mana-cc-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mana-cc-schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.mana-cc-schedule-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mana-cc-match-date {
  font-size: 1.1em;
  font-weight: bold;
  color: #1a237e;
  flex-basis: 20%;
  text-align: left;
}

.mana-cc-match-stage {
  font-size: 1.3em;
  font-weight: 600;
  color: #333;
  flex-grow: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mana-cc-ticket-button {
  background-color: #e6e6fa;
  color: #1a237e;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mana-cc-ticket-button i {
  font-size: 1em;
  color: #1a237e;
}

.mana-cc-ticket-button:hover {
  background-color: #ccccff;
  color: #0d1252;
}

@media (max-width: 768px) {
  .mana-cc-header h2 {
    font-size: 2.5em;
  }
  .mana-cc-header p {
    font-size: 1em;
  }
  .mana-cc-schedule-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }
  .mana-cc-match-date,
  .mana-cc-match-stage {
    text-align: left;
    margin-bottom: 5px;
  }
  .mana-cc-ticket-button {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
}


.mana-cc-about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 5%; /* Adds horizontal padding to prevent text from touching screen edges */
  padding-top: 150px;
  padding-bottom: 150px;
}

.mana-cc-about-header {
  margin: 80px 0 40px 0;
}

.mana-cc-about-header h2 {
   font-family: 'Oswald', sans-serif; /* Changed to Oswald */
  font-size: 4em;
  font-weight: 700; /* Adjusted to a suitable weight for Oswald */
  color: #1a237e;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.mana-cc-about-text-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  color: #1a237e; /* Changed color to blue */
  text-align: center;
  margin-bottom: 20px;
}

.mana-cc-about-text-content {
  line-height: 1.8;
  margin: 0 auto;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .mana-cc-about-header h2 {
    font-size: 2.5em;
  }
  .mana-cc-about-text-content p {
    font-size: 1em;
  }
}