/* 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 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  color: #1a365d;
}

h2 {
  font-size: 2rem;
  color: #1a365d;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: #2d3748;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #3182ce, #2c5aa0);
  color: white;
}

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

.btn-secondary {
  background: linear-gradient(135deg, #ff8c00, #ff7700);
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ff7700, #e66600);
  transform: translateY(-2px);
}

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

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

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

/* Header */
.header {
  background: linear-gradient(135deg, #1a365d, #2c5aa0);
  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;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

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

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

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

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

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

.mobile-nav-link {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 1rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ff8c00;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a365d, #2c5aa0, #3182ce);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

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

.hero-text h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

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

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

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

/* Overview Section */
.overview {
  padding: 4rem 0;
  background: #f7fafc;
}

.overview h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.overview > p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

th {
  background: linear-gradient(135deg, #3182ce, #2c5aa0);
  color: white;
  font-weight: 600;
}

tr:hover {
  background: #f7fafc;
}

.total-row {
  background: #e6fffa;
  font-weight: 600;
}

/* Bonus Section */
.bonus-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fff5e6, #ffe6cc);
}

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

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

/* Other Bonuses */
.other-bonuses {
  padding: 4rem 0;
}

/* Legal Info */
.legal-info {
  padding: 2rem 0;
  background: #f7fafc;
  text-align: center;
}

/* Numbers Section */
.numbers-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a365d, #2c5aa0);
  color: white;
}

.numbers-section h2 {
  color: white;
  text-align: center;
}

.numbers-section > .container > p {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}

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

.number-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 0.5rem;
}

.description {
  color: rgba(255, 255, 255, 0.9);
}

/* How to Start */
.how-to-start {
  padding: 4rem 0;
  background: #f7fafc;
}

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

.steps {
  margin: 2rem 0;
}

.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-number {
  background: linear-gradient(135deg, #3182ce, #2c5aa0);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

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

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

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

.registration-steps {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.registration-steps li {
  margin-bottom: 1rem;
}

.registration-steps ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.requirements {
  background: #e6fffa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #38b2ac;
  margin: 2rem 0;
}

/* Login Section */
.login-section {
  padding: 4rem 0;
  background: #f7fafc;
}

.login-steps {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.login-steps li {
  margin-bottom: 1rem;
}

/* Deposit Section */
.deposit-section {
  padding: 4rem 0;
}

.deposit-steps {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.deposit-steps li {
  margin-bottom: 1rem;
}

/* Sports Betting */
.sports-betting {
  padding: 4rem 0;
  background: #f7fafc;
}

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

.betting-steps {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.betting-steps li {
  margin-bottom: 1rem;
}

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

/* Casino Section */
.casino-section {
  padding: 4rem 0;
}

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

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

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

.category-card i {
  font-size: 3rem;
  color: #3182ce;
  margin-bottom: 1rem;
}

.category-card h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}

/* Withdrawal Section */
.withdrawal-section {
  padding: 4rem 0;
  background: #f7fafc;
}

.withdrawal-steps {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.withdrawal-steps li {
  margin-bottom: 1rem;
}

.withdrawal-tips {
  background: #fff5e6;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ff8c00;
  margin: 2rem 0;
}

/* App Section */
.app-section {
  padding: 4rem 0;
}

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

.app-steps {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.app-steps li {
  margin-bottom: 1rem;
}

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

/* Support Section */
.support-section {
  padding: 4rem 0;
  background: #f7fafc;
}

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

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

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

.support-card h3 {
  color: #1a365d;
  margin-bottom: 1rem;
}

/* Affiliate Section */
.affiliate-section {
  padding: 4rem 0;
}

/* Legal Status */
.legal-status {
  padding: 4rem 0;
  background: #f7fafc;
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
}

.trust-factors {
  background: #e6fffa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #38b2ac;
  margin: 2rem 0;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

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

.pros h3 {
  color: #38a169;
  margin-bottom: 1rem;
}

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

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

.pros li,
.cons li {
  margin-bottom: 0.5rem;
}

/* Responsible Gambling */
.responsible-gambling {
  padding: 4rem 0;
  background: #f7fafc;
}

.responsible-tips {
  background: #fff5e6;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ff8c00;
  margin: 2rem 0;
}

/* Comparison Section */
.comparison-section {
  padding: 4rem 0;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: #f7fafc;
}

.faq-list {
  margin: 2rem 0;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

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

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

.faq-question i {
  color: #3182ce;
  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: 1.5rem;
  max-height: 200px;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a365d, #2c5aa0);
  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;
}

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

/* Footer */
.footer {
  background: #1a202c;
  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-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

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

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

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

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

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

.footer-section ul li a:hover {
  color: #ff8c00;
}

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

.payment-method {
  background: #2d3748;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 1rem;
}

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

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

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

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

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

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

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

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

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

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

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

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

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

  .numbers-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .casino-categories {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

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

  .number {
    font-size: 2rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

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

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

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

.hero-content,
.overview,
.bonus-section,
.numbers-section {
  animation: fadeInUp 0.8s ease-out;
}

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

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