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

body {
  font-family: "Open Sans", sans-serif;
  background-color: #01001d;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header Styles */
.main-header {
  background-color: #010a37;
  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;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

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

.main-nav .nav-list a:hover {
  color: #1557d9;
}

.main-nav .nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1557d9;
  transition: width 0.3s ease;
}

.main-nav .nav-list a:hover::after {
  width: 100%;
}

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

.reviews-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

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

.counter-number {
  font-size: 18px;
  font-weight: 700;
  color: #ffc201;
}

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

.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: #1557d9;
  color: #ffffff;
}

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

.btn-register {
  background-color: #ffc201;
  color: #000000;
}

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

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

.btn-review:hover {
  background-color: #ffffff;
  color: #010a37;
}

.btn-primary {
  background-color: #1557d9;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #0d47a1;
  color: #ffffff;
}

.btn-secondary {
  background-color: #6c757d;
  color: #ffffff;
}

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

.btn-bonus {
  background-color: #ffc201;
  color: #000000;
}

.btn-bonus:hover {
  background-color: #e6ae00;
  color: #000000;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

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

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

.mobile-nav {
  padding: 20px 0;
  background-color: rgba(1, 10, 55, 0.95);
  backdrop-filter: blur(10px);
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.mobile-nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-reviews-counter {
  margin-top: 20px;
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
}

.breadcrumb {
  background: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item a {
  color: #1557d9;
  text-decoration: none;
}

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

/* Hero Section */
.hero-section {
  margin: 30px 0;
}

.hero-banner {
  background: linear-gradient(135deg, rgba(1, 10, 55, 0.9), rgba(21, 87, 217, 0.3)), url("/volta-casino-aviator.png");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(21, 87, 217, 0.1), rgba(255, 194, 1, 0.1));
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.casino-info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.casino-logo img {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
}

.casino-rating {
  text-align: center;
  margin-bottom: 20px;
}

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

.rating-value {
  font-size: 32px;
  font-weight: 700;
  color: #ffc201;
}

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

.star {
  font-size: 24px;
  color: #666;
  transition: color 0.3s ease;
}

.star.filled,
.star.star-filled {
  color: #ffc201;
}

.casino-bonus {
  text-align: center;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #ffc201, #ff9800);
  border-radius: 15px;
  color: #000000;
}

.bonus-text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.bonus-amount {
  font-size: 24px;
  font-weight: 800;
}

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

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

.rating-breakdown h3 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
}

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

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

.rating-label {
  min-width: 70px;
  color: #cccccc;
}

.bar-container {
  flex: 1;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffc201, #1557d9);
  border-radius: 4px;
  transition: width 0.8s ease;
}

.rating-count {
  min-width: 20px;
  text-align: center;
  color: #ffc201;
  font-weight: 600;
}

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

.bonus-tile {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.bonus-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #cccccc;
}

.bonus-value {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffc201;
}

.casino-advantages {
  margin-top: 40px;
  text-align: center;
}

.casino-advantages h3 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #ffffff;
}

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

.advantage-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-3px);
}

.advantage-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
}

.advantage-text {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* Table of Contents */
.table-of-contents {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-of-contents h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 24px;
}

.toc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.toc-list a {
  color: #1557d9;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: block;
  transition: all 0.3s ease;
}

.toc-list a:hover {
  background: rgba(21, 87, 217, 0.2);
  transform: translateX(5px);
}

/* Review Form */
.leave-review-section {
  margin: 60px 0;
}

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

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

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

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1557d9;
}

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

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

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

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

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

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

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

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

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

