/* Vavada Reviews Site Styles */
:root {
  --vv-bg-primary: #212132;
  --vv-bg-secondary: #252536;
  --vv-accent-yellow: #ddc43a;
  --vv-accent-red: #cd1935;
  --vv-text-light: #ffffff;
  --vv-text-muted: #b8b8c8;
  --vv-border: #3a3a4a;
  --vv-success: #28a745;
  --vv-warning: #ffc107;
}

* {
  box-sizing: border-box;
}

body.vv-body-bg {
  font-family: "Muller", sans-serif;
  background-color: var(--vv-bg-primary);
  color: var(--vv-text-light);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.vv-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

.vv-nav-desktop a {
  color: var(--vv-text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.vv-nav-desktop a:hover {
  color: var(--vv-accent-yellow);
}

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

.vv-reviews-count {
  color: var(--vv-text-muted);
  font-size: 14px;
}

.vv-reviews-count strong {
  color: var(--vv-accent-yellow);
}

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

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

.vv-btn-yellow {
  background-color: var(--vv-accent-yellow);
  color: #000;
}

.vv-btn-yellow:hover {
  background-color: #c9b235;
  transform: translateY(-2px);
}

.vv-btn-red {
  background-color: var(--vv-accent-red);
  color: var(--vv-text-light);
}

.vv-btn-red:hover {
  background-color: #b01530;
  transform: translateY(-2px);
}

.vv-btn-secondary {
  background-color: var(--vv-bg-secondary);
  color: var(--vv-text-light);
  border: 1px solid var(--vv-border);
}

.vv-btn-secondary:hover {
  background-color: var(--vv-border);
}

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

.vv-burger span {
  width: 25px;
  height: 3px;
  background-color: var(--vv-text-light);
  margin: 3px 0;
  transition: 0.3s;
}

.vv-mobile-nav {
  display: none;
  background-color: var(--vv-bg-secondary);
  border-top: 1px solid var(--vv-border);
}

.vv-mobile-nav-content {
  padding: 20px;
}

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

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

.vv-mobile-links a {
  color: var(--vv-text-light);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--vv-border);
}

/* Hero Section */
.vv-hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  margin-bottom: 40px;
}

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

.vv-casino-card {
  background: rgba(37, 37, 54, 0.95);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}

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

.vv-casino-bonus h2 {
  color: var(--vv-accent-yellow);
  margin-bottom: 20px;
  font-size: 24px;
}

.vv-bonus-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.vv-rating-summary {
  background: rgba(37, 37, 54, 0.95);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.vv-overall-rating {
  text-align: center;
  margin-bottom: 30px;
}

.vv-overall-rating h3 {
  margin-bottom: 15px;
  color: var(--vv-text-light);
}

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

.vv-rating-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--vv-accent-yellow);
}

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

.vv-star {
  font-size: 24px;
  color: #444;
}

.vv-star-filled {
  color: var(--vv-accent-yellow);
}

.vv-star-half {
  color: var(--vv-accent-yellow);
  opacity: 0.5;
}

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

.vv-rating-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.vv-rating-item span:first-child {
  min-width: 120px;
  color: var(--vv-text-muted);
}

.vv-rating-item span:last-child {
  min-width: 30px;
  text-align: right;
  font-weight: 600;
  color: var(--vv-accent-yellow);
}

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

.vv-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--vv-accent-red), var(--vv-accent-yellow));
  transition: width 0.3s ease;
}

.vv-casino-info {
  grid-column: 1 / -1;
  background: rgba(37, 37, 54, 0.95);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  margin-top: 20px;
}

.vv-casino-info h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.vv-info-toggle {
  background: var(--vv-accent-yellow);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.vv-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  transition: max-height 0.3s ease;
  overflow: hidden;
}

.vv-info-collapsed {
  max-height: 120px;
}

.vv-info-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--vv-border);
}

.vv-info-label {
  color: var(--vv-text-muted);
  font-weight: 500;
}

.vv-pros-cons {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.vv-pros,
.vv-cons {
  background: rgba(37, 37, 54, 0.95);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.vv-pros h4,
.vv-cons h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.vv-pros h4 {
  color: var(--vv-success);
}

.vv-cons h4 {
  color: var(--vv-accent-red);
}

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

.vv-pros li,
.vv-cons li {
  padding: 8px 0;
  border-bottom: 1px solid var(--vv-border);
  font-size: 14px;
}

.vv-pros li:before {
  content: "✓ ";
  color: var(--vv-success);
  font-weight: bold;
  margin-right: 8px;
}

.vv-cons li:before {
  content: "✗ ";
  color: var(--vv-accent-red);
  font-weight: bold;
  margin-right: 8px;
}

/* Table of Contents */
.vv-toc-section {
  background-color: var(--vv-bg-secondary);
  padding: 30px 0;
  margin-bottom: 40px;
}

.vv-toc h3 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--vv-text-light);
}

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

