/* 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, #0a0e27 0%, #1a1f3a 50%, #2d3561 100%);
  min-height: 100vh;
}

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

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

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

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

/* 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;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  color: #1a1f3a;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #1a1f3a;
}

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

/* Header Logo fix */
.header .logo-section .logo {
  max-height: 50px; /* Можете изменить это значение по своему вкусу */
  width: auto; /* Сохраняет пропорции изображения */
}

/* Registration Process Section Improvements */
.registration-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.registration-text {
  flex: 1; /* Текст займет доступное пространство */
}

.registration-image {
  flex: 1;
  max-width: 45%; /* Ограничиваем максимальную ширину картинки */
}

.registration-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Mobile Experience Section Improvements */
.mobile-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mobile-text {
  flex: 1;
}

.mobile-image {
  flex: 1;
  max-width: 40%;
}

.mobile-img {
  width: 100%;
  height: auto;
}

/* Bonus Section Improvements */
.bonus-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.bonus-text {
  flex: 1;
}

.bonus-image {
  flex: 1;
  max-width: 40%;
}

.bonus-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
  .registration-content {
    flex-direction: column; /* На мобильных ставим картинку над текстом (или наоборот) */
  }

  .registration-image {
    max-width: 100%;
    order: -1; /* Ставим картинку первой */
    margin-bottom: 2rem;
  }

  .mobile-content {
    flex-direction: column;
  }

  .mobile-image {
    max-width: 80%; /* Немного уменьшим для красоты */
    margin-bottom: 2rem;
  }

  .bonus-content {
    flex-direction: column;
  }

  .bonus-image {
    max-width: 100%;
    order: -1; /* Картинка бонуса будет сверху */
  }
}

/* Header */
.header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

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

.flag {
  height: 30px;
  width: auto;
  margin-left: 1rem;
}

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: left 0.3s ease;
  padding-top: 80px;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: #ffd700;
}

.mobile-cta {
  margin-top: 2rem;
  justify-content: center;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e6ed;
}

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

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

.feature-item i {
  font-size: 1.2rem;
}

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

/* Sections */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Main Features */
.main-features {
  padding: 5rem 0;
  background: rgba(26, 31, 58, 0.5);
}

