/* 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: #ffffff;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
}

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

/* Header Styles */
.header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(56, 168, 250, 0.2);
}

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

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

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

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

.nav {
  display: none;
  gap: 30px;
}

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

.nav-link:hover {
  color: #38a8fa;
}

.header-actions {
  display: none;
  gap: 15px;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-register {
  margin-top: 10px;
}

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

.btn-primary {
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(1, 103, 202, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 103, 202, 0.4);
}

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

.btn-outline:hover {
  background: #38a8fa;
  color: #ffffff;
}

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(56, 168, 250, 0.1) 0%, transparent 50%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #38a8fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #38a8fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Section */
.features {
  background: rgba(255, 255, 255, 0.02);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(56, 168, 250, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(56, 168, 250, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.feature-description {
  color: #cccccc;
  line-height: 1.6;
}

/* Registration Section */
.registration-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.registration-steps {
  margin: 40px 0;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.step-description {
  color: #cccccc;
  line-height: 1.6;
}

.registration-img,
.bonuses-img,
.casino-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Bonuses Section */
.bonuses {
  background: rgba(255, 255, 255, 0.02);
}

.bonuses-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.bonus-item {
  margin-bottom: 30px;
}

.bonus-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.bonus-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Payment Methods Section */
.payment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.payment-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(56, 168, 250, 0.2);
  transition: transform 0.3s ease;
}

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

.payment-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.payment-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.payment-description {
  color: #cccccc;
  line-height: 1.6;
}

/* Sportsbook Section */
.sportsbook {
  background: rgba(255, 255, 255, 0.02);
}

.sportsbook-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.sportsbook-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sportsbook-feature .feature-icon {
  width: 50px;
  height: 50px;
  margin: 0;
  flex-shrink: 0;
}

.sportsbook-feature .feature-content {
  flex: 1;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
}

/* Casino Section */
.casino-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.casino-features {
  margin: 30px 0;
}

.casino-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.casino-feature .feature-icon {
  width: 50px;
  height: 50px;
  margin: 0;
  flex-shrink: 0;
}

.casino-feature .feature-content {
  flex: 1;
}

/* Mobile App Section */
.mobile-app {
  background: rgba(255, 255, 255, 0.02);
}

.app-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.app-feature {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(56, 168, 250, 0.2);
}

.app-feature .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.app-download {
  text-align: center;
}

/* Security Section */
.security-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.security-feature {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(56, 168, 250, 0.2);
}

.security-feature .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

/* FAQ Section */
.faq {
  background: rgba(255, 255, 255, 0.02);
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid rgba(56, 168, 250, 0.2);
  overflow: hidden;
}

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

.faq-question:hover {
  background: rgba(56, 168, 250, 0.1);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

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

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

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

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

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

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  text-align: center;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.cta .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.footer-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.footer-links li {
  margin-bottom: 10px;
}

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

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

.social-links {
  display: flex;
  gap: 15px;
}

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

.social-link:hover {
  background: #38a8fa;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999999;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

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

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

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

  .registration-content {
    flex-direction: row;
  }

  .registration-text {
    flex: 1;
  }

  .registration-image {
    flex: 1;
  }

  .bonuses-content {
    flex-direction: row;
  }

  .bonuses-text {
    flex: 1;
  }

  .bonuses-image {
    flex: 1;
  }

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

  .casino-content {
    flex-direction: row;
  }

  .casino-text {
    flex: 1;
  }

  .casino-image {
    flex: 1;
  }

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

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

  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

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

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

.hero-content,
.feature-card,
.step,
.bonus-item,
.payment-card,
.sportsbook-feature,
.casino-feature,
.app-feature,
.security-feature {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Loading states */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}
