* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  text-align: center;
}

main {
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  width: 100%;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
}

.logo-section {
  flex-shrink: 0;
}

.logo-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-button {
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.game-button {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
}

.game-button:hover {
  background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 36, 0.6);
}

.register-button {
  background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 184, 148, 0.4);
}

.register-button:hover {
  background: linear-gradient(135deg, #00a085 0%, #00b894 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 184, 148, 0.6);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-content {
    padding: 12px 0;
  }
  
  .logo {
    width: 60px;
  }
  
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  
  .header-nav.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-button {
    padding: 15px 30px;
    font-size: 18px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo {
    width: 55px;
  }
  
  .nav-button {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* Intro Section */
.intro {
  max-width: 1160px;
  width: 100%;
  padding: 0;
  margin: 20px auto;
  text-align: left;
}

.intro h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

.intro h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
  text-align: center;
}

.intro p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

/* Author Info */
.article-meta {
  margin-bottom: 20px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 20px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  font-size: 14px;
  color: #777;
  text-align: left;
}

/* Casino Selection */
.casino-selection {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.casino-card {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
}

.casino-card .casino-index {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.casino-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.casino-details {
  display: flex;
  align-items: center;
  flex: 1 1 30%;
  gap: 10px;
}

.casino-details .casino-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.casino-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.casino-bonus-rating {
  flex: 1 1 40%;
  text-align: center;
}

.casino-bonus {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.casino-rating .star {
  color: gold;
  font-size: 18px;
}

.rating-number {
  font-size: 16px;
  color: #555;
  margin-left: 5px;
}

.casino-play-btn {
  flex: 1 1 20%;
  text-align: right;
}

.play-button {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 10px;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.play-button:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Info Blocks */
.info-block {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  margin: 20px auto;
  max-width: 1160px;
  width: 100%;
  text-align: left;
}

.info-block h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.info-block h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.info-block p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.table-wrap {
  overflow-x: auto;
  margin: 15px 0;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap td {
  padding: 10px;
  border: 2px solid #333;
}

.info-block h1 {
  font-size: 30px;
  margin-bottom: 25px;
}

.info-block ul,
.info-block ol {
  padding-left: 20px;
  color: #333;
  margin: 15px 0;
}

.info-block ol li:not(:last-child),
.info-block ul li:not(:last-child) {
  margin-bottom: 5px;
}

.footer__list {
  list-style-type: none;
  margin: 10px auto 20px auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__link:hover {
  color: #FF8C00;
}

.footer__link {
  color: #fff;
  text-decoration: none;
}



/* Promo Block */
.promo-block {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 20px auto;
  max-width: 1160px;
  width: 100%;
  text-align: left;
}

.promo-block h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.promo-block p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.promo-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.promo-button {
  display: block;
  margin: 0 auto;
  background-color: #28a745;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.promo-button:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Graphic Menu Block in Header Color with 2 items per row */
.graphic-menu {
  background: linear-gradient(45deg, #FF8C00, #FF4500);
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
  color: white;
}

.graphic-menu .menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.graphic-menu .menu-title {
  width: 100%;
  font-size: 24px;
  margin-bottom: 20px;
  color: white;
}

.graphic-menu .menu-button {
  flex: 0 0 calc(50% - 20px);
  background-color: #28a745;
  color: white;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.graphic-menu .menu-button:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Bonus Cards Section (Header Colored) */
.bonus-cards {
  background: linear-gradient(45deg, #FF8C00, #FF4500);
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 800px;
}

.bonus-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.bonus-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 250px;
  text-align: center;
}

.bonus-card img.bonus-image {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.bonus-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.bonus-card p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
}

.bonus-button {
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.faq-section h2 {
  margin-bottom: 20px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.question {
  background: #f8f9fa;
  padding: 15px 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  user-select: none;
}

.question:hover {
  background: #e9ecef;
}

.question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: bold;
  color: #666;
  transition: transform 0.3s ease;
}

.faq-item.active .question::after {
  transform: translateY(-50%) rotate(45deg);
}

.answer {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  transform: translateY(-10px);
}

.faq-item.active .answer {
  opacity: 1;
  max-height: 500px;
  transform: translateY(0);
}

.answer p {
  padding: 0 20px 20px;
  margin: 0;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 15px;
  position: relative;
  bottom: 0;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-logo {
  color: #fff;
  font-size: 24px;
}

.img__content {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  object-fit: contain;
  border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .casino-info {
    flex-direction: column;
    text-align: center;
  }

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

  .casino-details .casino-logo {
    margin-bottom: 8px;
  }

  .casino-play-btn {
    text-align: center;
    margin-top: 10px;
  }

  .author-info {
    justify-content: center;
  }

  .bonus-container .bonus-card {
    width: 100%;
    max-width: 300px;
  }

  .graphic-menu .menu-button {
    flex: 0 0 calc(50% - 20px);
    font-size: 14px;
    padding: 10px;
  }
}

.intro img,
.info-block img {
  margin: 10px auto;
  display: block;
  max-width: 100%;
}

/*TOP SECTION*/
.top5-list {
  border: 2px solid #ccc;
  margin-top: 10px;
  margin-bottom: 10px;
}

.top5-header {
  padding: 10px 15px
}

.top5-list ul {
  padding: 15px 15px 15px 15px;
  padding-left: 25px;
  margin: 0;
  list-style: none;
  font-size: 16px;
  color: #555;
}