.vv-toc-tab {
  padding: 12px 24px;
  background-color: var(--vv-bg-primary);
  color: var(--vv-text-light);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.vv-toc-tab:hover {
  background-color: var(--vv-accent-yellow);
  color: #000;
  transform: translateY(-2px);
}

/* Review Form */
.vv-review-form-section {
  padding: 60px 0;
  background-color: var(--vv-bg-secondary);
  margin-bottom: 40px;
}

.vv-review-form-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--vv-text-light);
}

.vv-review-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--vv-bg-primary);
  padding: 40px;
  border-radius: 12px;
}

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

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

.vv-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--vv-text-light);
  font-weight: 500;
}

.vv-form-group input,
.vv-form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--vv-border);
  border-radius: 6px;
  background-color: var(--vv-bg-secondary);
  color: var(--vv-text-light);
  font-family: inherit;
}

.vv-form-group input:focus,
.vv-form-group textarea:focus {
  outline: none;
  border-color: var(--vv-accent-yellow);
}

.vv-rating-inputs h4 {
  margin-bottom: 20px;
  color: var(--vv-text-light);
}

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

.vv-rating-input label {
  font-size: 14px;
  margin-bottom: 8px;
}

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

.vv-star-rating span {
  font-size: 24px;
  color: #444;
  transition: color 0.2s ease;
}

.vv-star-rating span:hover,
.vv-star-rating span.active {
  color: var(--vv-accent-yellow);
}

.vv-success-message {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--vv-success);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

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

.vv-reviews-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--vv-text-light);
}

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

.vv-review-card {
  background-color: var(--vv-bg-secondary);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--vv-border);
}

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

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

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

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

.vv-review-author {
  color: var(--vv-text-light);
  font-size: 16px;
}

.vv-review-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--vv-text-muted);
}

.vv-review-country img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.vv-review-date {
  font-size: 12px;
  color: var(--vv-text-muted);
}

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

.vv-rating-details-btn {
  background: none;
  border: none;
  color: var(--vv-accent-yellow);
  cursor: pointer;
  font-size: 12px;
  margin-top: 5px;
}

.vv-review-title {
  color: var(--vv-text-light);
  margin-bottom: 15px;
  font-size: 18px;
}

.vv-review-source {
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--vv-text-muted);
}

.vv-review-source a {
  color: var(--vv-accent-yellow);
  text-decoration: none;
}

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

.vv-review-text {
  color: var(--vv-text-light);
  line-height: 1.6;
}

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

.vv-review-truncated:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(transparent, var(--vv-bg-secondary));
}

.vv-review-expand {
  background: none;
  border: none;
  color: var(--vv-accent-yellow);
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}

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

.vv-review-pros h5,
.vv-review-cons h5 {
  margin-bottom: 10px;
  font-size: 14px;
}

.vv-review-pros h5 {
  color: var(--vv-success);
}

.vv-review-cons h5 {
  color: var(--vv-accent-red);
}

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

.vv-pro-item {
  color: var(--vv-success);
  font-size: 14px;
  margin-bottom: 5px;
}

.vv-con-item {
  color: var(--vv-accent-red);
  font-size: 14px;
  margin-bottom: 5px;
}

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

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

.vv-vote-btn {
  background: none;
  border: 1px solid var(--vv-border);
  color: var(--vv-text-muted);
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.vv-vote-btn:hover {
  border-color: var(--vv-accent-yellow);
  color: var(--vv-accent-yellow);
}

.vv-reply-btn {
  background: none;
  border: 1px solid var(--vv-accent-yellow);
  color: var(--vv-accent-yellow);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.vv-reply-btn:hover {
  background-color: var(--vv-accent-yellow);
  color: #000;
}

.vv-reply-form {
  margin-top: 20px;
  padding: 20px;
  background-color: var(--vv-bg-primary);
  border-radius: 8px;
}

.vv-reply-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--vv-border);
  border-radius: 6px;
  background-color: var(--vv-bg-secondary);
  color: var(--vv-text-light);
  font-family: inherit;
  margin-bottom: 15px;
}

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

.vv-rating-details {
  margin-top: 20px;
  padding: 20px;
  background-color: var(--vv-bg-primary);
  border-radius: 8px;
}

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

.vv-detail-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* FAQ Section */
.vv-faq-section {
  padding: 60px 0;
  background-color: var(--vv-bg-secondary);
}

.vv-faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--vv-text-light);
}

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

.vv-faq-item {
  background-color: var(--vv-bg-primary);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.vv-faq-question {
  padding: 20px;
  margin: 0;
  cursor: pointer;
  color: var(--vv-text-light);
  font-size: 16px;
  position: relative;
  transition: background-color 0.3s ease;
}

.vv-faq-question:hover {
  background-color: var(--vv-border);
}

.vv-faq-question:after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--vv-accent-yellow);
  transition: transform 0.3s ease;
}

.vv-faq-open .vv-faq-question:after {
  transform: translateY(-50%) rotate(45deg);
}

