/* style/tools-odds-calculator.css */
.page-tools-odds-calculator {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-tools-odds-calculator__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-tools-odds-calculator__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 0 0 15px 15px;
  margin-bottom: 40px;
}

.page-tools-odds-calculator__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.page-tools-odds-calculator__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-tools-odds-calculator__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #212529;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-tools-odds-calculator__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-tools-odds-calculator__cta-button--secondary {
  background-color: #0056b3;
  color: #fff;
}

.page-tools-odds-calculator__cta-button--secondary:hover {
  background-color: #004085;
}

.page-tools-odds-calculator__section {
  padding: 60px 0;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-tools-odds-calculator__section:nth-of-type(even) {
  background-color: #f0f4f7;
}

.page-tools-odds-calculator__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-tools-odds-calculator__text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 25px;
  color: #555;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-tools-odds-calculator__calculator-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 40px auto;
}

.page-tools-odds-calculator__input-group {
  margin-bottom: 25px;
}

.page-tools-odds-calculator__label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
  font-size: 1em;
}

.page-tools-odds-calculator__select,
.page-tools-odds-calculator__input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 1em;
  color: #495057;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-tools-odds-calculator__select:focus,
.page-tools-odds-calculator__input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-tools-odds-calculator__button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-tools-odds-calculator__button {
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-tools-odds-calculator__button--primary {
  background-color: #007bff;
  color: #fff;
}

.page-tools-odds-calculator__button--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-tools-odds-calculator__button--secondary {
  background-color: #6c757d;
  color: #fff;
}

.page-tools-odds-calculator__button--secondary:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
}

.page-tools-odds-calculator__results {
  background-color: #e9f7ff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #cceeff;
  text-align: left;
}

.page-tools-odds-calculator__results-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
}

.page-tools-odds-calculator__result-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333;
}

.page-tools-odds-calculator__result-value {
  font-weight: bold;
  color: #28a745;
}

.page-tools-odds-calculator__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-tools-odds-calculator__benefit-card,
.page-tools-odds-calculator__odds-type-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #ffc107;
}

.page-tools-odds-calculator__benefit-card:hover,
.page-tools-odds-calculator__odds-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-tools-odds-calculator__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #007bff;
}

.page-tools-odds-calculator__card-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-tools-odds-calculator__ordered-list,
.page-tools-odds-calculator__unordered-list {
  list-style-type: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-tools-odds-calculator__ordered-list li,
.page-tools-odds-calculator__unordered-list li {
  background-color: #f0f8ff;
  border-left: 5px solid #007bff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-tools-odds-calculator__ordered-list li strong {
  color: #0056b3;
}

.page-tools-odds-calculator__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-tools-odds-calculator__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-tools-odds-calculator__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffc107;
}

.page-tools-odds-calculator__faq-question.active::after {
  content: '-';
}

.page-tools-odds-calculator__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  margin-top: 10px;
}

.page-tools-odds-calculator__faq-answer.active {
  display: block;
}

.page-tools-odds-calculator__faq-item a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-tools-odds-calculator__faq-item a:hover {
  text-decoration: underline;
}

.page-tools-odds-calculator__cta-bottom {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 15px 15px 0 0;
}

.page-tools-odds-calculator__cta-container {
  max-width: 900px;
}

.page-tools-odds-calculator__cta-bottom .page-tools-odds-calculator__section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-tools-odds-calculator__cta-bottom .page-tools-odds-calculator__text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.page-tools-odds-calculator__highlight {
  color: #ffc107;
  font-weight: bold;
}

.page-tools-odds-calculator__image-illustration {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-tools-odds-calculator__hero {
    padding: 60px 0;
  }

  .page-tools-odds-calculator__title {
    font-size: 2em;
  }

  .page-tools-odds-calculator__subtitle {
    font-size: 1em;
  }

  .page-tools-odds-calculator__section-title {
    font-size: 1.8em;
  }

  .page-tools-odds-calculator__calculator-card {
    padding: 25px;
  }

  .page-tools-odds-calculator__button-group {
    flex-direction: column;
  }

  .page-tools-odds-calculator__button {
    width: 100%;
  }

  .page-tools-odds-calculator__grid {
    grid-template-columns: 1fr;
  }

  .page-tools-odds-calculator__benefit-card, 
  .page-tools-odds-calculator__odds-type-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-tools-odds-calculator__hero {
    padding: 40px 0;
  }

  .page-tools-odds-calculator__title {
    font-size: 1.8em;
  }

  .page-tools-odds-calculator__section-title {
    font-size: 1.5em;
  }

  .page-tools-odds-calculator__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-tools-odds-calculator__text,
  .page-tools-odds-calculator__result-item,
  .page-tools-odds-calculator__ordered-list li,
  .page-tools-odds-calculator__unordered-list li,
  .page-tools-odds-calculator__faq-answer {
    font-size: 0.95em;
  }
}