/* style/reliable-betting-site.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f1f3f5;
  --bg-white: #ffffff;
  --border-light: #e0e0e0;
}

.page-reliable-betting-site {
  color: var(--text-light); /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-reliable-betting-site__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-reliable-betting-site__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-reliable-betting-site__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  background: var(--primary-color);
  color: var(--text-light);
  box-sizing: border-box;
}

.page-reliable-betting-site__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-reliable-betting-site__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-reliable-betting-site__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-reliable-betting-site__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-reliable-betting-site__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-reliable-betting-site__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-reliable-betting-site__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-reliable-betting-site__cta-button:hover {
  background: #f0c94b; /* Slightly darker yellow */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-reliable-betting-site__game-leaderboard-section {
  padding: 60px 20px;
  background: var(--bg-light);
  color: var(--text-dark);
  text-align: center;
}

.page-reliable-betting-site__page-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-reliable-betting-site__game-leaderboard {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-reliable-betting-site__game-card {
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-reliable-betting-site__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-reliable-betting-site__game-card-segment {
  padding: 0 20px;
  border-left: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%; /* Ensure segments have equal height */
}

.page-reliable-betting-site__segment-1 {
  border-left: none; /* No left border for the first segment */
  padding-left: 0;
  width: 150px; /* Fixed width for icon and badge */
  flex-shrink: 0;
  position: relative;
}

.page-reliable-betting-site__segment-2 {
  flex: 1; /* Main content column, takes available space */
}

.page-reliable-betting-site__segment-3 {
  width: 180px; /* Fixed width for rating and promo text */
  flex-shrink: 0;
}

.page-reliable-betting-site__segment-4 {
  width: 220px; /* Fixed width for buttons */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 0;
}

.page-reliable-betting-site__rank-badge {
  position: absolute;
  top: -10px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8c42); /* Default orange for ranks 4+ */
  color: var(--text-light);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-reliable-betting-site__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold */
}

.page-reliable-betting-site__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0); /* Silver */
}

.page-reliable-betting-site__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333); /* Bronze */
}

.page-reliable-betting-site__game-icon {
  max-width: 100px;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: contain;
  margin-top: 10px; /* Space for rank badge */
}

.page-reliable-betting-site__game-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}

.page-reliable-betting-site__game-name-link {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.page-reliable-betting-site__game-name-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-reliable-betting-site__game-description {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: bold;
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
  word-wrap: break-word; /* Ensure long text wraps */
  overflow-wrap: break-word;
}

.page-reliable-betting-site__game-description a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-reliable-betting-site__game-description a:hover {
  color: #004499;
  text-decoration: underline;
}

.page-reliable-betting-site__game-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.page-reliable-betting-site__stars {
  color: var(--secondary-color);
  font-size: 18px;
  margin-right: 5px;
  font-weight: bold;
}

.page-reliable-betting-site__rating-number {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: bold;
}

.page-reliable-betting-site__promotion-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: bold;
}

.page-reliable-betting-site__promotion-link {
  color: #0066cc;
  text-decoration: none;
  margin-right: 5px;
  transition: color 0.3s ease;
}

.page-reliable-betting-site__promotion-link:hover {
  color: #004499;
  text-decoration: underline;
}

.page-reliable-betting-site__hot-badge {
  background: #dc3545;
  color: var(--text-light);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
}

.page-reliable-betting-site__cta-button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  white-space: normal; /* Allow button text to wrap */
  word-wrap: break-word;
}

.page-reliable-betting-site__btn-download {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-reliable-betting-site__btn-download:hover {
  background: #f0c94b;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.page-reliable-betting-site__btn-review {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-reliable-betting-site__btn-review:hover {
  background: #071a47; /* Darker primary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.page-reliable-betting-site__review-content-section {
  padding: 40px 20px;
  background: var(--bg-light);
  color: var(--text-dark);
}

.page-reliable-betting-site__review-content-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-reliable-betting-site__review-content-card {
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.page-reliable-betting-site__review-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.3;
}

.page-reliable-betting-site__review-content-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-reliable-betting-site__review-body {
  color: var(--text-dark);
  line-height: 1.7;
}

.page-reliable-betting-site__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
}

.page-reliable-betting-site__intro-section {
  padding: 60px 20px;
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.page-reliable-betting-site__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-reliable-betting-site__intro-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-reliable-betting-site__intro-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-reliable-betting-site__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-reliable-betting-site__feature-card {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-reliable-betting-site__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-reliable-betting-site__feature-icon {
  max-width: 120px; /* Adjusted from 200px minimum */
  height: auto;
  margin-bottom: 20px;
  display: block;
}

.page-reliable-betting-site__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-reliable-betting-site__feature-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dark);
}

.page-reliable-betting-site__game-types-section {
  padding: 60px 20px;
  background: var(--bg-light);
  color: var(--text-dark);
  text-align: center;
}

.page-reliable-betting-site__game-types-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-reliable-betting-site__game-types-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.page-reliable-betting-site__game-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-reliable-betting-site__game-type-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-reliable-betting-site__game-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-reliable-betting-site__game-type-image {
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 4px;
  display: block;
}

.page-reliable-betting-site__game-type-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-reliable-betting-site__game-type-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dark);
  flex-grow: 1;
}

