/* style/top-10-casino-online.css */
:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f1f3f5;
  --border-color: #e4e4e4;
}

.page-top-10-casino-online {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark);
  background: var(--background-light);
}

/* HERO Section */
.page-top-10-casino-online__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: linear-gradient(135deg, var(--primary-color), #2c3e50); /* Dark gradient for contrast */
  color: var(--text-color-light);
}

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

.page-top-10-casino-online__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-top-10-casino-online__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-top-10-casino-online__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-top-10-casino-online__hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: bold;
  line-height: 1.2;
}

.page-top-10-casino-online__hero-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-top-10-casino-online__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  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-top-10-casino-online__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Game Leaderboard Section */
.page-top-10-casino-online__game-leaderboard-section {
  padding: 60px 20px;
  background: var(--background-light);
  max-width: 1400px;
  margin: 0 auto;
}

.page-top-10-casino-online__page-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-top-10-casino-online__game-leaderboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-top-10-casino-online__game-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-top-10-casino-online__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-top-10-casino-online__game-card-segment {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.page-top-10-casino-online__game-card-segment:not(:first-child) {
  border-left: 1px solid var(--border-color);
}

.page-top-10-casino-online__segment-1 {
  flex-shrink: 0;
  width: 120px;
  padding-left: 0;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-top-10-casino-online__rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8c42); /* Default orange */
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.page-top-10-casino-online__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold */
}

.page-top-10-casino-online__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0); /* Silver */
}

.page-top-10-casino-online__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333); /* Bronze */
}

.page-top-10-casino-online__game-icon {
  max-width: 80px;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}

.page-top-10-casino-online__segment-2 {
  flex-grow: 1;
  min-width: 200px;
}

.page-top-10-casino-online__game-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
}

.page-top-10-casino-online__game-name-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.page-top-10-casino-online__game-name-link:hover {
  color: #0066cc;
  text-decoration: underline;
}

.page-top-10-casino-online__game-description {
  font-size: 14px;
  color: var(--text-color-dark);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 0;
}

.page-top-10-casino-online__game-description a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
}

.page-top-10-casino-online__game-description a:hover {
  text-decoration: underline;
  color: #004499;
}

.page-top-10-casino-online__segment-3 {
  flex-shrink: 0;
  width: 150px;
}

.page-top-10-casino-online__game-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.page-top-10-casino-online__stars {
  color: var(--secondary-color);
  font-size: 18px;
  margin-right: 5px;
  font-weight: bold;
}

.page-top-10-casino-online__rating-number {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-color-dark);
}

.page-top-10-casino-online__promotion-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.page-top-10-casino-online__promotion-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

.page-top-10-casino-online__promotion-link:hover {
  text-decoration: underline;
  color: #004499;
}

.page-top-10-casino-online__hot-badge {
  background: #e74c3c;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.page-top-10-casino-online__segment-4 {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-top-10-casino-online__cta-button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  line-height: 1.3;
}

.page-top-10-casino-online__btn-download {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-top-10-casino-online__btn-download:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-top-10-casino-online__btn-review {
  background: var(--primary-color);
  color: var(--text-color-light);
}

.page-top-10-casino-online__btn-review:hover {
  background: #1a2a40;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Brand Review Content Section */
.page-top-10-casino-online__review-content-section {
  padding: 40px 20px;
  background: var(--background-light);
}

.page-top-10-casino-online__review-content-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-top-10-casino-online__review-content-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.page-top-10-casino-online__review-content-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 24px;
  text-align: center;
}

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

.page-top-10-casino-online__review-body {
  color: var(--text-color-dark);
  line-height: 1.7;
}

.page-top-10-casino-online__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
}

.page-top-10-casino-online__review-body a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

.page-top-10-casino-online__review-body a:hover {
  text-decoration: underline;
  color: #004499;
}

/* Homepage Introduction Section */
.page-top-10-casino-online__introduction-section {
  padding: 60px 20px;
  background: var(--primary-color);
  color: var(--text-color-light);
}

.page-top-10-casino-online__introduction-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-top-10-casino-online__introduction-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-top-10-casino-online__introduction-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-top-10-casino-online__introduction-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Core Game/Service Introduction Section */
.page-top-10-casino-online__games-services-section {
  padding: 60px 20px;
  background: #ffffff;
}

.page-top-10-casino-online__games-services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-top-10-casino-online__games-services-container h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.page-top-10-casino-online__games-services-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-top-10-casino-online__game-type-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-top-10-casino-online__game-type-item {
  background: var(--background-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-top-10-casino-online__game-type-item h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-top-10-casino-online__game-type-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color-dark);
}

.page-top-10-casino-online__game-type-item a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

.page-top-10-casino-online__game-type-item a:hover {
  text-decoration: underline;
  color: #004499;
}

/* Promotions Section */
.page-top-10-casino-online__promotions-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--primary-color);
}

.page-top-10-casino-online__promotions-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-top-10-casino-online__promotions-container h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.page-top-10-casino-online__promotions-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-top-10-casino-online__promotion-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-top-10-casino-online__promotion-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-top-10-casino-online__promotion-item h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-top-10-casino-online__promotion-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color-dark);
}

