/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans",
    "Helvetica Neue", "Arial", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0e2f2b;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-balance: balance;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  text-pretty: pretty;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #02504b;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #034540;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 80, 75, 0.3);
}

.btn-secondary {
  background-color: #f9c719;
  color: #222723;
}

.btn-secondary:hover {
  background-color: #e6b516;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 199, 25, 0.3);
}

.btn-login {
  background-color: #02504b;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 13px;
}

.btn-register {
  background-color: #f9c719;
  color: #222723;
  padding: 10px 20px;
  font-size: 13px;
}

.btn-review {
  background-color: transparent;
  color: #f9c719;
  border: 2px solid #f9c719;
  padding: 8px 16px;
  font-size: 13px;
}

.btn-bonus {
  background: linear-gradient(135deg, #f9c719, #e6b516);
  color: #222723;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

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

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

.logo img {
  height: 45px;
  width: auto;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

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

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

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

.reviews-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #0e2f2b;
  padding: 8px 16px;
  border-radius: 20px;
}

.counter-text {
  font-size: 13px;
  color: #cccccc;
}

.counter-number {
  font-weight: 700;
  color: #f9c719;
  font-size: 16px;
}

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

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

.burger-line {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 2px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  background-color: #222723;
  padding: 20px 0;
  border-top: 1px solid #333;
}

.mobile-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-list li {
  margin-bottom: 15px;
}

.mobile-nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.mobile-reviews-counter {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #cccccc;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumbs-section {
  background-color: #1a3a35;
  padding: 15px 0;
}

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

.breadcrumbs a {
  color: #f9c719;
  text-decoration: none;
}

.breadcrumbs .separator {
  color: #cccccc;
}

.breadcrumbs .current {
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 47, 43, 0.9), rgba(34, 39, 35, 0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 40px 0;
}

.casino-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.casino-logo img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.casino-name {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

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

.rating-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f9c719;
}

.rating-bar {
  width: 100px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff4444, #ffaa00, #44ff44);
  border-radius: 5px;
  transition: width 0.3s ease;
}

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

.casino-bonus {
  background-color: #f9c719;
  color: #222723;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 700;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-breakdown {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-breakdown h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #f9c719;
}

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

.rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-item span {
  font-size: 14px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #666;
  font-size: 16px;
}

.star.filled {
  color: #f9c719;
}

.casino-details {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.casino-details h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #f9c719;
}

.details-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.detail-item .value {
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
}

/* Table of Contents */
.table-of-contents {
  background-color: #1a3a35;
  padding: 30px 0;
}

.table-of-contents h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #f9c719;
}

.toc-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.toc-tab {
  background-color: #02504b;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.toc-tab:hover {
  background-color: #f9c719;
  color: #222723;
  transform: translateY(-2px);
}

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

.bonus-banner {
  background: linear-gradient(135deg, #f9c719, #e6b516);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-bottom: 40px;
  color: #222723;
}

.bonus-banner h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.review-form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #f9c719;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  color: #cccccc;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f9c719;
  box-shadow: 0 0 0 2px rgba(249, 199, 25, 0.2);
}

.rating-inputs {
  margin: 30px 0;
}

.rating-inputs h4 {
  margin-bottom: 20px;
  color: #f9c719;
}

.rating-input-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-input-group label {
  color: #cccccc;
  font-size: 14px;
}

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

.star-rating .star {
  font-size: 20px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
  color: #f9c719;
}

.success-message {
  background-color: #02504b;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
}

.success-message h3 {
  color: #f9c719;
  margin-bottom: 15px;
}

/* User Reviews Section */
.user-reviews-section {
  padding: 60px 0;
  background-color: #1a3a35;
}

.user-reviews-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #f9c719;
}

.reviews-stats {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #cccccc;
}

/* FAQ Section */
.faq-section {
  margin-top: 60px;
}

.faq-section h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #f9c719;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
}

.faq-toggle {
  font-size: 24px;
  color: #f9c719;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: #cccccc;
  line-height: 1.6;
}

.faq-item:not(.active) .faq-answer {
  display: none;
}

