/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

.game-section {
  padding: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.game-section h1 {
  color: #000000;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-decoration: underline red;
}

.game-section h2 {
  font-size: 2rem;
  color: #020101;
  margin-top: 30px;
  margin-bottom: 15px;
  text-decoration: underline rgb(231, 188, 188);
}

.game-section h3 {
  font-size: 1.3rem;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  text-decoration: underline rgb(255, 0, 0);
}

.game-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.game-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.game-section ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Info Section */
.info-section {
  margin-top: 20px;
}

.info-box {
  margin: 15px 0;
  padding: 20px;
  background-color: #fff;
  border: 2px solid #ff0000;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

strong {
  color: #ff0000;
}

.footer {
  background-color: #ff0000;
  color: white;
  padding: 30px 0;
  border-top: 2px solid crimson;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-left,
.sib-form {
  flex: 1;
  max-width: 500px;
}

.footer-left {
  background-color: #222;
  color: white;
  padding: 20px;
  border-radius: 10px;
}

.footer-left h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #ff1919;
  border-bottom: 2px solid #ff1919;
  padding-bottom: 5px;
}

.footer-left p,
.footer-left a {
  font-size: 1.1em;
  color: white;
  line-height: 1.6;
  margin: 8px 0;
  text-decoration: none;
}

.footer-left a:hover {
  color: #ff1919;
  text-decoration: underline;
}

/* LinkedIn Icon Styling */
.linkedin-link {
  display: flex;
  align-items: center;
}

.linkedin-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
}

.footer-bottom p {
  font-size: 1.2em;
  color: white;
  margin-bottom: 20px;
}

.map-container iframe {
  border-radius: 10px;
  width: 100%;
}

/* Newsletter Form */
.sib-form {
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-logo {
  width: 100px;
  margin-bottom: 15px;
}

.newsletter-title {
  font-size: 24px;
  font-weight: bold;
  color: #ff1919;
  margin-bottom: 5px;
}

.newsletter-subtitle {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.sib-form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.sib-form-block__button {
  background-color: #ff1919;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.sib-form-block__button:hover {
  background-color: #b30000;
}

/* Checkbox Styling */
.checkbox-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 10px;
}

.checkbox-label {
  font-size: 0.9em;
  color: #333;
}

/* Section Reveal Animation */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin-bottom: 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .map-container iframe {
    height: 250px;
  }
}

.black {
  color: black;
}

/* Fighter Attire Section */
.fighter-attire-section {
  margin: 30px auto;
  padding: 20px;
  max-width: 1000px;
  background-color: #ffffff;
  border: 2px solid #ff0000;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fighter-attire-section h2 {
  font-size: 2rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.attire-box {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.attire-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.attire-box strong {
  color: #ff0000;
}
/* Fouls Section */
.fouls-section {
  margin: 30px auto;
  padding: 20px;
  max-width: 1000px;
  background-color: #ffffff;
  border: 2px solid #ff0000;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fouls-section h2 {
  font-size: 2rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.fouls-box {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fouls-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}

.fouls-box strong {
  color: #ff0000;
}

.penalty {
  color: #333;
  text-decoration: underline red;
}

/* Campaign Mode Section */
.campaign-mode-section {
  margin: 30px auto;
  padding: 40px;
  max-width: 1200px;
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
  border: 2px solid #ff0000;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.campaign-mode-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.campaign-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.campaign-feature {
  background-color: #ffffff;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.campaign-feature h3 {
  font-size: 1.8rem;
  color: #ff0000;
  margin-bottom: 15px;
  text-decoration: underline;
  font-weight: bold;
}

.campaign-feature p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}

.campaign-feature strong {
  color: #ff0000;
}

/* Responsive Design for Campaign Section */
@media (max-width: 768px) {
  .campaign-mode-section {
    padding: 20px;
  }

  .campaign-mode-section h2 {
    font-size: 2rem;
  }

  .campaign-feature {
    padding: 15px;
  }

  .campaign-feature h3 {
    font-size: 1.6rem;
  }

  .campaign-feature p {
    font-size: 1rem;
  }
}
/* Fighting Styles Section */
.fighting-styles-section {
  margin: 30px auto;
  padding: 40px;
  max-width: 1200px;
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
  border: 2px solid #ff0000;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.fighting-styles-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fighting-styles-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fighting-style {
  background-color: #ffffff;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.fighting-style p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  text-align: justify;
}

.fighting-style strong {
  color: #ff0000;
  font-weight: bold;
}

.info-button {
  margin-left: 20px;
  background-color: #ff0000;
  color: #ffffff;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.info-button:hover {
  background-color: #d32f2f;
}

/* Responsive Design for Fighting Styles */
@media (max-width: 768px) {
  .fighting-styles-section {
    padding: 20px;
  }

  .fighting-styles-section h2 {
    font-size: 2rem;
  }

  .fighting-style p {
    font-size: 1rem;
  }

  .info-button {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

/* Game Rules Section */
.game-rules-section {
  margin: 30px auto;
  padding: 40px;
  max-width: 1200px;
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
  border: 2px solid #ff0000;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.game-rules-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rules-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.rule {
  background-color: #ffffff;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.rule h3 {
  font-size: 1.8rem;
  color: #ff0000;
  margin-bottom: 15px;
}

.rule p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  margin-bottom: 10px;
}

.rule strong {
  color: #ff0000;
  font-weight: bold;
}

/* Responsive Design for Game Rules */
@media (max-width: 768px) {
  .game-rules-section {
    padding: 20px;
  }

  .game-rules-section h2 {
    font-size: 2rem;
  }

  .rule h3 {
    font-size: 1.5rem;
  }

  .rule p {
    font-size: 1rem;
  }
}

/* Multiplayer Section */
.multiplayer-section {
  margin: 50px auto;
  padding: 40px;
  max-width: 1200px;
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
  border: 2px solid #ff0000;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.multiplayer-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.multiplayer-container,
.all-stars-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.multiplayer-feature,
.all-stars-feature {
  flex: 1 1 calc(50% - 20px); /* Each feature takes 50% width with gap */
  background-color: #ffffff;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.multiplayer-feature h3,
.all-stars-feature h3 {
  font-size: 1.8rem;
  color: #ff0000;
  margin-bottom: 15px;
}

.multiplayer-feature p,
.all-stars-feature p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.multiplayer-feature p strong,
.all-stars-feature p strong {
  color: #ff0000;
}

/* Responsive Design for Multiplayer */
@media (max-width: 768px) {
  .multiplayer-feature,
  .all-stars-feature {
    flex: 1 1 100%; /* Full width on smaller screens */
  }
}

/* Release Information Section */
.release-info-section {
  margin: 50px auto;
  padding: 40px;
  max-width: 900px;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
  border: 2px solid #ff0000;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.release-info-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.release-info-container {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

.release-info-container p {
  margin-bottom: 20px;
  text-align: justify;
}

.release-info-container strong {
  color: #ff0000;
}

#title {
  color: #ff0000;
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

#black {
  color: black;
}

/* Weight Classes Section Styles */
.weight-classes-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #ff4d4d);
  border-radius: 15px;
  color: #fff;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.weight-classes-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: underline white;
}

/* Card Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual Card */
.card {
  background: #fff;
  color: #ff0000;
  border: 2px solid #000000;
  border-radius: 15px;
  padding: 30px 15px;
  width: 200px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card h3 {
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.card p {
  font-size: 0.7rem;
  font-weight: bold;
  color: #333;
}

/* Hover Effects */
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: #ff0000;
  color: #ffd700;
}

.card:hover h3,
.card:hover p {
  color: #ffd700;

  /* Responsive Design */
  @media (max-width: 768px) {
    .weight-classes-section h2 {
      font-size: 2rem;
    }

    .card-container {
      gap: 20px;
    }

    .card {
      width: 150px;
      padding: 15px;
    }

    .card h3 {
      font-size: 1.3rem;
    }

    .card p {
      font-size: 0.9rem;
    }
  }
}
