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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #0d47a1;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background-color: #ff6f00;
  color: white;
  border-color: #ff6f00;
}

.btn-primary:hover {
  background-color: #e65100;
  border-color: #e65100;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #0d47a1;
  border-color: #0d47a1;
}

.btn-secondary:hover {
  background-color: #0d47a1;
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: #ff6f00;
  border-color: #ff6f00;
}

.btn-outline:hover {
  background-color: #ff6f00;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
}

/* Header */
.header {
  background-color: #0d47a1;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ff6f00;
}

/* Active navigation link styling */
.nav-link.active {
  color: #ff6f00;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ff6f00;
  border-radius: 1px;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-play-button {
  display: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #0d47a1;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature i {
  color: #ff6f00;
  font-size: 1.2rem;
  width: 20px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Quick Summary */
.quick-summary {
  padding: 4rem 0;
  background-color: #f5f7fa;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: #0d47a1;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #666;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.summary-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.summary-icon {
  width: 60px;
  height: 60px;
  background-color: #ff6f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.summary-icon i {
  color: white;
  font-size: 1.5rem;
}

.summary-card h3 {
  margin-bottom: 0.5rem;
  color: #0d47a1;
}

/* Bonus Section */
.bonus-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  color: white;
}

.bonus-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bonus-section .section-title {
  color: white;
  text-align: left;
}

.bonus-section p {
  color: rgba(255, 255, 255, 0.9);
}

.bonus-details h3 {
  color: #ff6f00;
  margin: 2rem 0 1rem;
}

.bonus-list {
  list-style: none;
  margin-bottom: 2rem;
}

.bonus-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Enhanced Bonus Section */
.bonus-section-detailed {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  color: white;
}

.bonus-section-detailed .section-title,
.bonus-section-detailed h3,
.bonus-section-detailed h4 {
  color: white;
}

.bonus-section-detailed p {
  color: rgba(255, 255, 255, 0.9);
}

.strategic-considerations,
.value-evaluation,
.points-accumulation {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.strategic-considerations ul,
.value-evaluation ul,
.points-accumulation ul {
  list-style: none;
  padding-left: 0;
}

.strategic-considerations li,
.value-evaluation li,
.points-accumulation li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.strategic-considerations li:before,
.value-evaluation li:before,
.points-accumulation li:before {
  content: "→";
  color: #ff6f00;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Payment Methods */
.payment-methods {
  padding: 4rem 0;
}

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

.payment-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.payment-card:hover {
  border-color: #ff6f00;
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}

.payment-icon {
  width: 60px;
  height: 60px;
  background-color: #0d47a1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.payment-icon i {
  color: white;
  font-size: 1.5rem;
}

.payment-limits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.instant {
  background-color: #4caf50;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.processing {
  background-color: #ff9800;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* Mobile App */
.mobile-app {
  padding: 4rem 0;
  background-color: #f5f7fa;
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.app-features {
  margin: 2rem 0;
}

.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.app-feature i {
  color: #ff6f00;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.app-feature h4 {
  margin-bottom: 0.5rem;
  color: #0d47a1;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Games Section */
.games-section {
  padding: 4rem 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.game-category {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.game-category:hover {
  transform: translateY(-5px);
}

.category-icon {
  width: 60px;
  height: 60px;
  background-color: #ff6f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.category-icon i {
  color: white;
  font-size: 1.5rem;
}

.game-category h3 {
  margin-bottom: 1rem;
  color: #0d47a1;
}

.game-category ul {
  list-style: none;
  margin-top: 1rem;
}

.game-category li {
  padding: 0.5rem 0;
  color: #666;
  border-bottom: 1px solid #eee;
}

.game-category li:last-child {
  border-bottom: none;
}

/* Games Detailed */
.games-detailed {
  padding: 2rem 0;
  background-color: #f5f7fa;
}

.games-table th {
  background-color: #0d47a1;
}

.esports-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Legal & Security */
.legal-security {
  padding: 4rem 0;
  background-color: #f5f7fa;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.security-feature {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.security-icon {
  width: 60px;
  height: 60px;
  background-color: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.security-icon i {
  color: white;
  font-size: 1.5rem;
}

.security-feature h3 {
  margin-bottom: 0.5rem;
  color: #0d47a1;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ff6f00 0%, #e65100 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background-color: white;
  color: #ff6f00;
  border-color: white;
}

.cta-section .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-outline {
  background-color: transparent;
  color: white;
  border-color: white;
}

/* Footer */
.footer {
  background-color: #0d47a1;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: #ff6f00;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6f00;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-logo {
  background-color: white;
  color: #0d47a1;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.age-badge {
  background-color: #ff6f00;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #ff6f00;
  transform: translateY(-2px);
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Special Features Section */
.special-features {
  padding: 4rem 0;
  background-color: #f5f7fa;
}

.expert-quote {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  border-left: 4px solid #ff6f00;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.expert-quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.expert-quote cite {
  color: #0d47a1;
  font-weight: 600;
  font-style: normal;
}

/* Registration Guide */
.registration-guide {
  padding: 4rem 0;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.method-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.method-icon {
  width: 60px;
  height: 60px;
  background-color: #ff6f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.method-icon i {
  color: white;
  font-size: 1.5rem;
}

.requirements-list {
  list-style: none;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.requirements-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.requirements-list li:last-child {
  border-bottom: none;
}

.kyc-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.kyc-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.kyc-standards ul {
  list-style: none;
  padding-left: 0;
}

.kyc-standards li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.kyc-standards li:before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

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

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background-color: #0d47a1;
  color: white;
  font-weight: 600;
}

tr:hover {
  background-color: #f8f9fa;
}

/* Specific table header fixes */
.bonus-table th,
.comparison-table th,
.vip-table th,
.rollover-table th,
.crypto-table th,
.recommendations-table th,
.app-comparison-table th,
.quality-table th,
.problems-table th,
.competition-table th,
.games-table th {
  background-color: #0d47a1 !important;
  color: white !important;
}

/* Special styling for tables in colored sections */
.bonus-section-detailed table th {
  background-color: #ff6f00 !important;
  color: white !important;
}

.bonus-section-detailed table {
  background: rgba(255, 255, 255, 0.95);
}

.bonus-section-detailed table td {
  color: #333 !important;
  background-color: rgba(255, 255, 255, 0.95);
}

.bonus-section-detailed table tr:hover td {
  background-color: rgba(255, 255, 255, 1) !important;
}

/* Customer Support */
.customer-support {
  padding: 4rem 0;
  background-color: #f5f7fa;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.channel-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.channel-icon {
  width: 60px;
  height: 60px;
  background-color: #ff6f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.channel-icon i {
  color: white;
  font-size: 1.5rem;
}

.quality-table th,
.problems-table th {
  background-color: #0d47a1;
}

/* Competition Comparison */
.competition-comparison {
  padding: 4rem 0;
}

.competition-table th {
  background-color: #0d47a1;
}

.competition-table td:first-child {
  font-weight: 600;
  color: #0d47a1;
}

/* User Testimonials */
.user-testimonials {
  padding: 4rem 0;
  background-color: #f5f7fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card:before {
  content: '"';
  font-size: 4rem;
  color: #ff6f00;
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

.testimonial-content {
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.testimonial-author {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.testimonial-author strong {
  color: #0d47a1;
  display: block;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* Responsible Gaming */
.responsible-gaming {
  padding: 4rem 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.tool-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.tool-icon {
  width: 60px;
  height: 60px;
  background-color: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.tool-icon i {
  color: white;
  font-size: 1.5rem;
}

/* Expert Strategies */
.expert-strategies {
  padding: 4rem 0;
  background-color: #f5f7fa;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.strategy-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.strategy-card h3 {
  color: #0d47a1;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ff6f00;
  padding-bottom: 0.5rem;
}

.strategy-card ul {
  list-style: none;
  padding-left: 0;
}

.strategy-card li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.strategy-card li:before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* FAQ */
.faq-section {
  padding: 4rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.faq-item h3 {
  color: #0d47a1;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Conclusion */
.conclusion {
  padding: 4rem 0;
  background-color: #f5f7fa;
}

.conclusion-content {
  max-width: 800px;
  margin: 0 auto;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pros,
.cons {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pros h3 {
  color: #4caf50;
  margin-bottom: 1rem;
}

.cons h3 {
  color: #ff9800;
  margin-bottom: 1rem;
}

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

.pros li,
.cons li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

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

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

.final-recommendation {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.final-recommendation h3 {
  color: #0d47a1;
  margin-bottom: 1rem;
}

.final-cta {
  margin-top: 2rem;
}

/* Crypto Payments */
.crypto-payments {
  padding: 2rem 0;
  background-color: #f5f7fa;
}

.crypto-table th,
.recommendations-table th {
  background-color: #0d47a1;
}

.expert-recommendations {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.expert-recommendations ul {
  list-style: none;
  padding-left: 0;
}

.expert-recommendations li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.expert-recommendations li:before {
  content: "💡";
  position: absolute;
  left: 0;
}

.expert-recommendations li:last-child {
  border-bottom: none;
}

/* Mobile Comparison */
.mobile-comparison {
  padding: 2rem 0;
}

.app-comparison-table th {
  background-color: #0d47a1;
}

/* Enhanced 404 Error Page Styles */
.error-404 {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.error-404::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6f00" opacity="0.1"><animate attributeName="cy" values="20;80;20" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="%230d47a1" opacity="0.1"><animate attributeName="cy" values="40;90;40" dur="4s" repeatCount="indefinite"/></circle><circle cx="50" cy="60" r="1" fill="%23ff6f00" opacity="0.1"><animate attributeName="cy" values="60;10;60" dur="2.5s" repeatCount="indefinite"/></circle></svg>')
    repeat;
  pointer-events: none;
}

.error-header {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.error-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d47a1;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.error-description {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.error-image-section {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.error-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.error-actions .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}

.error-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.error-suggestions {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.error-suggestions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6f00, #0d47a1, #ff6f00);
}

.error-suggestions h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.error-suggestions h3 i {
  color: #ff6f00;
}

.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.suggestion-card {
  background: #f8f9fa;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.suggestion-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 111, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.suggestion-card:hover::before {
  left: 100%;
}

.suggestion-card:hover {
  transform: translateY(-5px);
  border-color: #ff6f00;
  box-shadow: 0 15px 30px rgba(255, 111, 0, 0.2);
  text-decoration: none;
  color: inherit;
}

.suggestion-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6f00, #e65100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.suggestion-card:hover .suggestion-icon {
  transform: rotate(360deg);
}

.suggestion-icon i {
  color: white;
  font-size: 1.5rem;
}

.suggestion-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 0.5rem;
}

.suggestion-card p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.error-promo {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
  padding: 3rem;
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.error-promo::before {
  content: "🎰🎲🃏🎯";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

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

.promo-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.promo-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.error-promo .btn {
  background: #ff6f00;
  border-color: #ff6f00;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-promo .btn:hover {
  background: #e65100;
  border-color: #e65100;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 111, 0, 0.4);
}

/* Mobile styles for enhanced 404 page */
@media (max-width: 768px) {
  .error-404 {
    padding: 40px 0;
  }

  .error-header {
    margin-bottom: 2rem;
  }

  .error-title {
    font-size: 2rem;
  }

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

  .error-image-section {
    margin-bottom: 2rem;
    min-height: 40vh;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
  }

  .error-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .error-suggestions {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .error-suggestions h3 {
    font-size: 1.5rem;
  }

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

  .suggestion-card {
    padding: 1.5rem 1rem;
  }

  .error-promo {
    padding: 2rem 1.5rem;
  }

  .promo-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .error-title {
    font-size: 1.75rem;
  }

  .error-description {
    font-size: 1rem;
  }

  .error-image-section {
    min-height: 35vh;
  }

  .error-suggestions {
    padding: 1.5rem 1rem;
  }

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

  .suggestion-card {
    padding: 1.25rem;
  }

  .error-promo {
    padding: 1.5rem 1rem;
  }
}

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

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0d47a1;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }

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

  .header-actions {
    display: none;
  }

  .mobile-play-button {
    display: block;
  }

  .hero-content,
  .bonus-content,
  .app-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-actions,
  .app-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .summary-grid,
  .payment-grid,
  .games-grid,
  .security-features {
    grid-template-columns: 1fr;
  }

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

  .payment-logos {
    justify-content: center;
  }

  .methods-grid,
  .channels-grid,
  .tools-grid,
  .strategies-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .kyc-requirements {
    grid-template-columns: 1fr;
  }

  .table-responsive {
    font-size: 0.9rem;
  }

  th,
  td {
    padding: 0.75rem 0.5rem;
  }

  .testimonial-card {
    min-width: auto;
  }

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

  /* 404 Mobile styles */
  .error-404 {
    padding: 40px 0;
  }

  .error-number {
    font-size: 80px;
  }

  .error-title {
    font-size: 24px;
  }

  .error-description {
    font-size: 16px;
  }

  .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .error-suggestions {
    padding: 24px 16px;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .quick-summary,
  .bonus-section,
  .payment-methods,
  .mobile-app,
  .games-section,
  .legal-security,
  .cta-section {
    padding: 2rem 0;
  }

  .summary-card,
  .payment-card,
  .game-category,
  .security-feature {
    padding: 1.5rem;
  }

  .hero-features {
    gap: 0.75rem;
  }

  .feature {
    font-size: 0.9rem;
  }

  .registration-guide,
  .customer-support,
  .competition-comparison,
  .user-testimonials,
  .responsible-gaming,
  .expert-strategies,
  .faq-section,
  .conclusion {
    padding: 2rem 0;
  }

  .method-card,
  .channel-card,
  .tool-card,
  .strategy-card,
  .testimonial-card,
  .faq-item {
    padding: 1.5rem;
  }

  .expert-quote {
    padding: 1.5rem;
  }

  .kyc-section {
    padding: 1.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.footer-links a:focus,
.social-links a:focus {
  outline: 2px solid #ff6f00;
  outline-offset: 2px;
}

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

  .btn-outline {
    border: 2px solid currentColor;
  }
}
/* === Код для адаптивної 404 сторінки === */

/* 1. Робимо головний контейнер гнучким (flex), щоб легко центрувати весь вміст */
.error-404 {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Центрує весь контент по вертикалі */
    align-items: center;     /* Центрує весь контент по горизонталі */
    padding: 40px 20px;      /* Додаємо відступи */
}

/* 2. Знімаємо непотрібну мінімальну висоту з секції зображення */
.error-image-section {
    min-height: auto; /* Дозволяє секції мати природну висоту */
    margin-bottom: 2rem;
}

/* 3. ГОЛОВНЕ: Обмежуємо розмір самого зображення, щоб воно не було завеликим */
.error-main-image {
    display: block;    /* Для кращого контролю над розмірами */
    max-width: 50%;   /* Гарантує, що зображення не вийде за межі екрану на мобільних */
    width: 300px;      /* Встановлюємо максимальну ширину в пікселях. Можете змінити це значення. */
    height: auto;      /* Автоматично підбирає висоту, щоб зберегти пропорції */
    max-height: none;  /* Прибираємо залежність від висоти екрану */
}

/* 4. Гарантуємо, що текстові блоки та кнопки також будуть відцентровані та обмежені по ширині */
.error-header,
.error-actions {
    width: 100%;
    max-width: 700px; /* Обмежуємо ширину текстових блоків для кращої читабельності */
}