* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
}

header {
  background: linear-gradient(90deg, #8A2BE2, #DA70D6);
  color: #fff;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.header-content {
  max-width: 1000px;
  margin: 0 auto;
}
.header-content a {
  display:flex;
  gap:25px;
  align-items:center;
  justify-content: center;
  text-decoration: none;
  color:#fff;
}
.header-content img {
  height:70px;
}
.header-content p {
  font-size:21px;
}

main {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.intro,
.info-blocks,
.faq-section,
.slots-section,
.promo-section,
.casino-review {
  text-align: left;
  margin-bottom: 40px;
}

.intro h1 {
  margin-bottom: 10px;
  font-size: 2.0em;
}

.best-casinos-heading {
  font-size: 1.8em;
  margin: 20px 0;
}

.casino-selection {
  margin-bottom: 40px;
}

.casino-selection .casino-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.casino-item.rank-first {
  border: 2px solid #28a745;
}

.casino-item.rank-special {
  border: 2px solid #FFD700;
}

.casino-number {
  position: absolute;
  top: 5px;
  left: 5px;
  background: #fff;
  color: #000;
  padding: 5px 10px;
  border-radius: 50%;
  font-weight: bold;
  border: 1px solid #ccc;
}

.casino-info,
.casino-bonus-rating,
.casino-play {
  flex: 1;
  padding: 10px;
  text-align: center;
}

.casino-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.casino-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 5px;
}

.play-button {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1em;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.play-button:hover {
  background-color: #218838;
}

.info-block {
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}

.faq-section .faq-item {
  background: #fff;
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  text-align: left;
}

.faq-question {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #8A2BE2, #DA70D6);
  color: #fff;
}

.faq-question:hover {
  opacity: 0.9;
}

.faq-answer {
  display: none;
  padding: 15px;
  border-top: 1px solid #cccccc;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.stars {
  color: #FFD700;
}

/* Slots Section */
.slots-section {
  text-align: center;
  margin-bottom: 40px;
}

.slots-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.slot-item {
  position: relative;
  width: calc(33.333% - 20px);
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.slot-image-container {
  position: relative;
}

.slot-image-container img {
  width: 100%;
  display: block;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.slot-image-container .play-button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.slot-title {
  padding: 10px;
  font-weight: bold;
}

/* Promo Section */
.promo-section h2 {
  margin-bottom: 20px;
}

.promo-image-container {
  position: relative;
  display: inline-block;
}

.promo-image-container img {
  width: 100%;
  max-width: 600px;
  border-radius: 5px;
  display: block;
}

.promo-play {
  display: block;
  margin: 20px auto 0;
}

/* Casino Review Section */
.casino-review {
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: left;
}

.casino-name-review {
  text-align: center;
  margin-bottom: 20px;
}

.casino-review .review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.casino-review .review-logo {
  flex: 0 0 150px;
  text-align: center;
}

.casino-review .review-logo img {
  max-width: 100%;
  height: auto;
}

.casino-review .review-play {
  display: block;
  margin: 10px auto 0;
}

.casino-review .pros-cons {
  flex: 1;
}

.casino-review .pros-cons h3 {
  margin-bottom: 10px;
}

.casino-review .pros-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.casino-review .pros-cons ul li {
  font-size: 0.95em;
  margin: 0;
}

.casino-review .pros-cons .check {
  color: #28a745;
  margin-right: 5px;
}

.casino-review .pros-cons .cross {
  color: #ff0000;
  margin-right: 5px;
}

.casino-review .payment-methods {
  flex: 1;
  text-align: center;
}

.casino-review .payment-methods h3 {
  margin-bottom: 10px;
}

/* New Payment Labels */
.payment-labels {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.payment-labels li {
  font-size: 0.85em;
  color: #333;
  display: flex;
  align-items: center;
  gap: 3px;
}

.check-tiny {
  color: #28a745;
  font-size: 1em;
}

/* Payment Icons */
.casino-review .payment-methods ul {
  display: none;
}

.casino-review .payment-icons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.casino-review .payment-icons img {
  width: 30px;
  height: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .casino-selection .casino-item {
    flex-direction: column;
  }
  .casino-info, .casino-bonus-rating, .casino-play {
    text-align: center;
    padding: 10px 0;
    width: 100%;
  }
  .slot-item {
    width: calc(50% - 10px);
  }
  .casino-review .review-top {
    flex-direction: column;
    align-items: center;
  }
  .casino-review .review-logo {
    margin-bottom: 20px;
  }
  .casino-review .payment-methods ul {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .slot-item {
    width: 100%;
  }
}
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background-color: #fff;
  min-width: 600px;
}

table thead {
  background-color: #f5f5f5;
}

table th,
table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

table th {
  font-weight: bold;
  color: #333;
}

table tbody tr:hover {
  background-color: #fafafa;
}
.info-block img {
  margin:10px auto;
  display:block;
  max-width:100%;
}
footer a {
  color:#fff;
  text-decoration:none;
}
.casino-info img {
  background-color:#777777;
  width:150px;
  padding:10px;
  border-radius:10px;
}