/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & Base Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #ffffff;
  color: #333333;
  line-height: 1.6;
  font-size: 16px;
}

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

/* Header Styles */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

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

.author-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.author-name {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.author-meta {
  font-size: 12px;
  color: #495057;
}

.author-role {
  color: #0056b3;
  font-weight: 500;
}

.separator {
  margin: 0 4px;
}

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

.author-social a {
  color: #666;
  transition: color 0.2s;
}

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

/* Author Info Section */
.author-info-section {
  padding: 16px 0;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: fit-content;
  margin: 0 auto;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border: 1px solid #e9ecef;
}

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

.author-card .author-name {
  font-weight: 600;
  color: #333;
  font-size: 15px;
  margin-bottom: 2px;
}

.author-card .author-meta {
  font-size: 13px;
  color: #495057;
}

.author-card .author-role {
  color: #0056b3;
  font-weight: 500;
}

.author-card .separator {
  margin: 0 4px;
}

.author-card .author-social {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}

.author-card .author-social a {
  color: #666;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f8f9fa;
}

.author-card .author-social a:hover {
  color: #007bff;
  background: #e9ecef;
}

@media (max-width: 768px) {
  .author-info-section {
    padding: 12px 0;
  }
  
  .author-card {
    gap: 10px;
    padding: 10px 16px;
    margin: 0 20px;
  }
  
  .author-card .author-name {
    font-size: 14px;
  }
  
  .author-card .author-meta {
    font-size: 12px;
  }
  
  .author-card .author-social {
    gap: 6px;
    margin-left: 6px;
  }
  
  .author-card .author-social a {
    width: 26px;
    height: 26px;
  }
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-dropdown {
  position: relative;
}

.lang-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: #e9ecef;
}

.lang-label {
  font-size: 14px;
}

.lang-arrow {
  transition: transform 0.2s;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  min-width: 120px;
  z-index: 1000;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background-color 0.2s;
}

.lang-option:hover {
  background: #f8f9fa;
}

.lang-option.active {
  background: #e3f2fd;
  color: #007bff;
}

/* .check-icon {
  margin-left: auto;
} */

.lang-option:not(.active) .check-icon {
  display: none;
}

/* Breadcrumbs */
.breadcrumbs {
  background: #f8f9fa;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #666;
}

.breadcrumbs a {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0066ff 0%, #003399 50%, #ff6600 100%);
  color: white;
  padding: 80px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content-main {
  text-align: center;
  z-index: 1;
}
.hero-content-main h1 {
  color: #fff;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-image {
  max-width: 500px;
  margin: 20px auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

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

.hero-highlight {
  font-size: 1.2rem;
  opacity: 0.95;
  margin: 30px 0;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-style: italic;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.3); }
  to { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.6); }
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 1200px;
  margin: 0 0 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* Intro Details Section */
.intro-details {
  padding: 60px 0;
  background: #f8f9fa;
  border-top: 3px solid #ff6600;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
  opacity: 0.9;
}

.cta-button.primary {
  background: linear-gradient(135deg, #ff6600 0%, #ff4400 100%);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #ff4400 0%, #ff2200 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.6);
}

.cta-button.primary.pulsing {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4); }
  50% { box-shadow: 0 8px 25px rgba(255, 102, 0, 0.8), 0 0 0 10px rgba(255, 102, 0, 0.1); }
  100% { box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4); }
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: white;
  transform: translateY(-2px);
}

/* Top Casinos Section */
.top-casinos-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.top-casinos-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  font-size: 2.2rem;
  font-weight: 600;
}