.review-cta-banner {
  background: linear-gradient(135deg, #02504b, #034540);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

.cta-content h3 {
  color: #f9c719;
  margin-bottom: 15px;
}

.cta-content p {
  color: #cccccc;
  margin-bottom: 25px;
}

/* Comparison Section Enhanced */
.comparison-section {
  padding: 60px 0;
  background-color: #0e2f2b;
}

.comparison-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #f9c719;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  min-width: 600px;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.comparison-table th {
  background-color: #222723;
  color: #f9c719;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.comparison-table .highlighted {
  background-color: rgba(249, 199, 25, 0.15);
  color: #f9c719;
  font-weight: 700;
  position: relative;
}

.comparison-table .highlighted::before {
  content: "РЕКОМЕНДУЕМ";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f9c719, #e6b516);
  color: #222723;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.comparison-table tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.comparison-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.comparison-actions .btn {
  min-width: 150px;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.comparison-actions .btn.highlighted {
  background: linear-gradient(135deg, #f9c719, #e6b516);
  color: #222723;
  box-shadow: 0 4px 15px rgba(249, 199, 25, 0.4);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 4px 15px rgba(249, 199, 25, 0.4);
  }
  to {
    box-shadow: 0 6px 20px rgba(249, 199, 25, 0.6);
  }
}

/* Screenshots Section Enhanced */
.screenshots-section {
  margin-bottom: 80px;
}

.screenshots-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #f9c719;
  position: relative;
}

.screenshots-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f9c719, #e6b516);
  border-radius: 2px;
}

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

.screenshot-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
}

.screenshot-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.screenshot-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.screenshot-item:hover img {
  transform: scale(1.05);
}

.screenshot-item::after {
  content: "🔍 Увеличить";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #ffffff;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.screenshot-item:hover::after {
  opacity: 1;
}

/* Video Review Section Enhanced */
.video-review-section {
  margin-bottom: 80px;
}

.video-review-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #f9c719;
  position: relative;
}

.video-review-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f9c719, #e6b516);
  border-radius: 2px;
}

.video-container {
  max-width: 900px;
  margin: 0 auto 60px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  loading: lazy;
}

.video-info {
  text-align: center;
  margin-top: 20px;
  color: #cccccc;
  font-size: 14px;
}

.video-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.video-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-stat-icon {
  font-size: 16px;
}

.video-stat-text {
  font-size: 13px;
  color: #cccccc;
}

/* Text Review Section Enhanced */
.text-review-section {
  margin-bottom: 80px;
}

.text-review-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #f9c719;
  position: relative;
}

.text-review-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f9c719, #e6b516);
  border-radius: 2px;
}

.text-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.text-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f9c719, #e6b516);
  border-radius: 20px 20px 0 0;
}

.text-content h2,
.text-content h3 {
  color: #f9c719;
  margin-top: 35px;
  margin-bottom: 20px;
  position: relative;
}

.text-content h2:first-child {
  margin-top: 0;
}

.text-content h3::before {
  content: "▶";
  color: #f9c719;
  margin-right: 10px;
  font-size: 0.8em;
}

.text-content ul,
.text-content ol {
  margin-left: 25px;
  margin-bottom: 25px;
}

.text-content li {
  margin-bottom: 10px;
  color: #cccccc;
  line-height: 1.7;
}

.text-content li::marker {
  color: #f9c719;
}

.text-content p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.text-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  overflow: hidden;
}

.text-content th,
.text-content td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.text-content th {
  background-color: rgba(249, 199, 25, 0.1);
  color: #f9c719;
  font-weight: 600;
}

.text-content td {
  color: #cccccc;
}

.text-content blockquote {
  border-left: 4px solid #f9c719;
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
  color: #e6e6e6;
  background: rgba(249, 199, 25, 0.05);
  padding: 20px;
  border-radius: 0 10px 10px 0;
}

/* Author Info Enhanced */
.author-info {
  margin-top: 80px;
}

.author-info h3 {
  text-align: center;
  margin-bottom: 40px;
  color: #f9c719;
  position: relative;
}

.author-info h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f9c719, #e6b516);
  border-radius: 2px;
}

.author-card {
  display: flex;
  gap: 25px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.author-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f9c719, #e6b516);
  border-radius: 20px 20px 0 0;
}

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