/* Latest Blog Content Section */
.page-top-10-casino-online__blog-section {
  padding: 60px 20px;
  background: var(--background-light);
}

.page-top-10-casino-online__blog-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-top-10-casino-online__blog-container h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.page-top-10-casino-online__blog-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-top-10-casino-online__article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-top-10-casino-online__article-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-top-10-casino-online__article-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-top-10-casino-online__article-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-top-10-casino-online__article-card h3 a:hover {
  color: #0066cc;
  text-decoration: underline;
}

.page-top-10-casino-online__article-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color-dark);
  margin-bottom: 15px;
}

.page-top-10-casino-online__article-card p a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

.page-top-10-casino-online__article-card p a:hover {
  text-decoration: underline;
  color: #004499;
}

.page-top-10-casino-online__article-date {
  font-size: 14px;
  color: #666666;
  display: block;
  margin-top: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-top-10-casino-online__hero-content h1 {
    font-size: 40px;
  }

  .page-top-10-casino-online__hero-content p {
    font-size: 18px;
  }

  .page-top-10-casino-online__page-title {
    font-size: 32px;
  }

  .page-top-10-casino-online__game-card {
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
  }

  .page-top-10-casino-online__game-card-segment {
    border-left: none !important;
    padding: 10px 15px;
    width: 100%;
  }

  .page-top-10-casino-online__segment-1 {
    width: 100%;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    margin-bottom: 10px;
  }

  .page-top-10-casino-online__rank-badge {
    margin-bottom: 0;
  }

  .page-top-10-casino-online__segment-2 {
    width: 100%;
    order: 1;
  }

  .page-top-10-casino-online__segment-3 {
    width: 100%;
    order: 2;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .page-top-10-casino-online__segment-4 {
    width: 100%;
    order: 3;
    flex-direction: row;
    gap: 15px;
  }

  .page-top-10-casino-online__cta-button {
    flex: 1;
    font-size: 14px;
    padding: 10px;
  }

  .page-top-10-casino-online__review-content-card h2,
  .page-top-10-casino-online__introduction-content h2,
  .page-top-10-casino-online__games-services-container h2,
  .page-top-10-casino-online__promotions-container h2,
  .page-top-10-casino-online__blog-container h2 {
    font-size: 28px;
  }

  .page-top-10-casino-online__game-type-list,
  .page-top-10-casino-online__promotion-list,
  .page-top-10-casino-online__article-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-top-10-casino-online__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-top-10-casino-online__hero-content h1 {
    font-size: 32px;
  }
  
  .page-top-10-casino-online__hero-content p {
    font-size: 16px;
  }
  
  .page-top-10-casino-online__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-top-10-casino-online__page-title {
    font-size: 28px;
  }

  .page-top-10-casino-online__game-card {
    flex-direction: column;
    align-items: stretch;
    padding: 15px;
  }

  .page-top-10-casino-online__game-card-segment {
    width: 100%;
    padding: 10px 0;
    border-left: none !important;
  }

  .page-top-10-casino-online__segment-1 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    padding: 0;
  }

  .page-top-10-casino-online__game-icon {
    max-width: 60px;
  }

  .page-top-10-casino-online__game-name {
    font-size: 20px;
  }

  .page-top-10-casino-online__game-description {
    font-size: 13px;
  }

  .page-top-10-casino-online__segment-3 {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
  }

  .page-top-10-casino-online__segment-4 {
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .page-top-10-casino-online__btn-download,
  .page-top-10-casino-online__btn-review {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 12px !important;
    padding: 8px 12px !important;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }

  .page-top-10-casino-online__review-content-section,
  .page-top-10-casino-online__introduction-section,
  .page-top-10-casino-online__games-services-section,
  .page-top-10-casino-online__promotions-section,
  .page-top-10-casino-online__blog-section {
    padding: 30px 15px;
  }

  .page-top-10-casino-online__review-content-card,
  .page-top-10-casino-online__game-type-item,
  .page-top-10-casino-online__promotion-item,
  .page-top-10-casino-online__article-card {
    padding: 20px;
  }

  .page-top-10-casino-online__review-content-card h2,
  .page-top-10-casino-online__introduction-content h2,
  .page-top-10-casino-online__games-services-container h2,
  .page-top-10-casino-online__promotions-container h2,
  .page-top-10-casino-online__blog-container h2 {
    font-size: 24px;
  }

  .page-top-10-casino-online__review-content-card h3,
  .page-top-10-casino-online__game-type-item h3,
  .page-top-10-casino-online__promotion-item h3,
  .page-top-10-casino-online__article-card h3 {
    font-size: 18px;
  }

  .page-top-10-casino-online__review-body p,
  .page-top-10-casino-online__introduction-content p,
  .page-top-10-casino-online__game-type-item p,
  .page-top-10-casino-online__promotion-item p,
  .page-top-10-casino-online__article-card p {
    font-size: 15px;
  }

  /* Force responsive for all images */
  .page-top-10-casino-online img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-top-10-casino-online__section,
  .page-top-10-casino-online__card,
  .page-top-10-casino-online__container,
  .page-top-10-casino-online__game-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-top-10-casino-online__game-leaderboard-section {
    padding-left: 0;
    padding-right: 0;
  }
}