* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}
header {
  background: #000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  height: 50px;
}
main {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}
.intro {
  text-align: center;
  margin-bottom: 40px;
}
.intro h1 {
  font-size: 2em;
  margin-bottom: 10px;
}
.intro p {
  font-size: 1.1em;
}
.article-meta {
  text-align: left;
  margin: 10px 0;
}
.author-info {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 1.1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.author-label {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 5px;
}
.author-name {
  margin-bottom: 5px;
}
.author-sub {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.last-updated {
  font-size: 0.9em;
  color: #555;
}
.casino-list {
  margin-bottom: 40px;
}
.casino-items {
  counter-reset: casino-counter;
  position: relative;
}
.casino-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  flex-wrap: wrap;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
}
.casino-item::before {
  content: counter(casino-counter) " ";
  counter-increment: casino-counter;
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: bold;
  font-size: 1.2em;
  color: #000;
}
.casino-brand,
.casino-info,
.casino-play {
  flex: 1 1 30%;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.casino-brand {
  justify-content: flex-start;
  text-align: left;
}
.casino-logo {
  height: 40px;
  margin-right: 10px;
}
.casino-name {
  font-weight: bold;
  font-size: 1.2em;
}
.casino-info {
  flex-direction: column;
  text-align: center;
}
.casino-bonus,
.casino-rating {
  margin: 5px 0;
}
.stars {
  color: #f1c40f;
}
.casino-play {
  justify-content: flex-end;
}
.play-button {
  background: #4CAF50;
  border: none;
  color: #fff;
  padding: 12px 24px;
  font-size: 1.1em;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}
.demo-button {
  background: #2196F3;
  border: none;
  color: #fff;
  padding: 12px 24px;
  font-size: 1.1em;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}
.play-button:hover,
.demo-button:hover {
  background: #808080;
}
.text-blocks {
  margin-bottom: 40px;
}
.text-block {
  margin-bottom: 20px;
}
.text-block h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}
.promo-block {
  margin: 40px 0;
  text-align: center;
}
.promo-img {
  max-width: 300px;
  width: 100%;
  display: block;
  margin: 0 auto 20px;
}
.faq-section {
  margin-bottom: 40px;
}
.faq-section h2 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 20px;
}
.faq-item {
  max-width: 800px;
  margin: 10px auto;
  border-bottom: 1px solid #ccc;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  background: #f1f1f1;
}
.faq-question:hover {
  background: #e9e9e9;
}
.faq-question .arrow {
  font-size: 1.2em;
  transition: transform 0.3s;
}
.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 10px;
  background: #fff;
}
.faq-answer p {
  font-size: 1em;
}
footer {
  text-align: center;
  padding: 20px 10px;
  background: #000;
  color: #fff;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Slot games section */
.slot-games {
  margin-bottom: 40px;
  text-align: center;
}
.slot-games-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.slot-game {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: calc(33% - 20px);
  min-width: 250px;
  text-align: center;
  padding-bottom: 10px;
}
.slot-image-container {
  position: relative;
}
.slot-image-container img {
  width: 100%;
  border-radius: 10px;
  max-height: 180px;
  object-fit: cover;
}
.slot-buttons {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.slot-game h3 {
  margin: 10px 0;
  font-size: 1.2em;
}
@media (max-width: 768px) {
  .casino-item {
    flex-direction: column;
    text-align: center;
  }
  .casino-brand,
  .casino-info,
  .casino-play {
    flex: 1 1 100%;
    justify-content: center;
  }
  .casino-brand {
    justify-content: center;
  }
  .casino-play {
    justify-content: center;
  }
  .slot-game {
    width: 100%;
  }
}

/* Colored borders for first three casino brands */
.casino-items .casino-item:nth-child(1) {
  border: 2px solid #FFA500 !important;
}
.casino-items .casino-item:nth-child(2),
.casino-items .casino-item:nth-child(3) {
  border: 2px solid #32CD32 !important;
}

/* Pulsating animation on buttons in casino selection */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.casino-list .play-button {
  animation: pulse 2s ease-in-out infinite;
}

.logotext {
  display:flex;
  justify-content: center;
    align-items: center;
    gap: 15px;
    color:#fff;
    text-decoration: none;
    font-size:20px;
}

footer a {
  color:#fff;
  text-decoration:none;
}
footer a:hover {
  color:#b4b4b4;
}
.text-block {
  color: #000;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4 {
  margin-top: 1em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.text-block h1 { font-size: 2em; }
.text-block h2 { font-size: 1.75em; }
.text-block h3 { font-size: 1.5em; }
.text-block h4 { font-size: 1.25em; }

.text-block p {
  margin: 1em 0;
}

.text-block ul,
.text-block ol {
  margin: 1em 0 1em 1.5em;
  padding-left: 1em;
}

.text-block ul li,
.text-block ol li {
  margin-bottom: 0.5em;
}

.text-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  background-color: #fff;
  border: 1px solid #ccc;
  overflow: hidden;
}

.text-block table th,
.text-block table td {
  padding: 0.75em;
  border: 1px solid #ccc;
  text-align: left;
}

.text-block table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.text-block table tr:nth-child(even) {
  background-color: #fafafa;
}

.table-wrapper {
  overflow-x: auto;  
  -webkit-overflow-scrolling: touch;  
  margin: 1em 0;  
}
.text-block img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1em auto; 
}