.success-message {
  background: linear-gradient(135deg, #4caf50, #45a049);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
}

.success-message h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

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

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

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

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

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

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

.review-date {
  color: #999;
  font-size: 14px;
}

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

.rating-details-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1557d9;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.rating-details-btn:hover {
  background: rgba(21, 87, 217, 0.2);
}

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

.review-source {
  margin-bottom: 15px;
  font-size: 14px;
  color: #cccccc;
}

.review-source a {
  color: #1557d9;
  text-decoration: none;
}

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

.review-text {
  color: #ffffff;
  line-height: 1.7;
}

.review-expand-btn {
  background: none;
  border: none;
  color: #1557d9;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  transition: color 0.3s ease;
}

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

.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.review-pros h5,
.review-cons h5 {
  margin-bottom: 10px;
  color: #ffffff;
}

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

.pro-item {
  color: #4caf50;
  margin-bottom: 5px;
  font-size: 14px;
}

.con-item {
  color: #f44336;
  margin-bottom: 5px;
  font-size: 14px;
}

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

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

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

.vote-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.like-btn:hover {
  border-color: #4caf50;
  color: #4caf50;
}

.dislike-btn:hover {
  border-color: #f44336;
  color: #f44336;
}

.reply-btn {
  background: none;
  border: 1px solid #1557d9;
  color: #1557d9;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.reply-btn:hover {
  background: rgba(21, 87, 217, 0.2);
}

.reply-form {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.reply-textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  resize: vertical;
  margin-bottom: 15px;
}

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

.rating-details {
  margin-top: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

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

.detailed-ratings .rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

/* Review Bonus Banner */
.review-bonus-banner {
  background: linear-gradient(135deg, #ffc201, #ff9800);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  color: #000000;
}

.banner-content h3 {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 700;
}

.banner-content p {
  margin-bottom: 25px;
  font-size: 16px;
}

/* Comparison Table */
.casino-comparison-section {
  margin: 60px 0;
}

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

.comparison-table-container {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  color: #ffffff;
}

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

.comparison-table th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  color: #ffc201;
}

.comparison-table .positive {
  color: #4caf50;
  font-weight: 600;
}

.comparison-table .negative {
  color: #f44336;
  font-weight: 600;
}

.comparison-table .neutral {
  color: #ffffff;
}

/* Supplementary Content */
.supplementary-content-section {
  margin: 60px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
}

.supplementary-content-section h1 {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 36px;
  text-align: center;
}

.casino-review-content {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 40px;
}

.casino-review-content h2,
.casino-review-content h3,
.casino-review-content h4 {
  color: #ffc201;
  margin: 30px 0 15px 0;
}

.casino-review-content p {
  margin-bottom: 20px;
}

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

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

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

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

.casino-review-content table th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  color: #ffc201;
}

.author-info {
  margin-top: 40px;
}

.author-card {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.author-details h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 24px;
}

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

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

.author-social a {
  color: #1557d9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.author-social a:hover {
  color: #ffc201;
}

/* Footer */
.main-footer {
  background-color: #010a37;
  padding: 50px 0 20px;
  margin-top: 80px;
}

.footer-content {
  color: #ffffff;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-section h5 {
  color: #ffc201;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.footer-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
}

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

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

.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: #1557d9;
}

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

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
}

.contact-label {
  color: #ffc201;
  font-weight: 600;
}

.contact-item a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #1557d9;
}

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

.payment-methods {
  text-align: center;
  margin-bottom: 30px;
}

.payment-title {
  color: #ffc201;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

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

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

.trust-badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 600;
  color: #ffc201;
}

.footer-bottom {
  color: #cccccc;
}

.copyright p {
  margin-bottom: 10px;
  font-size: 14px;
}

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

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.social-link {
  color: #cccccc;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #1557d9;
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr 250px;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rating-breakdown {
    max-width: 400px;
    margin: 0 auto;
  }

  .bonus-tiles {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .toc-list {
    grid-template-columns: 1fr;
  }

  .rating-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }

  .hero-banner {
    padding: 30px 20px;
  }

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

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

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

  .review-card {
    padding: 20px;
  }

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

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

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

  .trust-badges {
    gap: 10px;
  }

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

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

@media (max-width: 576px) {
  .header-buttons .btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .btn-review {
    display: none !important;
  }

  .hero-banner {
    padding: 20px 15px;
  }

  .bonus-tiles {
    grid-template-columns: 1fr;
  }

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

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

  .comparison-table-container {
    padding: 10px;
  }

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

  .supplementary-content-section {
    padding: 30px 20px;
  }

  .footer-content {
    text-align: center;
  }

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

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

.wp-block-columns {
  display: none;
}

.elementor-widget {
  display: none;
}

.yoast-breadcrumb {
  display: none;
}

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

.review-card {
  animation: fadeInUp 0.6s ease forwards;
}

.review-card:nth-child(even) {
  animation-delay: 0.1s;
}

.review-card:nth-child(odd) {
  animation-delay: 0.2s;
}