.page-reliable-betting-site__game-type-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.page-reliable-betting-site__game-type-button:hover {
  background: #f0c94b;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-reliable-betting-site__promotions-section {
  padding: 60px 20px;
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.page-reliable-betting-site__promotions-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-reliable-betting-site__promotions-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-reliable-betting-site__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-reliable-betting-site__promo-card {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-reliable-betting-site__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-reliable-betting-site__promo-image {
  max-width: 200px; /* Minimum 200x200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 4px;
  display: block;
}

.page-reliable-betting-site__promo-name {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-reliable-betting-site__promo-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dark);
  flex-grow: 1;
}

.page-reliable-betting-site__promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.page-reliable-betting-site__promo-button:hover {
  background: #f0c94b;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-reliable-betting-site__blog-section {
  padding: 60px 20px;
  background: var(--bg-light);
  color: var(--text-dark);
  text-align: center;
}

.page-reliable-betting-site__blog-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-reliable-betting-site__blog-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.page-reliable-betting-site__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-reliable-betting-site__blog-card {
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-reliable-betting-site__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-reliable-betting-site__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-reliable-betting-site__blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-reliable-betting-site__blog-item-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-reliable-betting-site__blog-item-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-reliable-betting-site__blog-item-title a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-reliable-betting-site__blog-excerpt {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-reliable-betting-site__blog-date {
  font-size: 13px;
  color: #777777;
  margin-top: auto;
}

.page-reliable-betting-site__blog-cta {
  margin-top: 20px;
}

.page-reliable-betting-site__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 17px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.page-reliable-betting-site__btn-primary:hover {
  background: #071a47;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.highlight-text {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-reliable-betting-site__hero-title {
    font-size: 40px;
  }
  .page-reliable-betting-site__hero-description {
    font-size: 18px;
  }
  .page-reliable-betting-site__page-title,
  .page-reliable-betting-site__review-title,
  .page-reliable-betting-site__intro-title,
  .page-reliable-betting-site__game-types-title,
  .page-reliable-betting-site__promotions-title,
  .page-reliable-betting-site__blog-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-reliable-betting-site__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-reliable-betting-site__hero-image img {
    border-radius: 4px;
  }
  .page-reliable-betting-site__hero-title {
    font-size: 32px;
  }
  .page-reliable-betting-site__hero-description {
    font-size: 16px;
  }
  .page-reliable-betting-site__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-reliable-betting-site__game-leaderboard-section,
  .page-reliable-betting-site__review-content-section,
  .page-reliable-betting-site__intro-section,
  .page-reliable-betting-site__game-types-section,
  .page-reliable-betting-site__promotions-section,
  .page-reliable-betting-site__blog-section {
    padding: 30px 15px;
  }

  .page-reliable-betting-site__page-title,
  .page-reliable-betting-site__review-title,
  .page-reliable-betting-site__intro-title,
  .page-reliable-betting-site__game-types-title,
  .page-reliable-betting-site__promotions-title,
  .page-reliable-betting-site__blog-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-reliable-betting-site__intro-description,
  .page-reliable-betting-site__game-types-description,
  .page-reliable-betting-site__promotions-description,
  .page-reliable-betting-site__blog-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-reliable-betting-site__game-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .page-reliable-betting-site__game-card-segment {
    border-left: none;
    padding: 10px 0;
    width: 100% !important;
    align-items: center;
  }
  .page-reliable-betting-site__segment-1 {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 0;
  }
  .page-reliable-betting-site__rank-badge {
    position: static;
    margin-right: 10px;
  }
  .page-reliable-betting-site__game-icon {
    max-width: 80px;
    margin-top: 0;
  }
  .page-reliable-betting-site__segment-2,
  .page-reliable-betting-site__segment-3,
  .page-reliable-betting-site__segment-4 {
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
    border-top: 1px solid var(--border-light);
    margin-top: 10px;
    padding-top: 10px;
  }
  .page-reliable-betting-site__game-name {
    font-size: 22px;
  }
  .page-reliable-betting-site__game-description {
    font-size: 13px;
  }
  .page-reliable-betting-site__game-rating,
  .page-reliable-betting-site__promotion-text {
    justify-content: center;
  }
  .page-reliable-betting-site__segment-4 {
    margin-top: 20px;
    gap: 8px;
  }
  .page-reliable-betting-site__cta-button {
    font-size: 14px;
    padding: 10px 15px;
  }

  .page-reliable-betting-site__review-content-card {
    padding: 24px 20px;
  }
  .page-reliable-betting-site__review-content-card h3 {
    font-size: 18px;
  }
  .page-reliable-betting-site__review-body p {
    font-size: 15px;
  }

  .page-reliable-betting-site__feature-icon {
    max-width: 100px;
  }
  .page-reliable-betting-site__feature-title {
    font-size: 20px;
  }
  .page-reliable-betting-site__feature-text {
    font-size: 14px;
  }
  
  .page-reliable-betting-site__game-type-image {
    max-width: 200px;
  }
  .page-reliable-betting-site__game-type-name {
    font-size: 20px;
  }
  .page-reliable-betting-site__game-type-text {
    font-size: 14px;
  }
  .page-reliable-betting-site__game-type-button,
  .page-reliable-betting-site__promo-button,
  .page-reliable-betting-site__btn-primary {
    font-size: 14px;
    padding: 10px 20px;
  }

  .page-reliable-betting-site__promo-image {
    max-width: 150px;
  }
  .page-reliable-betting-site__promo-name {
    font-size: 20px;
  }
  .page-reliable-betting-site__promo-text {
    font-size: 14px;
  }

  .page-reliable-betting-site__blog-image {
    height: 150px;
  }
  .page-reliable-betting-site__blog-item-title {
    font-size: 18px;
  }
  .page-reliable-betting-site__blog-excerpt {
    font-size: 14px;
  }

  .page-reliable-betting-site img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-reliable-betting-site__section,
  .page-reliable-betting-site__card,
  .page-reliable-betting-site__container,
  .page-reliable-betting-site__game-card,
  .page-reliable-betting-site__feature-card,
  .page-reliable-betting-site__game-type-card,
  .page-reliable-betting-site__promo-card,
  .page-reliable-betting-site__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}