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

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

/* Header */
.header {
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

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

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

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.9);
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

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

.mobile-nav-link {
  color: white;
  text-decoration: none;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
}

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

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

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

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

.btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
  padding: 4rem 0;
  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(1, 103, 202, 0.1) 0%, transparent 50%);
}

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

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

.highlight {
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #b8c5d6;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8c5d6;
  font-weight: 600;
}

.stat i {
  color: #38a8fa;
  font-size: 1.2rem;
}

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

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

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

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #b8c5d6;
  margin-bottom: 3rem;
}

/* Features Section */
.features {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(56, 168, 250, 0.3);
}

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

.feature-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #b8c5d6;
  line-height: 1.6;
}

/* Games Section */
.games {
  background: #0a0e1a;
}

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

.game-highlight h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.game-highlight p {
  color: #b8c5d6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.game-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.game-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
  color: #b8c5d6;
  font-weight: 500;
}

.stat-value {
  color: #38a8fa;
  font-weight: 700;
  font-size: 1.1rem;
}

.other-games {
  margin-top: 2rem;
}

.other-games h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.other-games ul {
  list-style: none;
}

.other-games li {
  color: #b8c5d6;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.other-games li::before {
  content: "▶";
  color: #38a8fa;
  position: absolute;
  left: 0;
}

.games-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Bonuses Section */
.bonuses {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
}

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

.bonus-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.main-bonus h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.main-bonus p {
  color: #b8c5d6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.bonus-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}

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

.deposit {
  color: white;
  font-weight: 600;
}

.percentage {
  color: #38a8fa;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}

.limit {
  color: #b8c5d6;
  text-align: right;
  font-size: 0.9rem;
}

.bonus-conditions {
  background: rgba(56, 168, 250, 0.1);
  padding: 1rem;
  border-radius: 12px;
  border-left: 4px solid #38a8fa;
  margin-bottom: 2rem;
}

.bonus-conditions p {
  color: #b8c5d6;
  margin: 0;
  font-size: 0.9rem;
}

.other-bonuses {
  margin-top: 2rem;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-item i {
  color: #38a8fa;
  font-size: 1.5rem;
  min-width: 30px;
}

.bonus-item h4 {
  color: white;
  margin-bottom: 0.5rem;
}

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

/* Sports Section */
.sports {
  background: #0a0e1a;
}

.sports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.sport-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

.sport-card i {
  font-size: 3rem;
  color: #38a8fa;
  margin-bottom: 1rem;
}

.sport-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.sport-card p {
  color: #b8c5d6;
  font-size: 0.9rem;
  line-height: 1.5;
}

.sports-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8c5d6;
  font-weight: 600;
}

.feature i {
  color: #38a8fa;
  font-size: 1.2rem;
}

/* Payments Section */
.payments {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
}

.payments-content {
  margin-top: 3rem;
}

.payment-methods h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.method:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 168, 250, 0.3);
}

.method i {
  font-size: 2rem;
  color: #38a8fa;
}

.method span {
  color: white;
  font-weight: 600;
  text-align: center;
}

.method small {
  color: #b8c5d6;
  font-size: 0.8rem;
}

.payment-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card p {
  color: #b8c5d6;
  margin-bottom: 0.5rem;
}

/* Mobile Apps Section */
.mobile-apps {
  background: #0a0e1a;
}

.apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.app-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.app-card:hover {
  transform: translateY(-10px);
  border-color: rgba(56, 168, 250, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.app-card i {
  font-size: 4rem;
  color: #38a8fa;
  margin-bottom: 1rem;
}

.app-card h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.app-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.app-card li {
  color: #b8c5d6;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.app-card li::before {
  content: "✓";
  color: #38a8fa;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Registration Section */
.registration {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
}

.registration-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.registration-steps h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}

.step p {
  color: #b8c5d6;
  margin: 0;
}

.registration-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.registration-form h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.registration-form p {
  color: #b8c5d6;
  margin-bottom: 2rem;
}

.social-login {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq {
  background: #0a0e1a;
}

.faq-list {
  margin-top: 3rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

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

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
  color: white;
  font-size: 1.1rem;
  margin: 0;
}

.faq-question i {
  color: #38a8fa;
  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: #b8c5d6;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-section p {
  color: #b8c5d6;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.social-links a:hover {
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-info p {
  color: #b8c5d6;
  font-size: 0.9rem;
  margin: 0;
}

.responsible-gaming {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.responsible-gaming p {
  color: #b8c5d6;
  font-size: 0.9rem;
  margin: 0;
}

.age-verification {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
}

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

  .header-actions {
    display: flex;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .responsible-gaming {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .sports-grid {
    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 > * {
  animation: fadeInUp 0.8s ease-out;
}

.feature-card,
.sport-card,
.app-card {
  animation: fadeInUp 0.6s ease-out;
}

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

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

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

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

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