body {
  background-color: #000;
  margin: 0 50px;
}
.gradient-hr {
  border: 0;
  height: 4px;
  background: linear-gradient(to right, #ff0000, #00ff00, #ffff00);
  border-radius: 10px;
  opacity: 0.8;
}

/* main banner  */

.goexchange-banner-section {
  background-color: #0f0f0f;
  color: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.goexchange-banner-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.goexchange-text {
  flex: 1 1 500px;
}

.goexchange-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f0ad4e;
}

.goexchange-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.goexchange-image {
  flex: 1 1 300px;
  text-align: center;
  border: 5px solid #62e709;
  border-radius: 15px;
  
}

.goexchange-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .goexchange-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .goexchange-text h1 {
    font-size: 2rem;
  }
}

.goexchange-info-section {
  background-color: #0f0f0f;
  color: #fff;
  padding: 60px 20px;
}

.goexchange-info-container {
  max-width: 1500px;
  margin: 0 auto;
}

.goexchange-info-heading {
  font-size: 2rem;
  color: #f0ad4e;
  margin-bottom: 20px;
}

.goexchange-info-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Registration */
.goexchange-steps-section {
  background-color: #0f0f0f;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid #bdf04e;
  border-radius: 5px;
}

.goexchange-steps-title {
  font-size: 2.2rem;
  color: #f0ad4e;
  margin-bottom: 40px;
}

.goexchange-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1500px;
  margin: 0 auto;
}

.goexchange-step-card {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2b2b2b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.goexchange-step-card h3 {
  color: #ffc107;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.goexchange-step-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.goexchange-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.goexchange-id-process {
  background-color: #0f0f0f;
  color: #fff;
  padding: 20px;
  text-align: center;
  max-width: 1500px;
}

.goexchange-id-title {
  font-size: 2.2rem;
  color: #f0ad4e;
  margin-bottom: 20px;
}

.goexchange-id-subtext {
  font-size: 1.1rem;
  max-width: 1500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.goexchange-id-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.goexchange-id-step-card {
  background-color: #1a1a1a;
  padding: 25px 20px;
  border-radius: 10px;
  width: 300px;
  transition: 0.3s ease;
  border: 1px solid #292929;
  text-align: left;
}

.goexchange-id-step-card h3 {
  color: #ffc107;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.goexchange-id-step-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.goexchange-id-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 18px rgba(255, 193, 7, 0.15);
}

@media (max-width: 768px) {
  .goexchange-id-step-card {
    width: 100%;
  }
}

.goexchange-benefits-section {
  background-color: #0f0f0f;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.goexchange-benefits-title {
  font-size: 2.2rem;
  color: #f0ad4e;
  margin-bottom: 15px;
}

.goexchange-benefits-subtext {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.goexchange-benefits-wrapper {
  overflow-x: auto;
}

.goexchange-benefits-table {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 1px solid #333;
  background-color: #1a1a1a;
}

.goexchange-benefits-table thead th {
  background-color: #292929;
  color: #ffc107;
  font-size: 1.2rem;
  padding: 16px;
  border-bottom: 2px solid #555;
  text-align: left;
  border-right: 1px solid #444;
}

.goexchange-benefits-table thead th:last-child {
  border-right: none;
}

.goexchange-benefits-table tbody td {
  padding: 14px 16px;
  font-size: 1rem;
  border-bottom: 1px solid #444;
  text-align: left;
  border-right: 1px solid #333;
}

.goexchange-benefits-table tbody td:last-child {
  border-right: none;
}

.goexchange-benefits-table tbody tr:hover {
  background-color: #242424;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .goexchange-benefits-table thead {
    display: none;
  }

  .goexchange-benefits-table tbody td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px;
    border-bottom: none;
  }

  .goexchange-benefits-table tbody tr {
    margin-bottom: 20px;
    display: block;
    background-color: #1a1a1a;
    border: 1px solid #c91a1a;
    border-radius: 6px;
    padding: 10px;
  }

  .goexchange-benefits-table tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #ffc107;
    display: block;
    margin-bottom: 6px;
  }
}

.goexchange-bonus-section {
  background-color: #0f0f0f;
  padding: 60px 20px;
  color: #fff;
}

.goexchange-bonus-container {
  max-width: 1500px;
  margin: 0 auto;
}

.goexchange-bonus-heading {
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 20px;
  text-align: center;
}

.goexchange-bonus-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

.goexchange-bonus-table-wrapper {
  overflow-x: auto;
}

.goexchange-bonus-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1c1c1c;
  border: 1px solid #444;
  border-radius: 8px;
  overflow: hidden;
}

.goexchange-bonus-table th,
.goexchange-bonus-table td {
  padding: 15px 20px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #333;
}

.goexchange-bonus-table th {
  background-color: #292929;
  color: #f0ad4e;
}

.goexchange-bonus-table td {
  color: #ddd;
}

