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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  /* prevent horizontal scroll on mobile */
}

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

/* Full width container for sections without images */
.full-width-container {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

/* Header */
.header {
  /* Enhanced red gradient for Aviator theme */
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #8b0000 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

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

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

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  /* Updated hero gradient with more red tones for Aviator theme */
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #8b0000 100%);
  color: white;
  padding: 4rem 0;
}

.hero-content {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  /* Enhanced red button with gradient for Aviator theme */
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c0392b 0%, #8b0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #667eea;
}

.hero-image {
  text-align: center;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Sections */
.main section {
  padding: 3rem 0;
}

/* Added visual break section for new images */
.visual-break {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 2rem 0;
}

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

.visual-content .responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
  border: 2px solid #e74c3c;
}

.section-title {
  font-size: 2rem;
  /* Enhanced section titles with red gradient for Aviator theme */
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: bold;
}

.subsection-title {
  font-size: 1.5rem;
  /* Updated subsection titles with red color */
  color: #c0392b;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}

.section-content {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.text-content {
  font-size: 1rem;
  line-height: 1.7;
}

.text-content p {
  margin-bottom: 1rem;
}

.text-content ul,
.text-content ol {
  margin: 1rem 0;
  padding-left: 2.5rem;
}

.text-content li {
  margin-bottom: 0.5rem;
  padding-right: 1rem;
}

.text-content ol {
  padding-left: 3rem;
}

.text-content ol li {
  padding-left: 0.5rem;
  margin-bottom: 0.8rem;
}

/* Tables */
.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  /* Enhanced table shadow with red tint */
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.15);
  width: 100%;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.game-stats-table,
.payment-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: white;
}

.game-stats-table th,
.payment-table th {
  /* Updated table headers with red gradient */
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: bold;
}

.game-stats-table td,
.payment-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.game-stats-table tr:nth-child(even),
.payment-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Special Lists */
.game-steps,
.registration-steps,
.strategies-list {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  /* Enhanced border with stronger red color */
  border-left: 4px solid #c0392b;
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.1);
}

.features-list {
  /* Updated features list with red theme */
  background: #fff5f5;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #e74c3c;
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.1);
}

.bonus-list {
  /* Updated bonus list with red accent */
  background: #fff5f5;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #e74c3c;
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.1);
}

/* Warning Section */
.warning {
  background: #fff5f5;
  border: 1px solid #fed7d7;
}

.warning-text {
  /* Enhanced warning text with stronger red */
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* FAQ Section */
.faq-list {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  /* Enhanced FAQ items with red border */
  border: 1px solid #fed7d7;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #e74c3c;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.faq-question {
  /* Updated FAQ questions with red color */
  color: #c0392b;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

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

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  /* Updated footer section headers with red color */
  color: #e74c3c;
  margin-bottom: 1rem;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #999;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .section-content {
    grid-template-columns: 2fr 1fr;
  }

  /* Full width sections without images on desktop */
  .section-content.full-width {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .image-content {
    order: 2;
  }

  .nav {
    display: flex;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .text-content ol {
    padding-left: 3.5rem;
  }
}

@media (max-width: 767px) {
  /* increased mobile padding for better content spacing */
  .container,
  .full-width-container {
    padding: 0 25px;
  }

  /* better spacing for special list sections */
  .game-steps,
  .registration-steps,
  .strategies-list,
  .features-list,
  .bonus-list {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  /* improved list spacing on mobile with better padding */
  .text-content ul,
  .text-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }

  .text-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    padding-right: 1rem;
  }

  /* ensure numbered lists have proper spacing on mobile */
  .text-content ol {
    padding-left: 2.5rem;
  }

  .text-content ol li {
    padding-left: 0.5rem;
  }

  .nav {
    display: none;
  }

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

  .section-title {
    font-size: 1.5rem;
  }

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

  .btn {
    flex: 1;
    justify-content: center;
    min-width: 140px;
    max-width: 100%;
  }

  .image-content {
    order: 1;
    margin-bottom: 1rem;
  }

  .text-content {
    order: 2;
  }

  /* fixed table container to prevent horizontal page scroll */
  .table-container {
    margin-left: -25px;
    margin-right: -25px;
    border-radius: 0;
    width: calc(100vw - 0px);
    max-width: calc(100vw - 0px);
  }

  .game-stats-table th,
  .payment-table th,
  .game-stats-table td,
  .payment-table td {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  /* Better paragraph spacing on mobile */
  .text-content p {
    margin-bottom: 1.2rem;
  }

  /* Ensure section content has proper mobile spacing */
  .main section {
    padding: 2rem 0;
  }
}

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

.hero-content,
.section-content {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}
