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

body {
  font-family: "Roboto", sans-serif;
  background-color: #111111;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header Styles */
.site-header {
  background-color: #151515;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 25px;
}

.nav-link {
  color: #e0e0e0;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffec00;
}

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

.reviews-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 15px;
  background: rgba(255, 236, 0, 0.1);
  border-radius: 8px;
}

.count-number {
  font-size: 24px;
  font-weight: 700;
  color: #ffec00;
}

.count-label {
  font-size: 12px;
  color: #b0b0b0;
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.btn-header {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-login {
  background-color: #ffffff;
  color: #151515;
}

.btn-login:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.btn-register {
  background-color: #ffec00;
  color: #151515;
}

.btn-register:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
}

.btn-leave-review {
  background-color: transparent;
  color: #ffec00;
  border: 2px solid #ffec00;
}

.btn-leave-review:hover {
  background-color: #ffec00;
  color: #151515;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #ffec00;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 236, 0, 0.2);
  margin-top: 15px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  color: #e0e0e0;
  padding: 10px 0;
  font-weight: 400;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
  background-color: #1a1a1a;
  padding: 12px 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-item {
  color: #b0b0b0;
}

.breadcrumb-item.active {
  color: #ffec00;
}

.breadcrumb-separator {
  color: #666;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 0;
  margin-bottom: 40px;
}

.hero-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  background-image: url("/admiral-x-game-banner.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.hero-card {
  position: relative;
  z-index: 1;
}

.casino-info-card {
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  border: 1px solid rgba(255, 236, 0, 0.2);
}

.casino-logo-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.casino-logo {
  max-width: 250px;
  height: auto;
}

.casino-rating-block {
  margin-bottom: 30px;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.rating-score {
  font-size: 48px;
  font-weight: 700;
  color: #ffec00;
}

.rating-bar-wrapper {
  flex: 1;
  max-width: 300px;
}

.rating-bar {
  height: 12px;
  background-color: #333;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 5px;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff4444 0%, #ffaa00 50%, #00ff00 100%);
  transition: width 0.5s ease;
}

.rating-text {
  font-size: 14px;
  color: #b0b0b0;
}

.casino-bonus-block {
  text-align: center;
  padding: 25px;
  background: rgba(255, 236, 0, 0.1);
  border-radius: 12px;
  margin-bottom: 30px;
  border: 2px dashed #ffec00;
}

.bonus-label {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 8px;
}

.bonus-value {
  font-size: 24px;
  font-weight: 700;
  color: #ffec00;
}

.casino-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-casino-visit {
  background-color: #ffec00;
  color: #151515;
}

.btn-casino-visit:hover {
  background-color: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 236, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #151515;
}

/* Casino Details Card */
.casino-details-card {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #333;
}

.details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.details-header h3 {
  color: #ffffff;
  font-size: 22px;
}

.btn-expand-details {
  background: transparent;
  color: #ffec00;
  border: 1px solid #ffec00;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-expand-details:hover {
  background-color: #ffec00;
  color: #151515;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-label {
  font-size: 13px;
  color: #888;
}

.detail-value {
  font-size: 15px;
  color: #e0e0e0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.license-badge,
.provider-badge,
.payment-badge {
  height: 24px;
  width: auto;
}

/* Other Bonuses Section */
.other-bonuses-section {
  margin-bottom: 30px;
}

.other-bonuses-section h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: #ffec00;
  box-shadow: 0 5px 20px rgba(255, 236, 0, 0.2);
}

.bonus-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffec00;
  margin-bottom: 12px;
}

.bonus-card-desc {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.btn-bonus-get {
  display: inline-block;
  padding: 10px 25px;
  background-color: #ffec00;
  color: #151515;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-bonus-get:hover {
  background-color: #ffd700;
  transform: scale(1.05);
}

/* Pros and Cons Section */
.pros-cons-section {
  margin-bottom: 30px;
}

.pros-cons-section h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.pros-column,
.cons-column {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #333;
}

.pros-title {
  color: #00ff00;
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pros-title::before {
  content: "✓";
  font-size: 24px;
}

.cons-title {
  color: #ff4444;
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cons-title::before {
  content: "✗";
  font-size: 24px;
}

.pros-list,
.cons-list {
  list-style: none;
}

.pros-list li,
.cons-list li {
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
  color: #e0e0e0;
}

.pros-list li:last-child,
.cons-list li:last-child {
  border-bottom: none;
}

/* Table of Contents */
.toc-section {
  background: #1f1f1f;
  padding: 30px 0;
  margin-bottom: 40px;
  border-top: 2px solid #ffec00;
  border-bottom: 2px solid #ffec00;
}

.toc-wrapper h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 20px;
}

.toc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.toc-link {
  padding: 10px 20px;
  background: #2a2a2a;
  border-radius: 6px;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.toc-link:hover {
  background: #ffec00;
  color: #151515;
}

/* Leave Review Section */
.leave-review-section {
  padding: 60px 0;
  background: #1a1a1a;
}

.bonus-banner-review {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  border: 2px solid #ffec00;
}

.bonus-banner-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.bonus-banner-icon {
  font-size: 48px;
}

.bonus-banner-text {
  flex: 1;
}

.bonus-banner-text h4 {
  color: #ffec00;
  font-size: 24px;
  margin-bottom: 8px;
}

.bonus-banner-text p {
  color: #b0b0b0;
  font-size: 16px;
}

.btn-bonus-claim {
  padding: 12px 30px;
  background-color: #ffec00;
  color: #151515;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-bonus-claim:hover {
  background-color: #ffd700;
  transform: scale(1.05);
}

/* Review Form */
.review-form-wrapper {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #333;
}

.review-form-wrapper h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #e0e0e0;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 6px;
  color: #e0e0e0;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #ffec00;
  box-shadow: 0 0 0 3px rgba(255, 236, 0, 0.1);
}

.rating-params {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.rating-param-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: #2a2a2a;
  border-radius: 6px;
}

.rating-param-label {
  font-size: 14px;
  color: #b0b0b0;
}

.star-rating {
  display: flex;
  gap: 5px;
}

.star-rating .star {
  font-size: 24px;
  color: #444;
  cursor: pointer;
  transition: all 0.2s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
  color: #ffec00;
  transform: scale(1.2);
}

.btn-submit-review {
  width: 100%;
  padding: 15px;
  background-color: #ffec00;
  color: #151515;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-review:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 236, 0, 0.4);
}

.review-success-message {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #00aa00 0%, #00ff00 100%);
  border-radius: 12px;
  color: #ffffff;
}

.success-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.review-success-message h4 {
  font-size: 28px;
  margin-bottom: 15px;
}

.review-success-message p {
  font-size: 16px;
}

/* User Reviews Section */
.user-reviews-section {
  padding: 60px 0;
}

.user-reviews-section h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.stats-item {
  text-align: center;
}

.stats-value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #ffec00;
}

.stats-label {
  font-size: 14px;
  color: #b0b0b0;
}

/* Review Cards */
.mb-reviews-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mb-review-card {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.mb-review-card:hover {
  border-color: #ffec00;
  box-shadow: 0 5px 20px rgba(255, 236, 0, 0.1);
}

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

.mb-review-author-info {
  display: flex;
  gap: 15px;
  align-items: center;
}

.mb-review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffec00;
}

.mb-review-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mb-review-author {
  color: #ffffff;
  font-size: 18px;
}

.mb-review-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #b0b0b0;
}

.mb-review-country img {
  width: 20px;
  height: 15px;
}

.mb-review-date {
  font-size: 13px;
  color: #888;
}

.mb-review-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.mb-rating-display {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mb-rating-value {
  font-size: 28px;
  font-weight: 700;
  color: #ffec00;
}

.mb-stars {
  display: flex;
  gap: 3px;
}

.mb-star {
  font-size: 20px;
  color: #444;
}

.mb-star-filled {
  color: #ffec00;
}

.mb-rating-details-btn {
  background: transparent;
  color: #ffec00;
  border: 1px solid #ffec00;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-rating-details-btn:hover {
  background-color: #ffec00;
  color: #151515;
}

.mb-rating-details {
  background: #2a2a2a;
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
}

.rating-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #333;
  font-size: 14px;
  color: #e0e0e0;
}

.rating-detail-item:last-child {
  border-bottom: none;
}

.mb-review-title {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 15px;
}

.mb-review-source {
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
}

.mb-review-source a {
  color: #ffec00;
  text-decoration: underline;
}

.mb-review-body {
  margin-bottom: 20px;
}

.mb-review-text {
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.7;
}

.mb-review-text-collapsed {
  max-height: 100px;
  overflow: hidden;
  position: relative;
}

.mb-review-text-collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, #1f1f1f);
}

.mb-review-expand {
  background: transparent;
  color: #ffec00;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mb-review-expand:hover {
  text-decoration: underline;
}

.mb-review-pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: #2a2a2a;
  border-radius: 8px;
}