.goexchange-bonus-table tr:hover {
  background-color: #2a2a2a;
}

.trusted-goexchange-section {
  background-color: #0f0f0f;
  padding: 60px 20px;
  color: #fff;
  max-width: 1500px;
}

.trusted-goexchange-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trusted-goexchange-heading {
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 10px;
}

.trusted-goexchange-subheading {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.trusted-goexchange-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.trusted-feature-card {
  background-color: #1a1a1a;
  border: 1px solid #292929;
  padding: 25px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.trusted-feature-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(to bottom right, #111, #222);
  border-color: #ffc107;
}

.trusted-feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #f0ad4e;
}

.trusted-feature-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}

.trusted-feature-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
}

.cricket-tournaments-section {
  background-color: #0f0f0f;
  padding: 20px;
  color: #fff;
  max-width: 1500px;
  margin: 0 auto;
}

.cricket-tournaments-container {
  max-width: 1500px;
  margin: 0 auto;
}

.cricket-tournaments-heading {
  font-size: 2rem;
  color: #ffc107;
  text-align: center;
  margin-bottom: 30px;
}

.cricket-tournaments-table-wrapper {
  overflow-x: auto;
}

.cricket-tournaments-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}

.cricket-tournaments-table thead {
  background: linear-gradient(to right, #ff4d4d, #ffc107, #28a745);
  color: #000;
}

.cricket-tournaments-table th,
.cricket-tournaments-table td {
  padding: 15px 20px;
  text-align: left;
  font-size: 1rem;
}

.cricket-tournaments-table tbody tr:nth-child(even) {
  background-color: #1a1a1a;
}

.cricket-tournaments-table tbody tr:nth-child(odd) {
  background-color: #121212;
}

.cricket-tournaments-table td {
  color: #ddd;
}

@media (max-width: 768px) {
  .cricket-tournaments-heading {
    font-size: 1.6rem;
  }

  .cricket-tournaments-table th,
  .cricket-tournaments-table td {
    font-size: 0.95rem;
    padding: 12px 16px;
  }
}


.betting-tips-section {
  background-color: #0f0f0f;
  color: #fff;
  padding: 60px 20px;
}

.betting-tips-container {
  max-width: 1500px;
  margin: 0 auto;
}

.betting-tips-heading {
  text-align: center;
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 40px;
}

.betting-tip {
  background-color: #1a1a1a;
  border-left: 6px solid #ffc107;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.betting-tip:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(255, 193, 7, 0.3);
}

.betting-tip h3 {
  color: #f0ad4e;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.betting-tip p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ccc;
}

@media (max-width: 768px) {
  .betting-tips-heading {
    font-size: 1.6rem;
  }

  .betting-tip h3 {
    font-size: 1.2rem;
  }

  .betting-tip p {
    font-size: 1rem;
  }
}



.goexchange-id-section {
  background-color: #0f0f0f;
  color: #fff;
  padding: 60px 20px;
  border-bottom: 5px solid #0cc9e2;
  border-radius: 5px;

}

.goexchange-id-container {
  max-width: 1500px;
  margin: 0 auto;
}

.goexchange-id-heading {
  font-size: 2rem;
  color: #ffc107;
  text-align: center;
  margin-bottom: 10px;
}

.goexchange-id-subheading {
  text-align: center;
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
}

.goexchange-id-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #ccc;
}

@media (max-width: 768px) {
  .goexchange-id-heading {
    font-size: 1.7rem;
  }

  .goexchange-id-subheading {
    font-size: 1rem;
  }

  .goexchange-id-content p {
    font-size: 1rem;
  }
}



.goexchange-conclusion-section {
  background-color: #111;
  color: #fff;
  padding: 50px 20px;
  border-top: 4px solid;
  border-image: linear-gradient(to right, #ff4d4d, #ffc107, #28a745) 1;
  margin-top: 40px;
}

.goexchange-conclusion-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.goexchange-conclusion-heading {
  font-size: 2rem;
  color: #f0ad4e;
  margin-bottom: 20px;
}

.goexchange-conclusion-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .goexchange-conclusion-heading {
    font-size: 1.6rem;
  }

  .goexchange-conclusion-text {
    font-size: 1rem;
  }
}



.goexchange-faq-accordion-section {
  background-color: #0f0f0f;
  color: #fff;
  padding: 60px 20px;
  border-top: 4px solid;
  border-image: linear-gradient(to right, #ff4d4d, #ffc107, #28a745) 1;
}

.goexchange-faq-accordion-container {
  max-width: 1500px;
  margin: auto;
}

.goexchange-faq-heading {
  font-size: 2rem;
  color: #f0ad4e;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: none;
  color: #fff;
  font-size: 1.2rem;
  text-align: left;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #ffc107;
  transition: transform 0.2s ease;
}

.faq-answer {
  padding: 0 20px 15px;
  display: none;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ccc;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  content: "-";
}