.author-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(249, 199, 25, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.author-details h4 {
  color: #f9c719;
  margin-bottom: 15px;
  font-size: 20px;
}

.author-details p {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.author-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.author-links a {
  color: #f9c719;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid rgba(249, 199, 25, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-links a:hover {
  background-color: rgba(249, 199, 25, 0.1);
  border-color: #f9c719;
  transform: translateY(-2px);
}

.author-links a::before {
  font-size: 16px;
}

.author-links a[href*="linkedin"]::before {
  content: "💼";
}

.author-links a[href*="facebook"]::before {
  content: "📘";
}

/* Mobile Slider for Screenshots */
@media (max-width: 768px) {
  .screenshots-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
  }

  .screenshot-item {
    min-width: 300px;
    scroll-snap-align: start;
  }

  .video-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

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

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

  .text-content {
    padding: 30px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
    font-size: 13px;
  }

  .floating-widget {
    animation-duration: 2s;
  }

  .pulse {
    animation-duration: 1.5s;
  }
}

@media (max-width: 480px) {
  .screenshot-item {
    min-width: 280px;
  }

  .author-avatar img {
    width: 80px;
    height: 80px;
  }

  .text-content {
    padding: 20px;
  }

  .comparison-table {
    min-width: 500px;
  }

  .comparison-actions .btn {
    min-width: 120px;
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Footer */
.footer {
  background-color: #222723;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #f9c719;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-description {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f9c719;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item img {
  width: 40px;
  height: 30px;
  object-fit: contain;
}

.trust-item span {
  color: #cccccc;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

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

.copyright p {
  color: #cccccc;
  font-size: 12px;
  margin-bottom: 5px;
}

.disclaimer {
  color: #999;
  font-size: 11px;
}

.footer-meta {
  display: flex;
  gap: 20px;
  color: #999;
  font-size: 12px;
}

/* Floating Widget */
.floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #f9c719, #e6b516);
  border-radius: 50px;
  padding: 15px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.widget-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.widget-bonus {
  color: #222723;
  font-weight: 700;
  font-size: 14px;
}

.widget-btn {
  background-color: #02504b;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header-content {
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .casino-card {
    padding: 20px;
  }

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

  .casino-actions {
    flex-direction: column;
  }

  .toc-tabs {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reviews-stats {
    flex-direction: column;
    gap: 10px;
  }

  .comparison-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .floating-widget {
    bottom: 10px;
    right: 10px;
    padding: 10px 15px;
  }

  .widget-content {
    flex-direction: column;
    gap: 8px;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 500px;
  }

  .casino-card {
    padding: 15px;
  }

  .casino-name {
    font-size: 1.5rem;
  }

  .rating-value {
    font-size: 2rem;
  }

  .rating-bar {
    width: 80px;
  }

  .review-form-container {
    padding: 20px;
  }

  .text-content {
    padding: 20px;
  }

  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.25rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

/* WordPress-like elements for obfuscation */
.wp-block-group {
  display: block;
}
.wp-block-columns {
  display: flex;
}
.wp-block-column {
  flex: 1;
}
.elementor-widget {
  display: block;
}
.elementor-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Unused styles for uniqueness */
.x9k2m {
  min-height: 100vh;
}
.p7w3n {
  position: relative;
}
.q8v5r {
  flex: 1;
}
.z4h8k {
  display: none;
}
.m3n7p {
  visibility: hidden;
}
.r6t2s {
  opacity: 0;
}
.l9x4c {
  transform: scale(0);
}
.w5y1b {
  filter: blur(0px);
}

/* Adding reviews styles import */
@import url("/reviews-styles.css");

/* Critical CSS optimizations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Improve font loading performance */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Optimize images for better loading */
img {
  max-width: 100%;
  height: auto;
  loading: lazy;
}

img[loading="eager"] {
  loading: eager;
}

/* Critical above-the-fold images */
.hero-bg-image,
.casino-logo img,
.logo img {
  loading: eager;
}

/* Optimize animations for performance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Improve scroll performance */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* Optimize table rendering */
.comparison-table {
  table-layout: fixed;
  width: 100%;
}

/* Improve button accessibility */
.btn:focus-visible {
  outline: 2px solid #f9c719;
  outline-offset: 2px;
}

/* Optimize video loading */
.video-container iframe {
  loading: lazy;
}

/* Improve form accessibility */
.form-group input:invalid {
  border-color: #ff4444;
}

.form-group input:valid {
  border-color: #44ff44;
}

/* Screen reader improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 2px solid #ffffff;
  }

  .btn-secondary {
    border: 2px solid #222723;
  }

  .mb-review-card {
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
  /* Already dark theme, no changes needed */
}

/* Print styles */
@media print {
  .header,
  .floating-widget,
  .video-container,
  .btn,
  .mobile-menu {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .text-content {
    background: white !important;
    color: black !important;
  }

  a {
    color: black !important;
    text-decoration: underline !important;
  }
}

/* Focus management for keyboard navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #f9c719;
  color: #222723;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* Optimize critical rendering path */
.above-fold {
  contain: layout style paint;
}

/* Improve scrolling performance on mobile */
.scroll-container {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Optimize animations for mobile */
@media (max-width: 768px) {
  .floating-widget {
    animation-duration: 2s;
  }

  .pulse {
    animation-duration: 1.5s;
  }
}

/* Final performance optimizations */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

/* Remove will-change after animation */
.animation-complete {
  will-change: auto;
}
