.page-esports-tournament-schedule {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A192F; /* Dark blue background */
}

.page-esports-tournament-schedule .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-esports-tournament-schedule .highlight {
  color: #FFD700; /* Gold for highlights */
}

.page-esports-tournament-schedule .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-esports-tournament-schedule .btn-primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-esports-tournament-schedule .btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-esports-tournament-schedule .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-esports-tournament-schedule .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-esports-tournament-schedule .btn-tertiary {
  background-color: #1a3459;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 10px;
}

.page-esports-tournament-schedule .btn-tertiary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Hero Section */
.page-esports-tournament-schedule .hero-section {
  background: linear-gradient(135deg, #0A192F, #1e3a6a);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-esports-tournament-schedule .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:esports,abstract,geometric,dark]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-esports-tournament-schedule .hero-section .container {
  position: relative;
  z-index: 1;
}

.page-esports-tournament-schedule .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-esports-tournament-schedule .hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-esports-tournament-schedule .hero-cta a {
  margin: 0 10px;
}

/* General Section Styles */
.page-esports-tournament-schedule section {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-esports-tournament-schedule section:nth-of-type(even) {
  background-color: #071324;
}

.page-esports-tournament-schedule .section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
}

.page-esports-tournament-schedule .section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 50px;
}

/* Intro Section */
.page-esports-tournament-schedule .intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-esports-tournament-schedule .intro-text {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-esports-tournament-schedule .intro-text p {
  margin-bottom: 15px;
}

.page-esports-tournament-schedule .intro-image {
  flex: 1;
  text-align: center;
}

.page-esports-tournament-schedule .intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Schedule Section */
.page-esports-tournament-schedule .schedule-filters {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.page-esports-tournament-schedule .filter-btn {
  background-color: #1a3459;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1em;
  transition: all 0.3s ease;
}

.page-esports-tournament-schedule .filter-btn:hover,
.page-esports-tournament-schedule .filter-btn.active {
  background-color: #FFD700;
  color: #0A192F;
}

.page-esports-tournament-schedule .schedule-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-esports-tournament-schedule .schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px; /* Ensure table is wide enough on smaller screens */
}

.page-esports-tournament-schedule .schedule-table th,
.page-esports-tournament-schedule .schedule-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #1a3459;
}

.page-esports-tournament-schedule .schedule-table th {
  background-color: #1a3459;
  color: #FFD700;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9em;
}

.page-esports-tournament-schedule .schedule-table tbody tr {
  background-color: #0A192F;
  color: #E0E0E0;
}

.page-esports-tournament-schedule .schedule-table tbody tr:nth-child(even) {
  background-color: #071324;
}

.page-esports-tournament-schedule .schedule-table tbody tr:hover {
  background-color: #1e3a6a;
}

.page-esports-tournament-schedule .bet-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-esports-tournament-schedule .bet-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-esports-tournament-schedule .cta-download-app {
  background-color: #1a3459;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #E0E0E0;
  font-size: 1.2em;
}

.page-esports-tournament-schedule .cta-download-app p {
  margin-bottom: 20px;
}

/* Why Choose Us Section */
.page-esports-tournament-schedule .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-esports-tournament-schedule .feature-item {
  background-color: #071324;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-esports-tournament-schedule .feature-item:hover {
  transform: translateY(-5px);
}

.page-esports-tournament-schedule .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-esports-tournament-schedule .feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-esports-tournament-schedule .feature-item p {
  color: #B0B0B0;
  line-height: 1.6;
}

/* How to Bet Section */
.page-esports-tournament-schedule .step-by-step-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-esports-tournament-schedule .step-item {
  background-color: #071324;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-esports-tournament-schedule .step-item .step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #FFD700;
  color: #0A192F;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  z-index: 1;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-esports-tournament-schedule .step-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-esports-tournament-schedule .step-item p {
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-esports-tournament-schedule .step-item p a {
  color: #FFD700;
  text-decoration: none;
}

.page-esports-tournament-schedule .step-item p a:hover {
  text-decoration: underline;
}

.page-esports-tournament-schedule .step-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
}

/* FAQ Section */
.page-esports-tournament-schedule .faq-section {
  background-color: #071324;
}

.page-esports-tournament-schedule .faq-accordion {
  margin-top: 40px;
}

.page-esports-tournament-schedule .accordion-item {
  margin-bottom: 15px;
  background-color: #0A192F;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-esports-tournament-schedule .accordion-header {
  width: 100%;
  background-color: #1a3459;
  color: #FFD700;
  padding: 18px 25px;
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-esports-tournament-schedule .accordion-header:hover {
  background-color: #2a4c7e;
}

.page-esports-tournament-schedule .accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-esports-tournament-schedule .accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-esports-tournament-schedule .accordion-content {
  padding: 0 25px;
  background-color: #0A192F;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-esports-tournament-schedule .accordion-content.open {
  max-height: 500px; /* Adjust based on expected content height */
  padding: 15px 25px;
}

.page-esports-tournament-schedule .accordion-content p {
  color: #E0E0E0;
  line-height: 1.7;
  margin-bottom: 10px;
}

.page-esports-tournament-schedule .accordion-content a {
  color: #FFD700;
  text-decoration: none;
}

.page-esports-tournament-schedule .accordion-content a:hover {
  text-decoration: underline;
}

/* Responsible Gambling Section */
.page-esports-tournament-schedule .responsible-gambling-section {
  background-color: #0A192F;
  text-align: center;
}

.page-esports-tournament-schedule .responsible-gambling-section p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  color: #B0B0B0;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-esports-tournament-schedule .hero-title {
    font-size: 2.8em;
  }
  .page-esports-tournament-schedule .hero-description {
    font-size: 1.2em;
  }
  .page-esports-tournament-schedule .intro-content {
    flex-direction: column;
    text-align: center;
  }
  .page-esports-tournament-schedule .intro-image {
    margin-top: 30px;
  }
  .page-esports-tournament-schedule .features-grid,
  .page-esports-tournament-schedule .step-by-step-guide {
    grid-template-columns: 1fr;
  }
  .page-esports-tournament-schedule .schedule-table-wrapper {
    overflow-x: scroll;
  }
}

@media (max-width: 768px) {
  .page-esports-tournament-schedule .hero-section {
    padding: 80px 0;
  }
  .page-esports-tournament-schedule .hero-title {
    font-size: 2.2em;
  }
  .page-esports-tournament-schedule .hero-description {
    font-size: 1em;
  }
  .page-esports-tournament-schedule .hero-cta a {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .page-esports-tournament-schedule .btn-secondary {
    margin-left: 0;
  }
  .page-esports-tournament-schedule .section-title {
    font-size: 2em;
  }
  .page-esports-tournament-schedule .section-subtitle {
    font-size: 1em;
  }
  .page-esports-tournament-schedule .schedule-filters {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
  }
  .page-esports-tournament-schedule .schedule-filters::-webkit-scrollbar {
    height: 5px;
  }
  .page-esports-tournament-schedule .schedule-filters::-webkit-scrollbar-track {
    background: #071324;
  }
  .page-esports-tournament-schedule .schedule-filters::-webkit-scrollbar-thumb {
    background: #1a3459;
    border-radius: 5px;
  }
  .page-esports-tournament-schedule .accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-esports-tournament-schedule .accordion-content {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-esports-tournament-schedule .hero-title {
    font-size: 1.8em;
  }
  .page-esports-tournament-schedule .section-title {
    font-size: 1.8em;
  }
  .page-esports-tournament-schedule .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}