.mb-review-pros h5 {
  color: #00ff00;
  font-size: 16px;
  margin-bottom: 12px;
}

.mb-review-cons h5 {
  color: #ff4444;
  font-size: 16px;
  margin-bottom: 12px;
}

.mb-review-pros ul,
.mb-review-cons ul {
  list-style: none;
}

.mb-pro-item {
  color: #e0e0e0;
  padding: 6px 0;
  font-size: 14px;
}

.mb-con-item {
  color: #e0e0e0;
  padding: 6px 0;
  font-size: 14px;
}

.mb-review-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.mb-review-votes {
  display: flex;
  gap: 15px;
}

.mb-vote-btn {
  background: #2a2a2a;
  border: 1px solid #444;
  padding: 8px 16px;
  border-radius: 6px;
  color: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mb-vote-btn:hover {
  border-color: #ffec00;
  transform: translateY(-2px);
}

.mb-reply-btn {
  background: transparent;
  color: #ffec00;
  border: 1px solid #ffec00;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mb-reply-btn:hover {
  background-color: #ffec00;
  color: #151515;
}

.mb-reply-form {
  margin-top: 20px;
  padding: 20px;
  background: #2a2a2a;
  border-radius: 8px;
}

.mb-reply-form textarea {
  width: 100%;
  padding: 12px;
  background: #1f1f1f;
  border: 1px solid #444;
  border-radius: 6px;
  color: #e0e0e0;
  font-size: 14px;
  margin-bottom: 15px;
  resize: vertical;
}

.mb-reply-actions {
  display: flex;
  gap: 10px;
}

.mb-btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mb-btn-primary {
  background-color: #ffec00;
  color: #151515;
}

.mb-btn-primary:hover {
  background-color: #ffd700;
}

.mb-btn-secondary {
  background-color: transparent;
  color: #e0e0e0;
  border: 1px solid #444;
}

.mb-btn-secondary:hover {
  border-color: #ffec00;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: #1a1a1a;
}

.faq-section h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #ffec00;
}

