#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: 20px;
  padding-bottom: 20px;
}

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

.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;
}

/* Match Winner Logo Styling */
.mana-cc-match-status {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 8px 15px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 8px;
}

.match-winner-logo {
  max-height: 60px;
  max-width: 150px;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.match-winner-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

@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-match-status {
    margin-top: 10px;
    width: 100%;
    justify-content: flex-start;
  }

  .match-winner-logo {
    max-height: 50px;
    max-width: 120px;
  }
}


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

.mana-cc-about-content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}

.mana-cc-about-text-section {
  flex: 1;
  text-align: left;
}

.mana-cc-about-image-section {
  flex: 0 0 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.mana-cc-about-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.about-logo-image {
  width: 250px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.about-logo-image:hover {
  transform: scale(1.05);
}

.mana-cc-about-header {
  margin: 10px 0 10px 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) {
  .about-logo-image {
    width: 180px;
  }

  .mana-cc-about-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .mana-cc-about-text-section {
    text-align: center;
  }

  .mana-cc-about-image-section {
    flex: 1;
    width: 100%;
  }

  .about-us-image {
    max-width: 100%;
  }

  .mana-cc-about-header h2 {
    font-size: 2.5em;
  }
  .mana-cc-about-text-content p {
    font-size: 1em;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-logo-image {
    width: 150px;
  }
}