.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.casino-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.casino-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.bonus {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.license {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.casino-actions {
  display: flex;
  gap: 12px;
}

.play-btn {
  background: #007bff;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  flex: 1;
  text-align: center;
}

.play-btn:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.review-btn {
  background: transparent;
  color: #007bff;
  border: 1px solid #007bff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  text-align: center;
}

.review-btn:hover {
  background: #007bff;
  color: white;
}

/* Section Styles */
.section {
  padding: 50px 0;
  border-bottom: 1px solid #f1f1f1;
}

.section:last-child {
  border-bottom: none;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Demo Game Section */
.demo-game-section {
  padding: 80px 0;
  background: #ffffff;
}

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

.demo-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.demo-info {
  flex: 1;
  max-width: 500px;
}

.demo-info h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
}

.demo-info p {
  color: #6c757d;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.demo-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  color: #007bff;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat span {
  font-size: 14px;
  color: #666;
}

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

.demo-btn {
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  text-align: center;
}

.demo-btn.primary {
  background: linear-gradient(135deg, #ff6600 0%, #ff4400 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
  animation: pulse-demo 3s infinite;
}

@keyframes pulse-demo {
  0% { box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3); }
  50% { box-shadow: 0 6px 20px rgba(255, 102, 0, 0.7), 0 0 0 5px rgba(255, 102, 0, 0.1); }
  100% { box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3); }
}

.demo-btn.primary:hover {
  background: linear-gradient(135deg, #ff4400 0%, #ff2200 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
}

.demo-btn.secondary {
  background: transparent;
  color: #0066ff;
  border: 1px solid #0066ff;
}

.demo-btn.secondary:hover {
  background: #0066ff;
  color: white;
  transform: translateY(-1px);
}

.demo-preview {
  flex: 1;
  max-width: 500px;
  margin-left: 40px;
}

.game-preview {
  width: 100%;
  height: 400px;
}

.game-elements {
  display: flex;
  gap: 20px;
  align-items: center;
}

.element {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.chicken-element {
  background: #28a745;
  color: white;
}

.car-element {
  background: #dc3545;
  color: white;
}

.finish-element {
  background: #ffc107;
  color: #333;
}

.multiplier-display {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #007bff;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 14px;
}

.preview-text {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* Social Share Section */
.social-share-section {
  background: #f8f9fa;
  padding: 40px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.social-share {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.social-share h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 25px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn.facebook:hover {
  background: #166fe5;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.twitter:hover {
  background: #1a91da;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.linkedin:hover {
  background: #006ba3;
}

.share-btn.whatsapp {
  background: #25d366;
  color: white;
}

.share-btn.whatsapp:hover {
  background: #21bf5b;
}

.share-btn.copy-link {
  background: #6c757d;
  color: white;
}

.share-btn.copy-link:hover {
  background: #5a6268;
}

/* CTA Buttons */
.cta-section {
  text-align: center;
  margin: 40px 0;
}

.cta-casino-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 35px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.cta-casino-btn:hover {
  background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Tables */
.casino-table,
.characteristics-table {
  margin: 30px 0;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

th {
  background: #007bff;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
}

tr:hover td {
  background: #f8f9fa;
}

tr:last-child td {
  border-bottom: none;
}

/* Lists */
.features-list ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.features-list li {
  position: relative;
  padding: 8px 0 8px 25px;
  margin-bottom: 8px;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Warning Box */
.warning-box {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
}

.warning-box p {
  color: #856404;
  margin-bottom: 15px;
}

.warning-box p:last-child {
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background: #f8f9fa;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-answer {
  display: none;
  padding: 20px;
  background: white;
  border-top: 1px solid #e9ecef;
}

/* Table of Contents */
.table-of-contents {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  margin: 40px 0;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.table-of-contents h3 {
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
}

.toc-list {
  list-style: none;
  counter-reset: toc-counter;
  margin: 0;
  padding: 0;
}

.toc-list li {
  counter-increment: toc-counter;
  margin-bottom: 12px;
  padding: 0;
}

.toc-link {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  padding: 12px 20px;
  border-radius: 6px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
  background: white;
}

.toc-link:before {
  content: counter(toc-counter, decimal-leading-zero) ".";
  font-weight: 700;
  color: #007bff;
  margin-right: 15px;
  font-size: 14px;
}

.toc-link:hover {
  background: #e3f2fd;
  border-left-color: #007bff;
  color: #007bff;
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0,123,255,0.1);
}

/* Expert Signature */
.expert-signature {
  background: #e3f2fd;
  border-left: 4px solid #007bff;
  padding: 20px;
  margin: 40px 0;
  font-style: italic;
  color: #0d47a1;
  border-radius: 0 8px 8px 0;
}

/* Legal Pages Styles */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.legal-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e9ecef;
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.last-updated {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.legal-content section {
  margin-bottom: 40px;
}

.legal-content h2 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 4px solid #007bff;
  padding-left: 15px;
}

.legal-content h3 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.legal-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

.legal-content ul {
  color: #555;
  line-height: 1.7;
  margin-left: 20px;
  margin-bottom: 15px;
}

.legal-content a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-content a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.contact-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.contact-item h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.contact-item p {
  margin-bottom: 10px;
}

.contact-item ul {
  margin-left: 0;
  list-style: none;
}

.contact-item li {
  margin-bottom: 5px;
}

/* Contact Form */
.contact-form {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  color: #333;
  font-size: 14px;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.form-submit {
  background: #007bff;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.form-submit:disabled {
  background: #e9ecef;
  border-color: #dee2e6;
  color: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-submit:disabled:hover {
  background: #e9ecef;
  border-color: #dee2e6;
  transform: none;
  box-shadow: none;
}

.success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 2px solid #28a745;
  color: #155724;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-weight: 500;
  text-align: center;
  display: none;
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

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

/* FAQ Quick */
.faq-quick {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.faq-quick h3 {
  color: #007bff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.faq-quick p {
  margin-bottom: 20px;
}

/* Mobile responsiveness for legal pages */
@media (max-width: 768px) {
  .legal-header h1 {
    font-size: 2rem;
  }

  .legal-page {
    padding: 20px 0;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .success-message {
    padding: 15px;
    margin: 15px 0;
    font-size: 14px;
  }

  .form-submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}

/* 404 Page Styles */
.error-page {
  text-align: center;
  padding: 80px 0;
  max-width: 600px;
  margin: 0 auto;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

.error-number {
  font-size: 8rem;
  font-weight: 900;
  color: #007bff;
  text-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
  line-height: 1;
}

.error-chicken {
  font-size: 4rem;
  animation: chickenBob 2s ease-in-out infinite;
}

.error-page h1 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.error-page h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.error-description {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.helpful-links {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

.helpful-links h3 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.helpful-links li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.helpful-links li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

.helpful-links a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.helpful-links a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.error-btn {
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.error-btn.primary {
  background: #007bff;
  color: white;
}

.error-btn.primary:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.error-btn.secondary {
  background: transparent;
  color: #007bff;
  border: 1px solid #007bff;
}

.error-btn.secondary:hover {
  background: #007bff;
  color: white;
}

@media (max-width: 768px) {
  .error-visual {
    flex-direction: column;
    gap: 10px;
  }
  
  .error-number {
    font-size: 6rem;
  }
  
  .error-chicken {
    font-size: 3rem;
  }
  
  .error-page h1 {
    font-size: 2rem;
  }

  .error-page h2 {
    font-size: 1.5rem;
  }
  
  .error-description {
    font-size: 1.1rem;
  }



  .error-btn {
    width: 200px;
    text-align: center;
  }
  
  .helpful-links {
    padding: 20px;
    margin: 0 15px;
  }
  
  .helpful-links h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .error-page {
    padding: 40px 0;
  }
  
  .error-number {
    font-size: 5rem;
  }
  
  .error-chicken {
    font-size: 2.5rem;
  }
  
  .error-page h1 {
    font-size: 1.8rem;
  }
  
  .error-description {
    font-size: 1rem;
  }
  
  .helpful-links {
    padding: 15px;
  }
}

/* Footer */
.footer {
  background: #343a40;
  color: white;
  padding: 50px 0 30px;
  margin-top: 50px;
}

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

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

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

.footer-logo p {
  color: #adb5bd;
  line-height: 1.6;
}

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

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

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.age-warning .age-icon{
  width: 100px;
  height: 50px;
}

/* Partners Logos Styles */
.partners-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.partner-link {
  transition: all 0.3s ease;
  opacity: 0.8;
}

.partner-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.partner-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}

.partner-link:hover .partner-logo {
  filter: brightness(1);
}

.game-features-table{
  margin-bottom: 20px;
}

/* Dutch Casinos Table Styles */
.dutch-casinos-table {
  margin: 40px 0;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dutch-casinos-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  min-width: 600px;
}

.dutch-casinos-table th {
  background: linear-gradient(135deg, #ff6b35, #e63946);
  color: white;
  padding: 18px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

.dutch-casinos-table td {
  padding: 16px 15px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
  font-size: 0.95rem;
}

.dutch-casinos-table tr:hover {
  background-color: #fff5f5;
}

.dutch-casinos-table tr:last-child td {
  border-bottom: none;
}

.dutch-casinos-table td:first-child {
  font-weight: 600;
  color: #2c3e50;
}

.dutch-casinos-table td:nth-child(2) {
  color: #28a745;
  font-weight: 500;
}

.dutch-casinos-table td:nth-child(3) {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Casino Benefits Block */
.casino-benefits {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 2px solid #28a745;
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
}

.casino-benefits p {
  margin: 0;
  color: #155724;
  font-weight: 500;
  font-size: 1.05rem;
}

/* Scam Warning Styles */
.scam-warning {
  background: linear-gradient(135deg, #f8d7da, #f1b0b7) !important;
  border: 2px solid #dc3545 !important;
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
}

.scam-warning p {
  margin: 0;
  color: #721c24 !important;
  font-weight: 600;
  font-size: 1.05rem;
}

/* Responsive Dutch Casino Table */
@media (max-width: 768px) {
  .dutch-casinos-table th,
  .dutch-casinos-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }
  
  .dutch-casinos-table td:nth-child(3) {
    font-size: 0.8rem;
  }
  
  .casino-benefits,
  .scam-warning {
    padding: 15px;
    margin: 20px 0;
  }
  
  .casino-benefits p,
  .scam-warning p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .dutch-casinos-table th,
  .dutch-casinos-table td {
    padding: 10px 8px;
    font-size: 0.75rem;
  }
  
  .dutch-casinos-table td:nth-child(3) {
    font-size: 0.7rem;
  }
  
  .casino-benefits,
  .scam-warning {
    padding: 12px;
    margin: 15px 0;
  }
  
  .casino-benefits p,
  .scam-warning p {
    font-size: 0.85rem;
  }
}

/* Responsive Partners Logos */
@media (max-width: 768px) {
  .partners-logos {
    justify-content: center;
    gap: 15px;
  }
  
  .partner-logo {
    height: 35px;
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .partners-logos {
    gap: 12px;
  }
  
  .partner-logo {
    height: 30px;
    max-width: 80px;
  }
}

/* Game Features Table Styles */
.game-features-table {
  margin: 40px 0;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.game-features-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.game-features-table th {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

.game-features-table td {
  padding: 18px 15px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
}

.game-features-table tr:hover {
  background-color: #f8f9fa;
}

.game-features-table tr:last-child td {
  border-bottom: none;
}

/* Crash Games Comparison Styles */
.crash-games-comparison {
  margin: 50px 0;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  border: 2px solid #dee2e6;
}

.crash-games-comparison h4 {
  color: #2c3e50;
  margin-bottom: 25px;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.comparison-table {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  min-width: 700px;
}

.comparison-table th {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: white;
  padding: 18px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

.comparison-table td {
  padding: 15px 12px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
  font-weight: 500;
}

.comparison-table tr:hover {
  background-color: #f1f9f1;
}

.highlight-row {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb) !important;
  border: 2px solid #007bff;
}

.highlight-row:hover {
  background: linear-gradient(135deg, #d1ecf1, #a6d4ea) !important;
}

.highlight-row td {
  color: #0d47a1;
  font-weight: 600;
}

.check {
  color: #28a745;
  font-size: 1.2rem;
  font-weight: bold;
}

.cross {
  color: #dc3545;
  font-size: 1.2rem;
  font-weight: bold;
}

.partial {
  color: #ffc107;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Responsive Tables */
@media (max-width: 768px) {
  .game-features-table th,
  .game-features-table td {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }
  
  .crash-games-comparison {
    padding: 20px 15px;
    margin: 30px 0;
  }
  
  .crash-games-comparison h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .game-features-table th,
  .game-features-table td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 8px 6px;
    font-size: 0.75rem;
  }
  
  .crash-games-comparison {
    padding: 15px 10px;
  }
  
  .crash-games-comparison h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .check, .cross, .partial {
    font-size: 1rem;
  }
}

/* Chicken Road Demo Game Styles */
.demo-preview {
  flex: 1;
  max-width: 500px;
  margin-left: 40px;
}

.game-preview {
  width: 100%;
  height: 400px;
}

.chicken-road-game {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #87CEEB 0%, #87CEEB 30%, #228B22 30%, #228B22 70%, #87CEEB 70%, #87CEEB 100%);
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid #007bff;
  transition: all 0.3s ease;
  display: block;
}

.chicken-road-game:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.game-road {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  height: 40%;
  background: #404040;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 0;
}

.road-line {
  height: 4px;
  background: #FFFF00;
  margin: 0 20px;
  border-radius: 2px;
  animation: roadMove 2s linear infinite;
}

.road-line-2 {
  animation-delay: 0.5s;
}

.road-line-3 {
  animation-delay: 1s;
}

.road-line-4 {
  animation-delay: 1.5s;
}

@keyframes roadMove {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.game-chicken {
  position: absolute;
  bottom: 20px;
  left: 30px;
  font-size: 40px;
  z-index: 10;
  animation: chickenBob 1.5s ease-in-out infinite;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

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

.game-car {
  position: absolute;
  font-size: 35px;
  z-index: 3;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.car-1 {
  top: 35%;
  right: -50px;
  animation: carMove1 3s linear infinite;
}

.car-2 {
  top: 55%;
  left: -50px;
  animation: carMove2 4s linear infinite;
}

@keyframes carMove1 {
  0% { right: -50px; }
  100% { right: 100%; }
}

@keyframes carMove2 {
  0% { left: -50px; }
  100% { left: 100%; }
}

.game-multiplier {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 123, 255, 0.9);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  animation: multiplierPulse 2s ease-in-out infinite;
  z-index: 15;
}

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

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 20;
}

.chicken-road-game:hover .game-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.play-button {
  color: white;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: buttonPulse 1.5s ease-in-out infinite;
  z-index: 25;
}

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

.game-instructions {
  color: #ccc;
  font-size: 16px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  z-index: 25;
}

/* Responsive Demo Game */
@media (max-width: 768px) {
  .demo-content {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
  
  .demo-info {
    max-width: 100%;
    order: 1;
  }
  
  .demo-preview {
    margin-left: 0;
    margin-top: 0;
    max-width: 100%;
    order: 2;
    width: 100%;
  }
  
  .game-preview {
    height: 300px;
    width: 100%;
  }
  
  .chicken-road-game {
    width: 100%;
    height: 100%;
    min-height: 300px;
  }
  
  .game-chicken {
    font-size: 30px;
    bottom: 15px;
    left: 20px;
  }
  
  .game-car {
    font-size: 25px;
  }
  
  .game-multiplier {
    font-size: 16px;
    padding: 8px 15px;
    top: 15px;
    right: 15px;
  }
  
  .play-button {
    font-size: 22px;
  }
  
  .game-instructions {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .demo-content {
    gap: 20px;
    padding: 0 15px;
  }
  
  .demo-stats {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .demo-preview {
    width: 100%;
  }
  
  .game-preview {
    height: 250px;
    width: 100%;
  }
  
  .chicken-road-game {
    width: 100%;
    height: 100%;
    min-height: 250px;
  }
  
  .game-chicken {
    font-size: 25px;
    bottom: 10px;
    left: 15px;
  }
  
  .game-car {
    font-size: 20px;
  }
  
  .game-multiplier {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  .play-button {
    font-size: 18px;
  }
  
  .game-instructions {
    font-size: 12px;
  }
}

.age-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.age-warning p {
  color: #adb5bd;
  line-height: 1.6;
}

.age-warning strong {
  color: #ffc107;
  display: block;
  margin-bottom: 5px;
}

.footer-bottom {
  border-top: 1px solid #495057;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #adb5bd;
  margin-bottom: 10px;
}

.disclaimer {
  font-size: 14px;
  color: #6c757d;
}

/* Animations */
@keyframes chickenBob {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

@keyframes carMove {
  0% { transform: translateX(-10px); }
  50% { transform: translateX(10px); }
  100% { transform: translateX(-10px); }
}

@keyframes finishPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

.fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

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

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

  .header-content {
    flex-wrap: wrap;
    gap: 15px;
  }

  .author-section {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 15px;
  }

  .hero {
    padding: 50px 0;
    text-align: center;
  }

  .hero-layout {
    max-width: 100%;
  }

  .hero-image {
    max-width: 300px;
    margin: 20px auto;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-highlight {
    font-size: 1rem;
    margin: 20px 0;
  }

  .intro-details {
    padding: 40px 0;
  }

  .intro-content p {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

     .demo-content {
     grid-template-columns: 1fr;
     gap: 40px;
   }

   .demo-stats {
     justify-content: center;
   }

   .demo-buttons {
     justify-content: center;
   }

   .preview-screen {
     width: 100%;
     max-width: 280px;
   }

  .share-buttons {
    justify-content: center;
  }

  .share-btn {
    padding: 10px 15px;
    font-size: 13px;
  }

  .section h2 {
    font-size: 1.7rem;
  }

  .section {
    padding: 30px 0;
  }

  table {
    font-size: 14px;
  }

  th, td {
    padding: 10px 8px;
  }

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

     .lang-btn .lang-label {
     display: none;
   }

   .toc-list {
     padding: 0 10px;
   }

   .toc-link {
     padding: 10px 15px;
     font-size: 14px;
   }

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

   .casino-card {
     padding: 20px;
     margin: 0 5px;
   }

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

   .review-btn {
     text-align: center;
   }
 }

 @media (max-width: 480px) {
   .hero h1 {
     font-size: 1.7rem;
   }

   .demo-features {
     grid-template-columns: 1fr;
   }

   .share-buttons {
     flex-direction: column;
     align-items: center;
   }

   .share-btn {
     width: 200px;
     justify-content: center;
   }

   .casinos-grid {
     gap: 15px;
   }

   .casino-card {
     padding: 15px;
     margin: 0;
   }

   .casino-info h3 {
     font-size: 1.2rem;
   }

   .bonus {
     font-size: 13px;
     padding: 6px 12px;
   }

   .features {
     gap: 6px;
   }

   .feature {
     font-size: 11px;
     padding: 3px 8px;
   }
 }

/* Chicken Road App Section Styles */
.app-warning-section {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
}

.app-warning-section p {
  margin: 0 0 15px 0;
  color: #856404;
  font-weight: 500;
  line-height: 1.6;
}

.app-warning-section p:last-child {
  margin-bottom: 0;
}

.pro-advice-box {
  background: linear-gradient(135deg, #d1ecf1, #a6d4ea);
  border: 2px solid #17a2b8;
  border-radius: 12px;
  padding: 18px;
  margin: 25px 0;
}

.pro-advice-box p {
  margin: 0;
  color: #0c5460;
  font-weight: 600;
  font-size: 1.05rem;
}

/* App Comparison List */
.app-comparison-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.app-comparison-list .single-column {
  grid-column: 1 / -1;
  max-width: 500px;
  margin: 0 auto;
}

.comparison-column {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.comparison-column:hover {
  border-color: #007bff;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.1);
}

.comparison-column h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.comparison-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-column li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  font-weight: 500;
}

.comparison-column li:last-child {
  border-bottom: none;
}

/* Download Steps */
.download-steps {
  background: linear-gradient(135deg, #e8f5e8, #d4edda);
  border: 2px solid #28a745;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.download-steps ol {
  margin: 0;
  padding-left: 20px;
}

.download-steps li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #155724;
  font-weight: 500;
}

.download-steps li:last-child {
  margin-bottom: 0;
}

/* Mobile vs App Table */
.mobile-vs-app-table {
  margin: 40px 0;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.mobile-vs-app-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  min-width: 650px;
}

.mobile-vs-app-table th {
  background: linear-gradient(135deg, #6f42c1, #5a32a3);
  color: white;
  padding: 18px 15px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.mobile-vs-app-table td {
  padding: 16px 15px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
  font-weight: 500;
}

.mobile-vs-app-table tr:hover {
  background-color: #f8f5ff;
}

.mobile-vs-app-table tr:last-child td {
  border-bottom: none;
}

.mobile-vs-app-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #2c3e50;
}

.advantage {
  color: #28a745;
  font-weight: 700;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
}

/* Responsive App Section */
@media (max-width: 768px) {
  .app-comparison-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .app-comparison-list .single-column {
    max-width: 100%;
  }
  
  .comparison-column {
    padding: 15px;
  }
  
  .comparison-column h4 {
    font-size: 1.1rem;
  }
  
  .download-steps {
    padding: 20px;
  }
  
  .mobile-vs-app-table th,
  .mobile-vs-app-table td {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
  
  .app-warning-section,
  .pro-advice-box {
    padding: 15px;
    margin: 20px 0;
  }
  
  .app-warning-section p,
  .pro-advice-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .app-comparison-list .single-column {
    max-width: 100%;
  }
  
  .comparison-column {
    padding: 12px;
  }
  
  .comparison-column h4 {
    font-size: 1rem;
  }
  
  .comparison-column li {
    font-size: 0.9rem;
    padding: 6px 0;
  }
  
  .download-steps {
    padding: 15px;
  }
  
  .download-steps li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .mobile-vs-app-table th,
  .mobile-vs-app-table td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }
  
  .advantage {
    font-size: 0.8rem;
    padding: 3px 6px;
  }
  
  .app-warning-section,
  .pro-advice-box {
    padding: 12px;
    margin: 15px 0;
  }
  
  .app-warning-section p,
  .pro-advice-box p {
    font-size: 0.85rem;
  }
}

/* Legitimacy Check Styles */
.legitimacy-checks {
  margin: 30px 0;
}

.check-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.check-item:last-child {
  margin-bottom: 0;
}

.check-item.valid {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 2px solid #28a745;
}

.check-item.invalid {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  border: 2px solid #dc3545;
}

.check-item.advice {
  background: linear-gradient(135deg, #d1ecf1, #a6d4ea);
  border: 2px solid #17a2b8;
}

.check-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-item p {
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.check-item.valid p {
  color: #155724;
}

.check-item.invalid p {
  color: #721c24;
}

.check-item.advice p {
  color: #0c5460;
}

/* Demo Strategy Table */
.demo-strategy-table {
  margin: 30px 0;
  overflow-x: auto;
}

.demo-strategy-table table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid #dee2e6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.demo-strategy-table th {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  font-weight: 600;
  padding: 20px;
  text-align: left;
  font-size: 1.1rem;
}

.demo-strategy-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #dee2e6;
  vertical-align: top;
}

.demo-strategy-table tr:hover {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.demo-strategy-table tr:last-child td {
  border-bottom: none;
}

.demo-strategy-table td:first-child {
  font-weight: 600;
  color: #2c3e50;
  background: rgba(0, 123, 255, 0.05);
}

/* Demo Experience Box */
.demo-experience-box {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  border: 2px solid #4caf50;
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
  position: relative;
}

.demo-experience-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #4caf50, #81c784, #4caf50);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
}

.demo-experience-box p {
  margin: 0;
  color: #2e7d32;
  font-weight: 500;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Demo Warning */
.demo-warning {
  background: linear-gradient(135deg, #fff3cd, #ffeeba);
  border: 2px solid #ffc107;
  border-left: 6px solid #ffc107;
}

.demo-warning p {
  color: #856404;
  font-weight: 600;
}

/* Responsive Styles for New Elements */
@media (max-width: 768px) {
  .check-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .check-icon {
    font-size: 1.3rem;
    margin-right: 12px;
  }

  .demo-strategy-table th,
  .demo-strategy-table td {
    padding: 15px;
    font-size: 14px;
  }

  .demo-strategy-table th {
    font-size: 1rem;
  }

  .demo-experience-box {
    padding: 20px;
    margin: 20px 0;
  }

  .demo-experience-box p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .check-item {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }

  .check-icon {
    margin-right: 0;
    margin-bottom: 8px;
    margin-top: 0;
  }

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

  .demo-strategy-table th {
    font-size: 0.95rem;
  }

  .demo-experience-box {
    padding: 15px;
    margin: 15px 0;
  }

  .demo-experience-box p {
    font-size: 0.95rem;
  }
}

/* Strategy Section Styles */
.strategy-list {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.strategy-item {
  display: flex;
  align-items: center;
  padding: 25px;
  border-radius: 15px;
  border: 3px solid;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.strategy-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 15px;
  z-index: -1;
  opacity: 0.1;
}

.strategy-item.gold {
  background: linear-gradient(135deg, #fff8dc, #f5e05a);
  border-color: #ffaa00;
}

.strategy-item.gold::before {
  background: linear-gradient(45deg, #ffaa00, #ffd700, #ffaa00);
}

.strategy-item.silver {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-color: #6c757d;
}

.strategy-item.silver::before {
  background: linear-gradient(45deg, #6c757d, #adb5bd, #6c757d);
}

.strategy-item.bronze {
  background: linear-gradient(135deg, #f4e4bc, #d2b48c);
  border-color: #cd7f32;
}

.strategy-item.bronze::before {
  background: linear-gradient(45deg, #cd7f32, #daa520, #cd7f32);
}

.strategy-medal {
  font-size: 2.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.strategy-content h4 {
  margin: 0 0 10px 0;
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 600;
}

.strategy-content p {
  margin: 0;
  color: #495057;
  line-height: 1.6;
  font-weight: 500;
}

.strategy-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Tips Experience */
.tips-experience {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  border: 2px solid #4caf50;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.tips-experience h4 {
  color: #2e7d32;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.tips-experience ul {
  margin: 15px 0;
  padding-left: 20px;
}

.tips-experience li {
  color: #2e7d32;
  font-weight: 500;
  margin-bottom: 8px;
}

.tips-experience p {
  color: #2e7d32;
  font-weight: 600;
  margin: 15px 0 0 0;
  font-style: italic;
}

/* Martingale Steps */
.martingale-steps {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border: 2px solid #ffc107;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  list-style: none;
  padding-left: 20px;
}

.martingale-steps li {
  color: #856404;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #ffc107;
  list-style: none;
  position: relative;
}

.martingale-steps li::before {
  content: "•";
  color: #ffc107;
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.martingale-steps li:last-child {
  border-bottom: none;
}

/* Martingale Advanced */
.martingale-advanced {
  background: linear-gradient(135deg, #ffe6e6, #ffcccc);
  border: 3px solid #dc3545;
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
  position: relative;
}

.martingale-advanced h4 {
  color: #721c24;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.martingale-advanced p {
  color: #721c24;
  font-weight: 500;
  margin-bottom: 15px;
}

.martingale-advanced ul {
  margin: 15px 0;
  padding-left: 20px;
}

.martingale-advanced li {
  color: #721c24;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Long Deposit Strategy */
.long-deposit-strategy {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border: 2px solid #2196f3;
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
}

.long-deposit-strategy h4 {
  color: #0d47a1;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.long-deposit-strategy ul {
  margin: 15px 0;
  padding-left: 20px;
}

.long-deposit-strategy li {
  color: #0d47a1;
  font-weight: 500;
  margin-bottom: 10px;
}

.long-deposit-strategy p {
  color: #0d47a1;
  font-weight: 600;
  margin: 15px 0 0 0;
  font-style: italic;
}

/* Bonus Tip */
.bonus-tip {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  border: 2px solid #9c27b0;
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
}

.bonus-tip p {
  margin: 0;
  color: #4a148c;
  font-weight: 600;
  font-size: 1.05rem;
}

/* Strategies Comparison Table */
.strategies-comparison-table {
  margin: 30px 0;
  overflow-x: auto;
}

.strategies-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid #dee2e6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.strategies-comparison-table th {
  background: linear-gradient(135deg, #343a40, #495057);
  color: white;
  font-weight: 600;
  padding: 20px;
  text-align: left;
  font-size: 1.1rem;
}

.strategies-comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #dee2e6;
  vertical-align: middle;
}

.strategies-comparison-table tr:hover {
  background: linear-gradient(135deg, #e7f3ff, #cce7ff);
}

.strategies-comparison-table tr:last-child td {
  border-bottom: none;
}

/* Risk Level Styling */
.risk-low {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.risk-medium {
  background: linear-gradient(135deg, #fff3cd, #ffeeba);
  color: #856404;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.risk-high {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Verdict Styling */
.verdict-1 {
  color: #28a745;
  font-weight: 600;
}

.verdict-2 {
  color: #ffc107;
  font-weight: 600;
}

.verdict-3 {
  color: #dc3545;
  font-weight: 600;
}

.verdict-4 {
  color: #007bff;
  font-weight: 600;
}

/* Final Advice */
.final-advice {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 3px solid #6c757d;
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
}

.final-advice h4 {
  color: #343a40;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.final-advice blockquote {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-left: 6px solid #007bff;
  padding: 20px 25px;
  margin: 20px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: #495057;
  position: relative;
}

.final-advice blockquote::before {
  content: '';
}

.final-advice p {
  color: #495057;
  font-weight: 500;
  line-height: 1.7;
  margin: 15px 0 0 0;
}

/* Responsive Styles for Strategy Section */
@media (max-width: 768px) {
  .strategy-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .strategy-medal {
    margin-right: 0;
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .strategy-content h4 {
    font-size: 1.2rem;
  }

  .tips-experience,
  .martingale-advanced,
  .long-deposit-strategy,
  .bonus-tip {
    padding: 20px;
    margin: 20px 0;
  }

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

  .strategies-comparison-table th {
    font-size: 1rem;
  }

  .final-advice {
    padding: 25px;
    margin: 25px 0;
  }

  .final-advice blockquote {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .final-advice blockquote::before {
    content: '';
  }
}

@media (max-width: 480px) {
  .strategy-item {
    padding: 15px;
  }

  .strategy-medal {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .strategy-content h4 {
    font-size: 1.1rem;
  }

  .strategy-content p {
    font-size: 14px;
  }

  .tips-experience,
  .martingale-advanced,
  .long-deposit-strategy,
  .bonus-tip {
    padding: 15px;
    margin: 15px 0;
  }

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

  .risk-low,
  .risk-medium,
  .risk-high {
    padding: 4px 8px;
    font-size: 0.8rem;
  }

  .final-advice {
    padding: 20px;
  }

  .final-advice blockquote {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .final-advice blockquote::before {
    content: '';
  }
}

/* Promo Code Guide Section */
.promo-sources {
  margin: 30px 0;
}

.promo-sources h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.promo-source-item {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid #dee2e6;
  border-left: 6px solid #007bff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.promo-source-item:hover {
  border-left-color: #0056b3;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.1);
  transform: translateY(-2px);
}

.promo-source-item h4 {
  color: #007bff;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.promo-source-item p {
  color: #495057;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.promo-source-item:last-child {
  margin-bottom: 0;
}

/* Promo Warning Box */
.promo-warning-box {
  background: linear-gradient(135deg, #ffe6e6, #ffcccc);
  border: 3px solid #dc3545;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  position: relative;
}

.promo-warning-box::before {
  content: '⚠️';
  position: absolute;
  top: -15px;
  left: 20px;
  background: #dc3545;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.promo-warning-box p {
  color: #721c24;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 15px;
}

.promo-warning-box p:last-child {
  margin-bottom: 0;
}

/* Responsive Styles for Promo Section */
@media (max-width: 768px) {
  .promo-sources h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .promo-source-item {
    padding: 20px;
    margin-bottom: 15px;
  }

  .promo-source-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .promo-source-item p {
    font-size: 14px;
  }

  .promo-warning-box {
    padding: 20px;
    margin: 25px 0;
  }

  .promo-warning-box::before {
    width: 35px;
    height: 35px;
    top: -12px;
    left: 15px;
    font-size: 1rem;
  }

  .promo-warning-box p {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .promo-sources h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .promo-source-item {
    padding: 15px;
    margin-bottom: 12px;
    border-left: 4px solid #007bff;
  }

  .promo-source-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .promo-source-item p {
    font-size: 13px;
  }

  .promo-warning-box {
    padding: 15px;
    margin: 20px 0;
  }

  .promo-warning-box::before {
    width: 30px;
    height: 30px;
    top: -10px;
    left: 10px;
    font-size: 0.9rem;
  }

  .promo-warning-box p {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

/* Final Opinion Section */
.opinion-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.opinion-pros,
.opinion-cons {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.opinion-pros:hover,
.opinion-cons:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.opinion-pros {
  border-left: 4px solid #10B981;
}

.opinion-cons {
  border-left: 4px solid #EF4444;
}

.opinion-pros h3,
.opinion-cons h3 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
}

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

.opinion-pros li,
.opinion-cons li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.opinion-pros li:last-child,
.opinion-cons li:last-child {
  border-bottom: none;
}

.opinion-pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: #10B981;
  font-weight: bold;
  font-size: 14px;
}

.opinion-cons li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 8px;
  color: #EF4444;
  font-weight: bold;
  font-size: 16px;
}

.author-signature {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 24px;
  margin: 40px 0;
  text-align: center;
  border: 1px solid #dee2e6;
}

.author-signature p {
  margin: 8px 0;
  color: #333;
}

.author-signature p:first-child {
  color: #666;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 16px;
}

.author-signature strong {
  color: #007bff;
  font-weight: 600;
}

.author-signature em {
  color: #666;
  font-style: italic;
}

@media (max-width: 768px) {
  .opinion-lists {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
  }

  .opinion-pros,
  .opinion-cons {
    padding: 20px;
  }

  .opinion-pros h3,
  .opinion-cons h3 {
    font-size: 16px;
  }

  .opinion-pros li,
  .opinion-cons li {
    padding: 6px 0 6px 20px;
    font-size: 14px;
  }

  .author-signature {
    padding: 20px;
    margin: 30px 0;
  }

  .author-signature p:first-child {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .opinion-lists {
    margin: 20px 0;
  }

  .opinion-pros,
  .opinion-cons {
    padding: 16px;
  }

  .opinion-pros h3,
  .opinion-cons h3 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .opinion-pros li,
  .opinion-cons li {
    padding: 5px 0 5px 18px;
    font-size: 13px;
  }

  .author-signature {
    padding: 16px;
    margin: 20px 0;
  }

  .author-signature p:first-child {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

/* Game Demo Modal Styles */
.game-demo-modal {
  display: none !important;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  /* Fallback for older browsers */
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.game-demo-modal.show-modal {
  visibility: visible !important;
  opacity: 1 !important;
}

.game-demo-modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* Modern browsers - only when modal is shown */
@supports (display: flex) {
  .game-demo-modal.show-modal {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: initial;
  }
  
  .game-demo-modal.show-modal:before {
    display: none;
  }
}

.game-demo-modal__content {
  position: relative;
  background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000 100%);
  border-radius: 15px;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  max-height: 800px;
  border: 1px solid #dee2e6;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
  overflow: hidden;
  /* Fallback for older browsers */
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}

/* Modern browsers */
@supports (display: flex) {
  .game-demo-modal__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.game-demo-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
  font-weight: bold;
}

.game-demo-modal__close:hover {
  color: #fff;
}

.game-demo-modal__header {
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.game-demo-modal__header h2 {
  color: #fff;
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-demo-modal__header p {
  color: #ffffff;
  margin: 0;
  font-size: 1rem;
}

.game-demo-modal iframe {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  border: none;
  background: #000;
}

/* Prevent scrolling when modal is open */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .game-demo-modal__content {
    width: 95%;
    height: 95%;
  }
  
  .game-demo-modal__header {
    padding: 15px;
  }
  
  .game-demo-modal__header h2 {
    font-size: 1.5rem;
  }
  
  .game-demo-modal__close {
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
  }
}