.features-table {
  background: rgba(45, 53, 97, 0.3);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.feature-label {
  font-weight: 600;
  color: #ffd700;
  flex: 1;
}

.feature-value {
  color: #ffffff;
  flex: 2;
  text-align: right;
}

/* Comparison Table */
.comparison {
  padding: 5rem 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(45, 53, 97, 0.3);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.comparison-table th {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  font-weight: 600;
}

.comparison-table .highlight {
  background: rgba(255, 215, 0, 0.2);
  color: #ffffff;
  font-weight: 600;
}

/* Advantages */
.advantages {
  padding: 5rem 0;
  background: rgba(26, 31, 58, 0.5);
}

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

.advantage-card {
  background: rgba(45, 53, 97, 0.3);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.advantage-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.advantage-card p {
  color: #e0e6ed;
}

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

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

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

.step-number {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  color: #1a1f3a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h4 {
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #e0e6ed;
  margin: 0;
}

.required-documents {
  background: rgba(45, 53, 97, 0.3);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 2rem;
}

.required-documents h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.required-documents ul {
  list-style: none;
  padding: 0;
}

.required-documents li {
  color: #e0e6ed;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.required-documents li:before {
  content: "•";
  color: #ffd700;
  position: absolute;
  left: 0;
}

/* Mobile Experience */
.mobile-experience {
  padding: 5rem 0;
  background: rgba(26, 31, 58, 0.5);
}

.mobile-features {
  margin-top: 2rem;
}

.mobile-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(45, 53, 97, 0.3);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-feature i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.mobile-feature h4 {
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.mobile-feature p {
  color: #e0e6ed;
  margin: 0;
}

/* Bonuses */
.bonuses {
  padding: 5rem 0;
}

.bonus-section {
  margin-bottom: 4rem;
}

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

.bonus-detail,
.cashback-detail {
  background: rgba(45, 53, 97, 0.3);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.detail-label {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.detail-value {
  color: #ffffff;
  font-size: 1.1rem;
}

.cashback-section {
  margin-top: 3rem;
}

/* Security */
.security {
  padding: 5rem 0;
  background: rgba(26, 31, 58, 0.5);
}

.security-measures {
  margin-top: 2rem;
}

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

.security-item {
  background: rgba(45, 53, 97, 0.3);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
}

.security-item i {
  color: #ffd700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.security-item h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.security-item p {
  color: #e0e6ed;
}

.responsible-gaming {
  background: rgba(45, 53, 97, 0.3);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 3rem;
}

.responsible-gaming h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

/* Payment Methods */
.payment-methods {
  padding: 5rem 0;
}

.payment-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(45, 53, 97, 0.3);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.payment-table th,
.payment-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.payment-table th {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  font-weight: 600;
}

.crypto-row {
  background: rgba(255, 215, 0, 0.05);
}

.local-row {
  background: rgba(0, 255, 127, 0.05);
}

.payment-note {
  margin-top: 1rem;
  font-style: italic;
  color: #e0e6ed;
  text-align: center;
}

/* Customer Support */
.customer-support {
  padding: 5rem 0;
  background: rgba(26, 31, 58, 0.5);
}

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

.support-image {
  flex: 1;
  max-width: 40%;
}

.support-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.support-text {
  flex: 1;
}

.support-channels {
  margin-top: 2rem;
}

.support-channels h4 {
  color: #ffd700;
  margin-bottom: 1.5rem;
}

.channel-grid {
  display: grid;
  gap: 1rem;
}

.channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(45, 53, 97, 0.3);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.channel-item i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.channel-item h5 {
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.channel-item p {
  color: #e0e6ed;
  margin: 0;
}

.vip-note {
  background: rgba(45, 53, 97, 0.3);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 2rem;
  font-style: italic;
}

/* User Reviews */
.user-reviews {
  padding: 5rem 0;
}

.ratings-table {
  background: rgba(45, 53, 97, 0.3);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 3rem;
}

.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.rating-aspect {
  font-weight: 600;
  color: #ffffff;
  flex: 2;
}

.rating-score {
  color: #ffd700;
  font-weight: 600;
  font-size: 1.2rem;
  flex: 1;
  text-align: center;
}

.rating-count {
  color: #e0e6ed;
  flex: 2;
  text-align: right;
  font-size: 0.9rem;
}

.testimonials h4 {
  color: #ffd700;
  margin-bottom: 2rem;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: rgba(45, 53, 97, 0.3);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.testimonial-content p {
  color: #e0e6ed;
  font-style: italic;
  margin-bottom: 1rem;
}

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

/* Pros and Cons */
.pros-cons {
  padding: 5rem 0;
  background: rgba(26, 31, 58, 0.5);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.pros-section,
.cons-section {
  background: rgba(45, 53, 97, 0.3);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.pros-section h3 {
  color: #00ff7f;
  margin-bottom: 1.5rem;
}

.cons-section h3 {
  color: #ff6b6b;
  margin-bottom: 1.5rem;
}

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

.pros-list li,
.cons-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: #e0e6ed;
}

.pros-list li:before {
  content: "✓";
  color: #00ff7f;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.cons-list li:before {
  content: "✗";
  color: #ff6b6b;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Conclusion */
.conclusion {
  padding: 5rem 0;
}

.conclusion-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-cta {
  margin-top: 3rem;
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background: rgba(26, 31, 58, 0.5);
}

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

.faq-item {
  background: rgba(45, 53, 97, 0.3);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 1rem;
  overflow: hidden;
}

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

.faq-question:hover {
  background: rgba(255, 215, 0, 0.1);
}

.faq-question h4 {
  color: #ffffff;
  margin: 0;
}

.faq-question i {
  color: #ffd700;
  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: max-height 0.3s ease, padding 0.3s ease;
}

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

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

/* Footer */
.footer {
  background: rgba(10, 14, 39, 0.95);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.footer-section h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-logo-img {
  max-height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: #e0e6ed;
  margin-bottom: 1rem;
}

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

.social-link {
  color: #ffd700;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ffffff;
}

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

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

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-payments {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-payments i {
  color: #ffd700;
  font-size: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

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

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

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

  .comparison-table,
  .payment-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td,
  .payment-table th,
  .payment-table td {
    padding: 0.5rem;
  }

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

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

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

  .support-content {
    flex-direction: column;
  }

  .support-image {
    max-width: 80%;
    margin-bottom: 2rem;
  }

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

  .rating-row {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .rating-aspect,
  .rating-score,
  .rating-count {
    flex: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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