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

body {
  font-family: "Open Sans", Verdana, Geneva, sans-serif;
  background-color: #00123a;
  color: #ffffff;
  line-height: 1.6;
}

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

/* Header Styles */
.header-main {
  background-color: #0c347d;
  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: 20px;
}

.logo-link img {
  height: 40px;
  width: auto;
}

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

.count-number {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.count-text {
  font-size: 12px;
  color: #cccccc;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

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

.nav-menu a:hover {
  color: #0666de;
}

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

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

.mobile-buttons {
  display: none;
}

/* Button Styles */
.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

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

.btn-login:hover {
  background-color: #0555cd;
  color: #ffffff;
}

.btn-register {
  background-color: #c00610;
  color: #ffffff;
}

.btn-register:hover {
  background-color: #a00508;
  color: #ffffff;
}

.btn-primary {
  background-color: #0666de;
  color: #ffffff;
}

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

.btn-large {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
}

.btn-small {
  padding: 6px 12px;
  font-size: 12px;
}

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

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

/* Breadcrumbs */
.breadcrumbs-section {
  background-color: rgba(12, 52, 125, 0.3);
  padding: 10px 0;
}

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

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

.separator {
  margin: 0 8px;
}

.current {
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

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

.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(0, 18, 58, 0.9) 0%, rgba(12, 52, 125, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Casino Card */
.casino-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.casino-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.casino-rating {
  margin-bottom: 25px;
}

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

.rating-value {
  font-size: 36px;
  font-weight: 700;
  color: #00ff88;
}

.rating-bar {
  width: 120px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #c00610 0%, #ff8800 50%, #00ff88 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}

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

.casino-bonus {
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #c00610 0%, #ff4444 100%);
  border-radius: 15px;
}

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

.bonus-amount {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.bonus-desc {
  font-size: 12px;
  color: #ffcccc;
}

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

/* Casino Info Card */
.casino-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
}

.casino-info-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

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

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

.info-label {
  font-weight: 600;
  color: #cccccc;
}

.info-value {
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-value img {
  height: 20px;
  width: auto;
}

.info-toggle-btn {
  width: 100%;
  padding: 12px;
  background: #0666de;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.info-toggle-btn:hover {
  background-color: #0555cd;
}

/* Table of Contents */
.toc-section {
  background-color: rgba(12, 52, 125, 0.5);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.toc-tab {
  padding: 12px 24px;
  background: transparent;
  color: #cccccc;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.toc-tab:hover,
.toc-tab.active {
  background-color: #0666de;
  color: #ffffff;
  border-color: #0666de;
}

/* Content Wrapper */
.content-wrapper {
  padding: 40px 0;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.text-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
}

.text-content h2 {
  color: #0666de;
  font-size: 24px;
  margin-bottom: 20px;
}

.text-content h3 {
  color: #ffffff;
  font-size: 20px;
  margin: 25px 0 15px 0;
}

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

.text-content ul {
  color: #cccccc;
  margin-left: 20px;
  margin-bottom: 20px;
}

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

/* Reviews Section Styles */
.reviews-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(0, 18, 58, 0.8) 0%, rgba(12, 52, 125, 0.6) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 18px;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.reviews-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Review Card Styles */
.review-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.author-country {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #cccccc;
}

.author-country img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}

.review-date {
  font-size: 12px;
  color: #999999;
}

.review-rating {
  text-align: right;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rating-value {
  font-size: 24px;
  font-weight: 700;
  color: #00ff88;
}

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

.star {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
  cursor: pointer;
}

.star-filled {
  color: #ffd700;
}

.rating-details-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #cccccc;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rating-details-btn:hover {
  border-color: #0666de;
  color: #0666de;
}

.review-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.review-source {
  margin-bottom: 15px;
  font-size: 12px;
}

.source-label {
  color: #999999;
}

.source-link {
  color: #0666de;
  text-decoration: none;
}

.source-link:hover {
  text-decoration: underline;
}

.source-name {
  color: #cccccc;
}

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

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

.review-text-truncated {
  position: relative;
}

.review-expand-btn {
  background: none;
  border: none;
  color: #0666de;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  padding: 0;
  text-decoration: underline;
}

.review-expand-btn:hover {
  color: #0555cd;
}

/* Pros and Cons Styles */
.pros-cons-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.pros-title,
.cons-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pros-title {
  color: #00ff88;
}

.cons-title {
  color: #ff6b6b;
}

.pros-list ul,
.cons-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pro-item {
  color: #cccccc;
  font-size: 13px;
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}

.pro-item::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: 700;
}

.con-item {
  color: #cccccc;
  font-size: 13px;
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}

.con-item::before {
  content: "−";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: 700;
}

/* Review Actions */
.review-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vote-buttons {
  display: flex;
  gap: 15px;
}

.vote-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cccccc;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
}

.vote-btn:hover {
  border-color: #0666de;
  color: #0666de;
}

.vote-btn.active {
  background-color: #0666de;
  border-color: #0666de;
  color: #ffffff;
}

.vote-icon {
  font-size: 14px;
}

.reply-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #cccccc;
  padding: 8px 16px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
}

.reply-btn:hover {
  border-color: #0666de;
  color: #0666de;
}

/* Reply Form */
.reply-form-container {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.reply-textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  min-height: 80px;
}

.reply-textarea::placeholder {
  color: #999999;
}

.reply-textarea:focus {
  outline: none;
  border-color: #0666de;
}

.reply-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.reply-actions .btn {
  flex: 1;
}

/* Rating Details Modal */
.rating-details {
  margin-top: 15px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detailed-ratings {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

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

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

.rating-stars .star {
  font-size: 14px;
}

/* Load More Button */
.reviews-pagination {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  background: linear-gradient(135deg, #0666de 0%, #0555cd 100%);
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 102, 222, 0.3);
}

/* Footer */
.footer-main {
  background-color: #0c347d;
  padding: 40px 0 20px 0;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

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

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

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

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

.footer-menu li {
  margin-bottom: 8px;
}

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

.footer-menu a:hover {
  color: #0666de;
}

.trust-logos img {
  height: 40px;
  margin-bottom: 15px;
}

.responsible-text {
  color: #cccccc;
  font-size: 12px;
  line-height: 1.5;
}

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

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

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

/* Floating Widget */
.floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #c00610 0%, #ff4444 100%);
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(192, 6, 16, 0.4);
  animation: pulse 2s infinite;
}

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

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

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

.widget-btn:hover {
  background-color: #f0f0f0;
  color: #c00610;
}

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

/* Review Form Styles */
.leave-review-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(12, 52, 125, 0.8) 0%, rgba(0, 18, 58, 0.9) 100%);
}

.review-bonus-banner {
  background: linear-gradient(135deg, #c00610 0%, #ff4444 100%);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(192, 6, 16, 0.3);
}

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

.bonus-info h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bonus-info p {
  color: #ffcccc;
  font-size: 16px;
  margin: 0;
}

.bonus-claim-btn {
  background-color: #ffffff;
  color: #c00610;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

.review-form-container h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.review-form {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.form-group label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0666de;
  background: rgba(255, 255, 255, 0.15);
}

.rating-system {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
}

.rating-system h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

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

.rating-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.rating-category label {
  color: #cccccc;
  font-size: 14px;
  font-weight: 500;
}

.star-rating {
  display: flex;
  gap: 3px;
  cursor: pointer;
}

.rating-star {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease;
  cursor: pointer;
}

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

.overall-rating {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.overall-rating label {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.overall-stars {
  font-size: 24px;
  color: #ffd700;
}

.submit-review-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #0666de 0%, #0555cd 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 102, 222, 0.3);
}

.review-success {
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  margin-top: 20px;
}

.success-content h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.success-content p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 10px;
}

/* FAQ Styles */
.faq-section {
  padding: 60px 0;
  background: rgba(0, 18, 58, 0.6);
}

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

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

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

.faq-question h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

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

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

.faq-answer {
  padding: 0 25px 20px 25px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Comparison Table Styles */
.comparison-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(0, 18, 58, 0.9) 0%, rgba(12, 52, 125, 0.7) 100%);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-collapse: collapse;
  backdrop-filter: blur(10px);
}

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

.comparison-table th {
  background: rgba(12, 52, 125, 0.8);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

.casino-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.casino-header img {
  height: 30px;
  width: auto;
}

.featured-casino {
  background: linear-gradient(135deg, #0666de 0%, #0555cd 100%);
}

.param-name {
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-weight: 600;
  text-align: left;
}

.featured-cell {
  background: rgba(6, 102, 222, 0.2);
  color: #ffffff;
  font-weight: 600;
}

.comparison-table td {
  color: #cccccc;
  font-size: 14px;
}

.rating-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.rating-value {
  font-size: 18px;
  font-weight: 700;
  color: #00ff88;
}

.stars {
  color: #ffd700;
  font-size: 16px;
}

.btn-table {
  padding: 8px 16px;
  font-size: 12px;
  min-width: 80px;
}

.action-row td {
  padding: 25px 20px;
}

/* Supplementary Content Styles */
.supplementary-section {
  padding: 60px 0;
  background: rgba(0, 18, 58, 0.8);
}

.screenshots-block,
.video-review-block,
.text-review-block,
.author-info-block {
  margin-bottom: 60px;
}

.screenshots-block h2,
.video-review-block h2,
.text-review-block h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

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

.screenshot-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.screenshot-item:hover {
  transform: translateY(-5px);
}

.screenshot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.screenshot-caption {
  padding: 15px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
}

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

.video-description {
  color: #cccccc;
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}

.text-review-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
}

.review-content {
  color: #cccccc;
  line-height: 1.7;
  font-size: 16px;
}

.review-content h2,
.review-content h3,
.review-content h4 {
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.review-content h2 {
  color: #0666de;
  font-size: 24px;
}

.review-content h3 {
  font-size: 20px;
}

.review-content ul,
.review-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

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

.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

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

.review-content th {
  background: rgba(6, 102, 222, 0.3);
  color: #ffffff;
  font-weight: 600;
}

.author-info-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  padding: 30px;
}

.author-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.author-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-details h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.author-title {
  color: #0666de;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.author-bio {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.social-link {
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link.linkedin {
  background-color: #0077b5;
  color: #ffffff;
}

.social-link.facebook {
  background-color: #1877f2;
  color: #ffffff;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .comparison-table-wrapper {
    margin: 0 -20px;
  }

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

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

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

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

@media (max-width: 480px) {
  .review-form-container {
    padding: 25px 20px;
  }

  .rating-system {
    padding: 20px 15px;
  }

  .faq-question {
    padding: 15px 20px;
  }

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

  .text-review-block {
    padding: 25px 20px;
  }
}

/* Additional WordPress-like styles for obfuscation */
.wp-block-group {
  display: none;
}
.wp-block-columns {
  display: none;
}
.elementor-widget {
  display: none;
}
.yoast-breadcrumb {
  display: none;
}
.wp-block-image {
  display: none;
}
.wp-block-paragraph {
  display: none;
}
.elementor-section {
  display: none;
}
.elementor-container {
  display: none;
}
.wp-block-heading {
  display: none;
}
.wp-block-list {
  display: none;
}
.wp-block-quote {
  display: none;
}
.wp-block-separator {
  display: none;
}
.wp-block-spacer {
  display: none;
}
.wp-block-media-text {
  display: none;
}
.wp-block-gallery {
  display: none;
}
.wp-block-embed {
  display: none;
}
.wp-block-table {
  display: none;
}
.wp-block-button {
  display: none;
}
.wp-block-buttons {
  display: none;
}
.wp-block-cover {
  display: none;
}
.wp-block-video {
  display: none;
}
.wp-block-audio {
  display: none;
}
.wp-block-file {
  display: none;
}
.wp-block-code {
  display: none;
}
.wp-block-preformatted {
  display: none;
}
.wp-block-pullquote {
  display: none;
}
.wp-block-verse {
  display: none;
}
.wp-block-calendar {
  display: none;
}
.wp-block-archives {
  display: none;
}
.wp-block-categories {
  display: none;
}
.wp-block-latest-posts {
  display: none;
}
.wp-block-latest-comments {
  display: none;
}
.wp-block-tag-cloud {
  display: none;
}
.wp-block-search {
  display: none;
}
.wp-block-rss {
  display: none;
}
.wp-block-shortcode {
  display: none;
}
.wp-block-html {
  display: none;
}
.wp-block-more {
  display: none;
}
.wp-block-nextpage {
  display: none;
}
.wp-block-freeform {
  display: none;
}
.wp-block-missing {
  display: none;
}

/* Elementor-like obfuscation styles */
.elementor-element {
  display: none;
}
.elementor-widget-wrap {
  display: none;
}
.elementor-column {
  display: none;
}
.elementor-row {
  display: none;
}
.elementor-inner {
  display: none;
}
.elementor-top-section {
  display: none;
}
.elementor-spacer {
  display: none;
}
.elementor-divider {
  display: none;
}
.elementor-image {
  display: none;
}
.elementor-text-editor {
  display: none;
}
.elementor-heading {
  display: none;
}
.elementor-button {
  display: none;
}
.elementor-icon {
  display: none;
}
.elementor-icon-list {
  display: none;
}
.elementor-counter {
  display: none;
}
.elementor-progress {
  display: none;
}
.elementor-testimonial {
  display: none;
}
.elementor-tabs {
  display: none;
}
.elementor-accordion {
  display: none;
}
.elementor-toggle {
  display: none;
}
.elementor-social-icons {
  display: none;
}
.elementor-alert {
  display: none;
}
.elementor-soundcloud {
  display: none;
}
.elementor-shortcode {
  display: none;
}
.elementor-html {
  display: none;
}
.elementor-menu-anchor {
  display: none;
}
.elementor-sidebar {
  display: none;
}
.elementor-google-maps {
  display: none;
}
.elementor-icon-box {
  display: none;
}
.elementor-star-rating {
  display: none;
}
.elementor-image-box {
  display: none;
}
.elementor-call-to-action {
  display: none;
}
.elementor-price-list {
  display: none;
}
.elementor-price-table {
  display: none;
}
.elementor-flip-box {
  display: none;
}
.elementor-hotspot {
  display: none;
}
.elementor-media-carousel {
  display: none;
}
.elementor-testimonial-carousel {
  display: none;
}
.elementor-reviews {
  display: none;
}
.elementor-image-carousel {
  display: none;
}
.elementor-blockquote {
  display: none;
}
.elementor-video {
  display: none;
}
.elementor-animated-headline {
  display: none;
}
.elementor-countdown {
  display: none;
}
.elementor-form {
  display: none;
}
.elementor-login {
  display: none;
}
.elementor-nav-menu {
  display: none;
}
.elementor-posts {
  display: none;
}
.elementor-portfolio {
  display: none;
}
.elementor-gallery {
  display: none;
}
.elementor-slider {
  display: none;
}
.elementor-table-of-contents {
  display: none;
}
.elementor-breadcrumbs {
  display: none;
}
.elementor-sitemap {
  display: none;
}
.elementor-author-box {
  display: none;
}
.elementor-post-info {
  display: none;
}
.elementor-post-title {
  display: none;
}
.elementor-post-excerpt {
  display: none;
}
.elementor-post-content {
  display: none;
}
.elementor-post-navigation {
  display: none;
}
.elementor-archive-title {
  display: none;
}
.elementor-archive-posts {
  display: none;
}
.elementor-search-form {
  display: none;
}
.elementor-woocommerce {
  display: none;
}

/* Yoast SEO-like obfuscation styles */
.yoast-seo {
  display: none;
}
.yoast-schema {
  display: none;
}
.yoast-breadcrumbs {
  display: none;
}
.yoast-primary-term {
  display: none;
}
.yoast-estimated-reading-time {
  display: none;
}
.yoast-prominent-words {
  display: none;
}
.yoast-related-posts {
  display: none;
}
.yoast-social-previews {
  display: none;
}
.yoast-cornerstone {
  display: none;
}
.yoast-focus-keyword {
  display: none;
}
.yoast-readability {
  display: none;
}
.yoast-seo-score {
  display: none;
}
.yoast-content-analysis {
  display: none;
}
.yoast-snippet-preview {
  display: none;
}
.yoast-metabox {
  display: none;
}
.yoast-sidebar {
  display: none;
}
.yoast-modal {
  display: none;
}
.yoast-notification {
  display: none;
}
.yoast-help {
  display: none;
}
.yoast-premium {
  display: none;
}
.yoast-local {
  display: none;
}
.yoast-news {
  display: none;
}
.yoast-video {
  display: none;
}
.yoast-woocommerce {
  display: none;
}

/* Additional theme-like obfuscation */
.theme-twentytwentyfour {
  display: none;
}
.theme-twentytwentythree {
  display: none;
}
.theme-twentytwentytwo {
  display: none;
}
.theme-twentytwentyone {
  display: none;
}
.theme-twentytwenty {
  display: none;
}
.theme-astra {
  display: none;
}
.theme-generatepress {
  display: none;
}
.theme-oceanwp {
  display: none;
}
.theme-neve {
  display: none;
}
.theme-kadence {
  display: none;
}
.theme-blocksy {
  display: none;
}
.theme-customify {
  display: none;
}
.theme-hestia {
  display: none;
}
.theme-sydney {
  display: none;
}
.theme-zakra {
  display: none;
}

/* Plugin-like obfuscation styles */
.woocommerce {
  display: none;
}
.wc-block {
  display: none;
}
.contact-form-7 {
  display: none;
}
.cf7 {
  display: none;
}
.wpforms {
  display: none;
}
.gravity-form {
  display: none;
}
.ninja-forms {
  display: none;
}
.mailchimp {
  display: none;
}
.jetpack {
  display: none;
}
.akismet {
  display: none;
}
.wordfence {
  display: none;
}
.rankmath {
  display: none;
}
.all-in-one-seo {
  display: none;
}
.wp-rocket {
  display: none;
}
.w3-total-cache {
  display: none;
}
.wp-super-cache {
  display: none;
}
.litespeed-cache {
  display: none;
}
.smush {
  display: none;
}
.shortpixel {
  display: none;
}
.imagify {
  display: none;
}
.wp-optimize {
  display: none;
}
.updraftplus {
  display: none;
}
.backwpup {
  display: none;
}
.duplicator {
  display: none;
}
.migration {
  display: none;
}
.maintenance-mode {
  display: none;
}
.coming-soon {
  display: none;
}
.under-construction {
  display: none;
}
.slider-revolution {
  display: none;
}
.layerslider {
  display: none;
}
.smart-slider {
  display: none;
}
.meta-slider {
  display: none;
}
.soliloquy {
  display: none;
}
.envira-gallery {
  display: none;
}
.nextgen-gallery {
  display: none;
}
.wp-gallery {
  display: none;
}
.foogallery {
  display: none;
}
.modula-gallery {
  display: none;
}

/* Performance optimization styles */
.lazyload {
  opacity: 0;
  transition: opacity 0.3s;
}
.lazyloaded {
  opacity: 1;
}

/* Print styles */
@media print {
  .floating-widget,
  .header-main,
  .footer-main,
  .toc-section,
  .review-bonus-banner,
  .bonus-claim-btn,
  .submit-review-btn,
  .vote-btn,
  .reply-btn,
  .load-more-btn {
    display: none !important;
  }

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

  .review-card,
  .casino-card,
  .casino-info-card,
  .faq-item,
  .comparison-table {
    background: white !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }

  .review-text,
  .author-name,
  .review-title,
  .faq-question h3,
  .section-header h2 {
    color: black !important;
  }
}

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

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

  .review-card,
  .casino-card {
    border: 2px solid #ffffff;
  }
}

/* Reduced motion support */
@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;
  }

  .floating-widget {
    animation: none;
  }
}

/* Dark mode support (for systems that support it) */
@media (prefers-color-scheme: dark) {
  /* Already dark by default, but ensure consistency */
  body {
    background-color: #00123a;
    color: #ffffff;
  }
}

/* Focus styles for accessibility */
.btn:focus,
.form-group input:focus,
.form-group textarea:focus,
.rating-star:focus,
.faq-question:focus,
.toc-tab:focus {
  outline: 2px solid #0666de;
  outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #0666de;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

/* Screen reader only text */
.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;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #0666de;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Error states */
.error {
  border-color: #ff6b6b !important;
  background-color: rgba(255, 107, 107, 0.1) !important;
}

.error-message {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 5px;
}

/* Success states */
.success {
  border-color: #00ff88 !important;
  background-color: rgba(0, 255, 136, 0.1) !important;
}

.success-message {
  color: #00ff88;
  font-size: 12px;
  margin-top: 5px;
}