.vv-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vv-faq-open .vv-faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.vv-faq-answer p {
  color: var(--vv-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Bonus Banner */
.vv-bonus-banner {
  background: linear-gradient(135deg, var(--vv-accent-red), var(--vv-accent-yellow));
  padding: 40px 0;
  margin: 40px 0;
}

.vv-banner-content {
  text-align: center;
  color: #000;
}

.vv-banner-content h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

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

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

.vv-video-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--vv-text-light);
}

.vv-video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

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

/* Text Review Section */
.vv-text-review-section {
  padding: 60px 0;
  background-color: var(--vv-bg-secondary);
}

.vv-author-info {
  margin-bottom: 40px;
}

.vv-author-info h2 {
  color: var(--vv-text-light);
  margin-bottom: 30px;
}

.vv-author-card {
  background-color: var(--vv-bg-primary);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--vv-accent-yellow);
}

.vv-author-card h4 {
  color: var(--vv-accent-yellow);
  margin-bottom: 10px;
}

.vv-author-card p {
  color: var(--vv-text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
}

.vv-author-card a {
  color: var(--vv-accent-yellow);
  text-decoration: none;
}

.vv-text-content {
  background-color: var(--vv-bg-primary);
  padding: 40px;
  border-radius: 12px;
  color: var(--vv-text-light);
  line-height: 1.7;
}

.vv-text-content h2,
.vv-text-content h3,
.vv-text-content h4 {
  color: var(--vv-text-light);
  margin-top: 30px;
  margin-bottom: 15px;
}

.vv-text-content h2 {
  font-size: 28px;
  border-bottom: 2px solid var(--vv-accent-yellow);
  padding-bottom: 10px;
}

.vv-text-content h3 {
  font-size: 22px;
  color: var(--vv-accent-yellow);
}

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

.vv-text-content li {
  margin-bottom: 8px;
  color: var(--vv-text-muted);
}

.vv-text-content p {
  margin-bottom: 20px;
  color: var(--vv-text-muted);
}

.vv-text-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.vv-text-content th,
.vv-text-content td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--vv-border);
}

.vv-text-content th {
  background-color: var(--vv-bg-secondary);
  color: var(--vv-text-light);
  font-weight: 600;
}

/* Footer */
.vv-footer {
  background-color: var(--vv-bg-secondary);
  padding: 40px 0 20px;
  margin-top: auto;
}

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

.vv-footer-section h4 {
  color: var(--vv-text-light);
  margin-bottom: 15px;
}

.vv-footer-section p {
  color: var(--vv-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.vv-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.vv-footer-section ul li a {
  color: var(--vv-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.vv-footer-section ul li a:hover {
  color: var(--vv-accent-yellow);
}

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

.vv-trust-logos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

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

.vv-footer-bottom {
  border-top: 1px solid var(--vv-border);
  padding-top: 20px;
  text-align: center;
}

.vv-copyright p {
  color: var(--vv-text-muted);
  font-size: 12px;
  margin: 5px 0;
}

/* Widget */
.vv-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--vv-accent-red), var(--vv-accent-yellow));
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 300px;
  animation: slideInUp 0.5s ease;
}

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

.vv-widget-text {
  flex: 1;
}

.vv-widget-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.vv-widget-text span {
  font-size: 12px;
}

.vv-widget-btn {
  background-color: #000;
  color: var(--vv-accent-yellow);
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.vv-widget-btn:hover {
  transform: scale(1.05);
}

.vv-widget-close {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.vv-fade-in {
  animation: fadeIn 0.5s ease;
}

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

  .vv-desktop-buttons {
    display: none;
  }

  .vv-mobile-only {
    display: block;
  }

  .vv-nav-desktop {
    display: none;
  }

  .vv-burger {
    display: flex;
  }

  .vv-mobile-nav.active {
    display: block;
  }

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

  .vv-casino-info {
    grid-column: 1;
  }

  .vv-pros-cons {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

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

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

  .vv-review-actions {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .vv-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

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

@media (max-width: 480px) {
  .vv-hero-section {
    padding: 40px 0;
  }

  .vv-casino-card,
  .vv-rating-summary,
  .vv-casino-info,
  .vv-pros,
  .vv-cons {
    padding: 20px;
  }

  .vv-bonus-buttons {
    flex-direction: column;
  }

  .vv-review-form {
    padding: 25px;
  }

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

  .vv-text-content {
    padding: 25px;
  }
}

/* WordPress-like elements for obfuscation */
.wp-block-group {
  display: none;
}
.wp-block-columns {
  display: none;
}
.elementor-widget {
  display: none;
}
.yoast-breadcrumb {
  display: none;
}
.wp-content-area {
  display: none;
}

/* Unused styles for uniqueness */
.vv-unused-style-1 {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}
.vv-unused-style-2 {
  transform: rotate(360deg) scale(1.2);
}
.vv-unused-style-3 {
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}
.vv-unused-class-a7b3 {
  opacity: 0.8;
  filter: blur(2px);
}
.vv-unused-class-x9k2 {
  border: 3px dashed #ff00ff;
}
.vv-random-id-m4n8 {
  position: absolute;
  top: -9999px;
}