.faq-icon {
  font-size: 24px;
  color: #ffec00;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer > div {
  padding: 0 25px 20px 25px;
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.7;
}

.bonus-banner-bottom {
  margin-top: 40px;
}

/* Comparison Section */
.comparison-section {
  padding: 60px 0;
}

.comparison-section h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  background: #1f1f1f;
  border-radius: 12px;
  border-collapse: collapse;
  overflow: hidden;
}

.comparison-table thead {
  background: #2a2a2a;
}

.comparison-table th {
  padding: 20px;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid #ffec00;
}

.comparison-table td {
  padding: 18px 20px;
  color: #e0e0e0;
  border-bottom: 1px solid #333;
}

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

.comparison-table td.highlight {
  color: #ffec00;
  font-weight: 600;
}

.btn-table-cta,
.btn-table-cta-secondary {
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-table-cta {
  background-color: #ffec00;
  color: #151515;
}

.btn-table-cta:hover {
  background-color: #ffd700;
  transform: scale(1.05);
}

.btn-table-cta-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-table-cta-secondary:hover {
  background-color: #ffffff;
  color: #151515;
}

/* Screenshots Section */
.screenshots-section {
  padding: 60px 0;
  background: #1a1a1a;
}

.screenshots-section h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.screenshot-item {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #333;
  transition: all 0.3s ease;
}

.screenshot-item:hover {
  border-color: #ffec00;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 236, 0, 0.2);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshots-slider {
  display: none;
}

/* Video Review Section */
.video-review-section {
  padding: 60px 0;
}

.video-review-section h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #333;
}

