/* 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: #fff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
}

.btn-premium {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.btn-premium:hover {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

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

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

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

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

.flag {
  height: 24px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff;
}

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu-content {
  padding: 2rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 120px 0 80px;
  margin-top: 80px;
}

.hero-content {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-title {
  color: #333;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  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.1);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

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

.subsection-title {
  margin: 3rem 0 2rem;
  color: #333;
}

.section-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Overview Table */
.overview-table {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 2rem 0;
}

.table-row {
  display: flex;
  border-bottom: 1px solid #eee;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row.highlight {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.table-cell {
  padding: 1rem;
  flex: 1;
}

.table-header {
  background: #f8f9fa;
  font-weight: 600;
  flex: 0 0 200px;
}

.table-row.highlight .table-header {
  background: rgba(255, 255, 255, 0.1);
}

.overview-footer {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 2rem;
}

/* Legal & Safety */
.legal-safety {
  background: #f8f9fa;
}

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

.legal-text p {
  margin-bottom: 1.5rem;
}

/* Bonuses Section */
.bonuses {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.bonus-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.bonus-card.premium {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.bonus-header {
  margin-bottom: 1.5rem;
}

.bonus-amount {
  font-size: 3rem;
  font-weight: bold;
  color: #8b5cf6;
}

.bonus-card.premium .bonus-amount {
  color: white;
}

.bonus-details ul {
  list-style: none;
  margin-bottom: 1rem;
}

.bonus-details li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.bonus-card.premium .bonus-details li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.bonus-max {
  font-weight: bold;
  margin: 1rem 0;
}

.additional-bonuses {
  margin-top: 3rem;
}

.bonus-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bonus-icon {
  flex: 0 0 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.bonus-info h4 {
  margin-bottom: 0.5rem;
  color: #333;
}

.bonus-footer {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 3rem;
}

/* Mobile App Section */
.app-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

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

.platform-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.platform-icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.platform-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

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

.sport-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.sport-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.sport-card ul {
  list-style: none;
  margin: 1rem 0;
}

.sport-card li {
  padding: 0.25rem 0;
  color: #666;
}

.sport-card li:before {
  content: "•";
  color: #007bff;
  margin-right: 0.5rem;
}

.live-betting {
  margin-top: 4rem;
  padding: 3rem;
  background: #f8f9fa;
  border-radius: 12px;
}

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

.feature-item {
  text-align: center;
}

.feature-item i {
  font-size: 2rem;
  color: #8b5cf6;
  margin-bottom: 1rem;
}

.feature-item h4 {
  margin-bottom: 1rem;
  color: #333;
}

/* Casino Games */
.casino-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  margin: 3rem 0;
}

.game-categories {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.category-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.popular-games {
  margin-top: 1.5rem;
}

.game-item {
  padding: 1rem;
  border-left: 4px solid #8b5cf6;
  background: #f8f9fa;
  margin-bottom: 1rem;
  border-radius: 0 8px 8px 0;
}

.game-item h4 {
  margin-bottom: 0.5rem;
  color: #333;
}

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

.live-casino {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
}

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

.live-game-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.live-game-card h4 {
  color: #8b5cf6;
  margin-bottom: 1rem;
}

/* Payment Methods */
.payment-methods {
  background: #f8f9fa;
}

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

.payment-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.payment-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.payment-card ul {
  list-style: none;
  margin-top: 1rem;
}

.payment-card li {
  padding: 0.25rem 0;
  color: #666;
}

.payment-limits {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.payment-limits h3 {
  color: #333;
  margin-bottom: 1rem;
}

.payment-limits p {
  margin-bottom: 0.5rem;
  color: #666;
}

/* Getting Started */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.step-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step-content h3 {
  margin-bottom: 1rem;
  color: #333;
}

.registration-section {
  margin-top: 4rem;
  padding: 3rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.registration-steps {
  margin-top: 2rem;
}

.reg-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reg-step i {
  flex: 0 0 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.reg-step h4 {
  margin-bottom: 0.5rem;
  color: #333;
}

.quick-reg {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 2rem;
}

/* Customer Support */
.support-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.support-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.support-method {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.support-method i {
  flex: 0 0 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.support-method h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.support-method p {
  color: #666;
  margin-bottom: 0.25rem;
}

/* FAQ */
.faq {
  background: #f8f9fa;
}

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

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  color: #333;
}

.faq-question i {
  color: #8b5cf6;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  margin: 0;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  text-align: center;
}

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

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

/* Footer */
.footer {
  background: #333;
  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-section h3 {
  color: white;
  margin-bottom: 1rem;
}

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

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

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

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

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

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #8b5cf6;
  transform: translateY(-2px);
}

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

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

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

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

  .mobile-actions .btn {
    flex: 1;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

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

  .legal-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .casino-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .support-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .table-row {
    flex-direction: column;
  }

  .table-header {
    flex: 1;
    background: #e9ecef;
    font-weight: 600;
  }

  .table-row.highlight .table-header {
    background: rgba(255, 255, 255, 0.2);
  }

  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

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

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

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

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

  section {
    padding: 60px 0;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .bonus-amount {
    font-size: 2.5rem;
  }

  .platform-card,
  .sport-card,
  .payment-card,
  .step-card {
    padding: 1.5rem;
  }

  .bonus-item,
  .reg-step,
  .support-method {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .bonus-icon,
  .reg-step i,
  .support-method i {
    align-self: center;
  }
}

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

.hero-content,
.section-title,
.bonus-card,
.sport-card,
.step-card {
  animation: fadeInUp 0.6s ease-out;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 1rem;
}
.p-3 {
  padding: 1.5rem;
}
.p-4 {
  padding: 2rem;
}

.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.d-grid {
  display: grid;
}

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

  .hero {
    margin-top: 0;
    padding-top: 2rem;
  }

  section {
    padding: 2rem 0;
  }

  .btn {
    display: none;
  }
}
