/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PT Sans", sans-serif;
  background-color: #323234;
  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: #000000;
  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;
}

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

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

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

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

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

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

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

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

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-login {
  background-color: #00fbc8;
  color: #000000;
}

.btn-login:hover {
  background-color: #00d4a8;
  color: #000000;
}

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

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

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

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

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

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

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

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

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

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #333333;
}

/* Breadcrumbs */
.breadcrumbs-section {
  background-color: #2a2a2c;
  padding: 10px 0;
}

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

.breadcrumb-item a {
  color: #00fbc8;
  text-decoration: none;
}

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

/* Hero section */
.hero-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a1c 0%, #323234 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/pin-up-casino-banner.png");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.casino-card {
  background: linear-gradient(145deg, #2a2a2c, #1a1a1c);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #404042;
}

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

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

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

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

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

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

.casino-bonus h3 {
  color: #ff2e09;
  font-size: 22px;
  margin-bottom: 5px;
}

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

.btn-primary {
  background-color: #ff2e09;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 16px;
}

.btn-secondary {
  background-color: transparent;
  color: #00fbc8;
  border: 2px solid #00fbc8;
  padding: 13px 28px;
  font-size: 16px;
}

.rating-breakdown {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.rating-breakdown h4 {
  margin-bottom: 20px;
  color: #ffffff;
}

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

.rating-item span:first-child {
  min-width: 70px;
  font-size: 14px;
}

.rating-bar {
  flex: 1;
  height: 8px;
  background-color: #404042;
  border-radius: 4px;
  overflow: hidden;
}

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

.rating-item span:last-child {
  min-width: 40px;
  text-align: right;
  font-size: 14px;
  color: #cccccc;
}

/* Demo game section */
.aviator-demo-section {
  padding: 60px 0;
  background-color: #2a2a2c;
}

.aviator-demo-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.demo-game {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Bonuses section */
.bonuses-section {
  padding: 60px 0;
  background-color: #323234;
}

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

.bonus-card {
  background: linear-gradient(145deg, #2a2a2c, #1a1a1c);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid #404042;
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
}

.bonus-card h3 {
  color: #00fbc8;
  margin-bottom: 15px;
}

.bonus-card p {
  color: #cccccc;
  margin-bottom: 20px;
}

.btn-bonus {
  background-color: #ff2e09;
  color: #ffffff;
  padding: 12px 25px;
}

/* Pros and cons section */
.pros-cons-section {
  padding: 60px 0;
  background-color: #2a2a2c;
}

.pros-block,
.cons-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}

.pros-block h3 {
  color: #00fbc8;
  margin-bottom: 20px;
}

.cons-block h3 {
  color: #ff2e09;
  margin-bottom: 20px;
}

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

.pros-block li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.pros-block li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00fbc8;
  font-weight: bold;
}

.cons-block li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.cons-block li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff2e09;
  font-weight: bold;
}

/* Table of contents */
.table-of-contents {
  padding: 40px 0;
  background-color: #323234;
  border-top: 1px solid #404042;
  border-bottom: 1px solid #404042;
}

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

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

.toc-tab {
  background-color: #2a2a2c;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #404042;
}

.toc-tab:hover {
  background-color: #00fbc8;
  color: #000000;
}

/* Leave review section */
.leave-review-section {
  padding: 60px 0;
  background-color: #2a2a2c;
}

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

.bonus-banner h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.bonus-banner p {
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0.9;
}

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

.review-form h2 {
  margin-bottom: 30px;
  color: #ffffff;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #404042;
  border: 1px solid #555557;
  border-radius: 8px;
  color: #ffffff;
  font-family: inherit;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: #00fbc8;
}

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

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

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

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

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

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

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

.success-message {
  background: linear-gradient(135deg, #00fbc8, #00d4a8);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  color: #000000;
}

/* User reviews section */
.user-reviews-section {
  padding: 60px 0;
  background-color: #323234;
}

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

.reviews-container {
  display: grid;
  gap: 30px;
}

.review-card {
  background: linear-gradient(145deg, #2a2a2c, #1a1a1c);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #404042;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-2px);
}

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

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

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

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

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

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

.review-country img {
  width: 16px;
  height: 12px;
}

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

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

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

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

.stars {
  color: #ffd700;
}

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

.star-filled {
  color: #ffd700;
}

.rating-details-btn {
  background: none;
  border: 1px solid #555557;
  color: #cccccc;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

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

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

.review-source a {
  color: #00fbc8;
  text-decoration: none;
}

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

.review-text {
  color: #cccccc;
  line-height: 1.6;
}

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

.review-text-truncated:after {
  content: "...";
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, transparent, #2a2a2c);
  padding-left: 20px;
}

.review-expand {
  background: none;
  border: none;
  color: #00fbc8;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: underline;
}

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

.review-pros h5 {
  color: #00fbc8;
  margin-bottom: 10px;
}

.review-cons h5 {
  color: #ff2e09;
  margin-bottom: 10px;
}

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

.pro-item {
  color: #00fbc8;
  padding: 3px 0;
}

.con-item {
  color: #ff2e09;
  padding: 3px 0;
}

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

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

.vote-btn {
  background: none;
  border: 1px solid #555557;
  color: #cccccc;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.like-btn:hover {
  border-color: #00fbc8;
  color: #00fbc8;
}

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

.reply-btn {
  background: none;
  border: 1px solid #555557;
  color: #cccccc;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
}

.reply-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #404042;
}

.reply-form textarea {
  width: 100%;
  background-color: #404042;
  border: 1px solid #555557;
  border-radius: 8px;
  padding: 15px;
  color: #ffffff;
  margin-bottom: 15px;
}

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

/* FAQ section */
.faq-section {
  padding: 60px 0;
  background-color: #2a2a2c;
}

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

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

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  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.1);
}

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