.video-wrapper iframe {
  display: block;
}

/* Text Review Section */
.text-review-section {
  padding: 60px 0;
  background: #1a1a1a;
}

.text-review-section h1 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 30px;
}

.text-review-content h2 {
  color: #ffec00;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-review-content h3 {
  color: #ffffff;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.text-review-content p {
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.text-review-content ul,
.text-review-content ol {
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 30px;
}

.text-review-content li {
  margin-bottom: 10px;
}

.text-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #1f1f1f;
  border-radius: 8px;
  overflow: hidden;
}

.text-review-content th {
  background: #2a2a2a;
  color: #ffffff;
  padding: 15px;
  text-align: left;
  border: 1px solid #333;
}

.text-review-content td {
  padding: 12px 15px;
  color: #e0e0e0;
  border: 1px solid #333;
}

/* Author Section */
.author-section {
  padding: 60px 0;
}

.author-card {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  border: 1px solid #333;
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffec00;
}

.author-info {
  flex: 1;
}

.author-name {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 15px;
}

.author-bio {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.author-social {
  display: flex;
  gap: 15px;
}

.author-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #2a2a2a;
  border-radius: 6px;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.author-social-link:hover {
  background: #ffec00;
  color: #151515;
}

.author-social-link img {
  width: 20px;
  height: 20px;
}

/* Footer */
.site-footer {
  background-color: #151515;
  padding: 40px 0 20px;
  border-top: 2px solid #ffec00;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-link {
  color: #b0b0b0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffec00;
}

.footer-trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.trust-badge {
  height: 50px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.trust-badge:hover {
  opacity: 1;
}

.footer-legal {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.copyright,
.disclaimer,
.legal-text {
  color: #888;
  font-size: 13px;
  margin-bottom: 10px;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  padding: 15px 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
  z-index: 999;
  border-top: 2px solid #ffec00;
}

.widget-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.widget-bonus {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.widget-bonus-label {
  font-size: 12px;
  color: #b0b0b0;
}

.widget-bonus-value {
  font-size: 16px;
  font-weight: 700;
  color: #ffec00;
}

.widget-cta-btn {
  padding: 12px 30px;
  background-color: #ffec00;
  color: #151515;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.widget-cta-btn:hover {
  background-color: #ffd700;
  transform: scale(1.05);
}

/* Utility Classes */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .burger-menu {
    display: flex;
  }

  .header-buttons .btn-leave-review {
    display: none;
  }

  .casino-cta-buttons {
    flex-direction: column;
  }

  .bonus-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .screenshots-grid {
    display: none;
  }

  .screenshots-slider {
    display: block;
    overflow-x: auto;
  }

  .slider-track {
    display: flex;
    gap: 15px;
  }

  .slider-item {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    flex-wrap: wrap;
  }

  .header-buttons {
    order: -1;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 15px;
  }

  .btn-header {
    padding: 8px 15px;
    font-size: 13px;
  }

  .casino-info-card {
    padding: 25px;
  }

  .rating-score {
    font-size: 36px;
  }

  .bonus-value {
    font-size: 18px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .toc-nav {
    flex-direction: column;
  }

  .rating-params {
    grid-template-columns: 1fr;
  }

  .mb-review-header {
    flex-direction: column;
  }

  .mb-review-rating {
    align-items: flex-start;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
  }

  .widget-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .site-logo img {
    height: 40px;
  }

  .hero-section {
    padding: 30px 0;
  }

  .casino-info-card {
    padding: 20px;
  }

  .rating-display {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 14px;
  }

  .user-reviews-section h2,
  .faq-section h2,
  .comparison-section h2,
  .screenshots-section h2,
  .video-review-section h2 {
    font-size: 24px;
  }

  .mb-review-card {
    padding: 20px;
  }

  .mb-review-actions {
    flex-direction: column;
    gap: 15px;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mb-review-card,
.bonus-card,
.faq-item {
  animation: fadeIn 0.5s ease;
}

/* WordPress-like unused styles for obfuscation */
.wp-block-group {
  display: none;
}

.elementor-widget-container {
  display: none;
}

.yoast-schema-graph {
  display: none;
}
