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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  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;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

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

.flag {
  height: 30px;
  width: auto;
  border-radius: 4px;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

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

.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;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

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

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
}

.mobile-menu.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-content {
  text-align: center;
  color: white;
}

.mobile-nav-link {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 1rem 0;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

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

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

/* Content Sections */
.content-section,
.info-section,
.features-section,
.sports-section,
.bonuses-section,
.promo-section,
.registration-section,
.mobile-section,
.app-section,
.games-section,
.payment-section,
.support-section,
.conclusion-section,
.faq-section {
  padding: 4rem 0;
  background: white;
  margin-bottom: 2rem;
}

.content-section:nth-child(even),
.info-section:nth-child(even),
.features-section:nth-child(even),
.sports-section:nth-child(even),
.bonuses-section:nth-child(even),
.promo-section:nth-child(even),
.registration-section:nth-child(even),
.mobile-section:nth-child(even),
.app-section:nth-child(even),
.games-section:nth-child(even),
.payment-section:nth-child(even),
.support-section:nth-child(even),
.conclusion-section:nth-child(even),
.faq-section:nth-child(even) {
  background: #f8f9fa;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1e3c72;
  text-align: center;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: #2a5298;
}

h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  color: #1e3c72;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Table Styles */
.info-table-wrapper,
.sports-table-wrapper,
.bonus-table-wrapper,
.app-comparison-wrapper,
.payment-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-table,
.sports-table,
.bonus-table,
.app-comparison,
.payment-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.info-table th,
.sports-table th,
.bonus-table th,
.app-comparison th,
.payment-table th {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.info-table td,
.sports-table td,
.bonus-table td,
.app-comparison td,
.payment-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.info-table tr:hover,
.sports-table tr:hover,
.bonus-table tr:hover,
.app-comparison tr:hover,
.payment-table tr:hover {
  background: #f8f9fa;
}

.info-table td:first-child {
  font-weight: 600;
  color: #1e3c72;
}

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

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

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

.feature-card i {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.feature-card h4 {
  margin-bottom: 1rem;
  color: #1e3c72;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefits-list i {
  color: #ff6b35;
  font-size: 1.2rem;
  width: 20px;
}

/* Registration Showcase */
.registration-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

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

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

/* Registration Methods */
.registration-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

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

.method-card h4 {
  color: #1e3c72;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.method-card ul {
  list-style: none;
}

.method-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.method-card i {
  color: #ff6b35;
  width: 20px;
}

/* Mobile Advantages */
.mobile-advantages {
  list-style: none;
  margin: 2rem 0;
}

.mobile-advantages li {
  padding: 1rem;
  margin: 0.5rem 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-advantages i {
  color: #ff6b35;
  font-size: 1.5rem;
  width: 30px;
}

/* Installation Guides */
.installation-guides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

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

.install-card h3 {
  color: #1e3c72;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.install-card ol {
  margin-left: 1rem;
}

.install-card li {
  margin: 0.5rem 0;
  line-height: 1.6;
}

/* Games Showcase - Text Format */
.games-showcase {
  margin: 3rem 0;
}

.games-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.games-hero-content h2 {
  color: white;
  text-align: left;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

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

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

.games-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.games-content {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.games-content h3 {
  color: #1e3c72;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.8rem;
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 1rem;
}

.games-content h3 i {
  color: #ff6b35;
  font-size: 2rem;
}

.games-content p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

.game-cta {
  text-align: center;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.game-cta .btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Support Options */
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

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

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

.support-card i {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.support-card h3 {
  color: #1e3c72;
  margin-bottom: 1rem;
  justify-content: center;
}

/* Promo Steps */
.promo-steps {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.promo-steps li {
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
  justify-content: center;
}

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

/* FAQ Section */
.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 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.faq-item h3 {
  color: #1e3c72;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1.2rem;
}

.faq-item i {
  color: #ff6b35;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.faq-item p {
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 3rem 0 1rem 0;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

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

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 35px;
  width: auto;
}

.footer-flag {
  height: 25px;
  width: auto;
  border-radius: 4px;
}

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

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

.social-link:hover {
  background: #ff6b35;
  transform: translateY(-2px);
}

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

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.disclaimer {
  font-weight: 600;
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

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

  h2 {
    font-size: 1.8rem;
  }

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

  .registration-showcase {
    grid-template-columns: 1fr;
  }

  .registration-methods {
    grid-template-columns: 1fr;
  }

  .installation-guides {
    grid-template-columns: 1fr;
  }

  .games-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }

  .games-hero-content h2 {
    text-align: center;
    font-size: 2rem;
  }

  .games-content {
    padding: 2rem;
  }

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

  .support-options {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .container {
    padding: 0 15px;
  }
}

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

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .info-table-wrapper,
  .sports-table-wrapper,
  .bonus-table-wrapper,
  .app-comparison-wrapper,
  .payment-table-wrapper {
    font-size: 0.9rem;
  }

  .info-table td,
  .sports-table td,
  .bonus-table td,
  .app-comparison td,
  .payment-table td {
    padding: 0.75rem 0.5rem;
  }

  .games-hero {
    padding: 1.5rem;
  }

  .games-hero-content h2 {
    font-size: 1.8rem;
  }

  .games-content {
    padding: 1.5rem;
  }

  .games-content h3 {
    font-size: 1.3rem;
  }
}

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

.hero-content,
.feature-card,
.support-card,
.faq-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.mobile-nav-link:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .mobile-menu,
  .footer {
    display: none;
  }

  .hero {
    background: none;
    color: black;
  }

  .btn {
    display: none;
  }
}