.faq-toggle {
  font-size: 24px;
  color: #00fbc8;
  font-weight: bold;
}

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

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

/* Review bonus banner */
.review-bonus-banner {
  padding: 40px 0;
  background: linear-gradient(135deg, #00fbc8, #00d4a8);
}

.bonus-cta {
  text-align: center;
  color: #000000;
}

.bonus-cta h3 {
  margin-bottom: 10px;
}

.bonus-cta p {
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Screenshots section */
.screenshots-section {
  padding: 60px 0;
  background-color: #323234;
}

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

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

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

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

/* Video review section */
.video-review-section {
  padding: 60px 0;
  background-color: #2a2a2c;
}

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

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Text review section */
.text-review-section {
  padding: 60px 0;
  background-color: #323234;
}

.review-content {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #cccccc;
  line-height: 1.8;
}

.review-content h1 {
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.review-content h2,
.review-content h3 {
  color: #00fbc8;
  margin: 30px 0 15px;
}

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

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

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

.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #2a2a2c;
  border-radius: 10px;
  overflow: hidden;
}

.review-content th,
.review-content td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #404042;
}

.review-content th {
  background-color: #1a1a1c;
  color: #00fbc8;
  font-weight: bold;
}

.author-info {
  max-width: 800px;
  margin: 0 auto;
}

.author-card {
  background: linear-gradient(145deg, #2a2a2c, #1a1a1c);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  gap: 20px;
  border: 1px solid #404042;
}

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

.author-details h3 {
  color: #ffffff;
  margin-bottom: 5px;
}

.author-title {
  color: #00fbc8;
  font-weight: bold;
  margin-bottom: 15px;
}

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

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

.author-links a {
  color: #00fbc8;
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid #00fbc8;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.author-links a:hover {
  background-color: #00fbc8;
  color: #000000;
}

/* Footer */
.main-footer {
  background-color: #000000;
  padding: 40px 0 20px;
  border-top: 1px solid #333333;
}

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

.footer-section h4 {
  color: #00fbc8;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

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

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

.footer-section a:hover {
  color: #00fbc8;
}

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

.footer-trust {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.trust-logos img:hover {
  opacity: 1;
}

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

.copyright {
  color: #999999;
  font-size: 14px;
}

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

.legal-links a {
  color: #999999;
  text-decoration: none;
  font-size: 14px;
}

/* Floating widget */
.floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.widget-content {
  background: linear-gradient(135deg, #ff2e09, #ff4d2e);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 46, 9, 0.3);
  min-width: 200px;
}

.widget-content h4 {
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 16px;
}

.widget-content p {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.9;
}

.widget-btn {
  background-color: #ffffff;
  color: #ff2e09;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.widget-btn:hover {
  background-color: #00fbc8;
  color: #000000;
}

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

/* Responsive design */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

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

  .header-buttons {
    gap: 5px;
  }

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

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

  .casino-card {
    padding: 20px;
    margin-bottom: 30px;
  }

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

  .rating-breakdown {
    padding: 20px;
  }

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

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

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

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

  .legal-links {
    flex-direction: column;
    gap: 10px;
  }

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

  .widget-content {
    padding: 15px;
    min-width: 180px;
  }

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

  .rating-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .rating-group label {
    min-width: auto;
  }
}

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

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

  .casino-card {
    padding: 15px;
  }

  .casino-bonus h3 {
    font-size: 18px;
  }

  .review-form {
    padding: 20px;
  }

  .review-card {
    padding: 20px;
  }

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

  .rating-display {
    justify-content: flex-start;
  }

  .author-card {
    padding: 20px;
  }

  .floating-widget {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto;
    display: block;
    width: fit-content;
  }
}

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

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

.elementor-widget {
  display: none;
}

.yoast-breadcrumb {
  display: none;
}

/* Additional random classes for uniqueness */
.qx7m9k2 {
  opacity: 0;
  position: absolute;
  left: -9999px;
}

.zp4n8w1 {
  display: none;
}

.bg5t3r7 {
  visibility: hidden;
}

.mn2k9x4 {
  height: 0;
  overflow: hidden;
}
