/* Base reset and typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f7f8fa;
  color: #333;
}




/* Container for centralizing content on larger screens */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header styling */
.site-header {
  background: linear-gradient(135deg, #2d2d86, #4f4fc9);
  color: #fff;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo styling */
.header-logo {
  text-decoration: none;
}
.logo-image {
  display: block;
  max-width: 50px;
  height: auto;
}

/* Burger menu button styling */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0.5rem;
}

.burger-line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px 0;
  background: #fff;
}

/* Navigation Menu styling */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ffd700;
}

/* Hero section styling */
/* Hero section styling with visual divider */
.hero-section {
  padding: 3rem 0;
  text-align: center;
  background: #f7f8fa;
  margin-bottom: 2rem;         /* Adds extra spacing below the hero */
  border-bottom: 3px solid #2d2d86;  /* Divider line to separate the hero section */
}


.hero-title {
  font-size: 2.5rem;
  color: #2d2d86;
  margin-bottom: 0.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: #555;
}

/* Main review section */
.review-section {
  margin: 2rem 0;
  padding: 2rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2d2d86;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: justify;
  color: #555;
}


.review-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

/* Simple styles for bullet and numbered lists */
.custom-bullet {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.custom-bullet li {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #333;
}

.custom-numbered {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.custom-numbered li {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #333;
}

/* Enhanced table styling without using classes for table tags */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

table thead {
  background: linear-gradient(135deg, #2d2d86, #4f4fc9);
  color: #fff;
}

table th,
table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

table tbody tr:last-child td {
  border-bottom: none;
}

table tbody tr {
  background-color: #fff;
  transition: background-color 0.3s ease;
}

table tbody tr:hover {
  background-color: #f5faff;
}

table thead tr:first-child th:first-child {
  border-top-left-radius: 8px;
}

table thead tr:first-child th:last-child {
  border-top-right-radius: 8px;
}

table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

/* Footer styling */
/* Simplified Footer Styling */
.site-footer {
  background: #2d2d86;    /* Solid dark blue background */
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
}

.site-footer a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 1rem;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Optional: styling for responsible gambling logo section */
.site-footer .responsible-gambling {
  margin-top: 1rem;
}

.site-footer .responsible-gambling h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.site-footer .responsible-gambling img {
  width: 80px;
  margin: 0 0.5rem;
  vertical-align: middle;
}


/* Responsive design adjustments */
@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Display burger menu on mobile */
  .menu-toggle {
    display: block;
  }

  /* Hide navigation by default on mobile */
  .main-nav {
    display: none;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
  
  /* When toggled, show navigation */
  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-container {
    flex-direction: column;
  }

  .review-section, .site-header, .site-footer {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .review-text {
    font-size: 0.95rem;
  }
}



/* Container for the pros and cons section */
.pros-cons-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

/* Shared styling for both pros and cons blocks */
.pros-cons-section > div {
  flex: 1 1 45%;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Specific styles for the pros block */
.pros {
  border-left: 6px solid #4caf50; /* Green accent */
  background: #e8f5e9;             /* Light green background */
}

/* Specific styles for the cons block */
.cons {
  border-left: 6px solid #f44336; /* Red accent */
  background: #ffebee;             /* Light red background */
}

/* Headings inside both blocks */
.pros h3,
.cons h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Remove default list styling */
.pros ul,
.cons ul {
  list-style: none;
  padding-left: 1rem;
}

/* Add icons before each list item in pros */
.pros ul li::before {
  content: '✔ ';
  color: #4caf50;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Add icons before each list item in cons */
.cons ul li::before {
  content: '✖ ';
  color: #f44336;
  font-weight: bold;
  margin-right: 0.5rem;
}


/* Fixed Top Button styling */
/* Fixed Top Button styling with new colors */
#topButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffd700; /* Bright yellow background */
  color: #2d2d86;            /* Dark blue text for contrast */
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

/* Optional: add a hover effect */
#topButton:hover {
  opacity: 0.8;
}

/* Hide the top button on mobile devices */
@media (max-width: 768px) {
  #topButton {
    display: none;
  }
}




/**********************************/
/* Top 3 Casinos Section Styling  */
/**********************************/
/**********************************/
/* Top 3 Casinos Section Styling  */
/**********************************/

.top-casinos-section {
  width: 100%;
  margin: 2rem 0;
  color: #333;
  /* Background can be added here if desired */
}

/* Constrain the width of the top casinos section */
.top-casinos-container {
  max-width: 900px; /* Adjust width as needed */
  margin: 0 auto;   /* Centers the container */
  padding: 0 1rem;  /* Optional: adds horizontal padding */
}

.top-casinos-section .section-title {
  font-size: 2rem;
  color: #2d2d86; /* Dark blue text for headings */
  margin-bottom: 1rem;
  text-align: center;
}

/* Casino Card Container */
.casino-card {
  display: flex;
  align-items: center;
  background: #fff;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Ranking Number */
.casino-rank {
  font-size: 1.5rem;
  font-weight: 600;
  background: #4f4fc9; /* Secondary brand color */
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

/* Casino Image (logo) */
.casino-image {
  width: 100px;  /* Adjust as needed */
  height: auto;
  object-fit: contain;
  margin-right: 1rem;
}

/* Info Container */
.casino-info {
  flex: 1; /* Takes up remaining space to push CTA to the right */
  margin-right: 1rem;
}

/* Casino Header (Name + Rating) */
.casino-header {
  display: flex;
  flex-wrap: wrap; /* Allows name and rating to stack on small screens */
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.casino-name {
  font-size: 1.2rem;
  color: #2d2d86;
  margin: 0;
}

/* Rating Stars */
.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.star {
  font-size: 1.2rem;
  color: #ffd700; /* Gold for stars */
}

.rating-score {
  font-size: 0.9rem;
  color: #555;
  margin-left: 0.5rem;
}

/* Bonus & Wagering Info */
.casino-bonus {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
}

.casino-wager {
  font-size: 0.9rem;
  color: #666;
}

/* Call-to-action (CTA) Section */
.casino-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Play Now Button */
/* Updated Play Now Button Styling (Bigger) */
.play-now {
  background: #ffd700;    /* Gold background */
  color: #2d2d86;         /* Dark blue text */
  border: none;
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;  /* Remove underline from text */
}

.play-now:hover {
  opacity: 0.



/* Review Link */
.review-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #4f4fc9; /* Secondary brand color for link */
}

.review-link:hover {
  text-decoration: underline;
}

/**********************************/
/* Responsive Adjustments         */
/**********************************/
@media (max-width: 768px) {
  .casino-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .casino-rank {
    margin-bottom: 1rem;
  }

  .casino-image {
    margin-bottom: 1rem;
  }

  .casino-header {
    justify-content: flex-start;
  }

  .casino-cta {
    align-items: flex-start;
    margin-top: 1rem;
  }
}
/* 🔝 Топ Казино - стиль для темного хедера */
.crypto-casino-section {
    background: linear-gradient(145deg, #1c1c1c, #121212); /* Темний градієнт */
    color: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
}

.crypto-casino-section .section-title {
    font-size: 32px;
    color: #f1c40f; /* Золотистий акцент */
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

/* Центрування карток */
.casino-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Одна картка */
.casino-card {
    background: #2b2b2b;
    color: #ffffff;
    width: 220px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}