/* Mostbet Custom Styles */

.content-section {
  margin: 40px 0;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  overflow: hidden;
}

.entry {
  box-sizing: border-box;
  overflow: hidden;
}

.content-section h2,
.content-section h3,
.content-section h4 {
  color: #ffffff;
}

.content-section p,
.content-section li {
  color: #e0e0e0;
  line-height: 1.8;
}

.section-icon {
  font-size: 48px;
  color: #ff6b00;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 16px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
  border-radius: 10px;
  overflow: hidden;
}

.info-table thead tr {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  color: #ffffff;
  text-align: left;
}

.info-table th,
.info-table td {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.info-table tbody tr {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table tbody tr:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.08);
}

.info-table tbody tr:last-of-type {
  border-bottom: 2px solid #ff6b00;
}

.info-table tbody tr:hover {
  background: rgba(255, 107, 0, 0.1);
  transition: all 0.3s ease;
}

.step-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}

.step-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff6b00;
  position: relative;
  padding-left: 60px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step-list li:hover {
  background: rgba(255, 107, 0, 0.1);
  transform: translateX(5px);
}

.step-list li strong {
  color: #ffffff;
  font-size: 18px;
}

.step-list li p {
  color: #d0d0d0;
  margin: 8px 0 0 0;
}

.step-list li:before {
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 30px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.benefit-card {
  padding: 25px 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  box-sizing: border-box;
  width: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.benefit-card i {
  font-size: 40px;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.benefit-card h4 {
  color: #ffffff;
  margin: 10px 0;
  font-size: 20px;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
}

.progress-bar {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  overflow: hidden;
  margin: 15px 0;
  height: 30px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.3);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b00, #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  transition: width 1s ease;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 107, 0, 0.1);
}

.faq-question i {
  color: #ff6b00;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 20px;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d0d0d0;
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.payment-icon {
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 20px;
  transition: all 0.3s;
  color: #ffffff;
  font-weight: 500;
}

.payment-icon i {
  color: #ff6b00;
  margin-right: 8px;
}

.payment-icon:hover {
  border-color: #ff6b00;
  transform: scale(1.1);
  background: rgba(255, 107, 0, 0.1);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin: 30px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.stat-box {
  text-align: center;
  padding: 25px 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  box-sizing: border-box;
  width: 100%;
  max-width: 270px;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.stat-box i {
  font-size: 40px;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-number {
  font-size: 42px;
  font-weight: bold;
  margin: 10px 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-box div:last-child {
  font-size: 16px;
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.download-btn {
  padding: 20px 40px;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.download-btn:hover {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
}

.download-btn i {
  font-size: 24px;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(255, 234, 167, 0.15) 0%, rgba(253, 203, 110, 0.15) 100%);
  padding: 25px;
  border-radius: 12px;
  margin: 20px 0;
  border-left: 5px solid #ff6b00;
  border: 1px solid rgba(255, 107, 0, 0.3);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
}

.highlight-box h3 {
  color: #ff6b00;
  margin-top: 0;
  font-size: 22px;
}

.highlight-box p,
.highlight-box li {
  color: #e0e0e0;
}

.highlight-box ul {
  margin: 15px 0;
}

.highlight-box i {
  color: #ff6b00;
  margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .content-section {
    padding: 25px 15px;
  }
  .stat-box {
    padding: 20px 10px;
  }
  .stat-number {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

