
:root {
  --primary: #5c27c2;
  --secondary: #e73a70;
  --dark: #0b004b;
  --light: #f5f5f7;
  --text-dark: #333333;
  --text-light: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 80px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

* {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--secondary);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--primary);
}

header {
  background-color: var(--dark);
  color: var(--text-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-image {
  height: 40px;
  width: auto;
  margin-bottom: 4px;
}

.logo .tagline {
  display: block;
  font-size: 0.7rem;
  color: #bbb;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

nav a {
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--secondary);
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 5px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-register {
  display: none;
}

@media (min-width: 769px) {
  .mobile-register {
    display: none !important;
  }
}

.hero {
  background-color: var(--dark);
  color: var(--text-light);
  padding: 4rem 0;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  flex: 1 1 50%;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-image {
  flex: 1 1 50%;
  text-align: center;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.bonuses {
  background-color: var(--light);
  padding: 4rem 0;
}

.bonuses-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.bonuses-text h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.bonuses-text p {
  max-width: 500px;
}

.bonuses-image img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

.bonus-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.bonus-cards .card {
  flex: 1 1 30%;
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.bonus-cards .card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.bonus-cards .card p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.about {
  background-color: #f8f8fc;
  color: var(--text-dark);
  padding: 3rem 0;
  text-align: center;
}

.about h2 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.about p {
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.start {
  background-color: var(--light);
  padding: 4rem 0;
}

.start h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.start p {
  text-align: center;
  margin-bottom: 2rem;
}

.game-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.game-cards .card {
  flex: 1 1 30%;
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.game-cards i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.game-cards h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.game-cards p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.features {
  padding: 4rem 0;
  text-align: center;
}

.dark {
  background-color: var(--dark);
  color: var(--text-light);
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: stretch;
}

.feature-card {
  flex: 1 1 30%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
}

.feature-number {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: var(--text-light);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}

.feature-card h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.feature-card p {
  font-size: 0.9rem;
}

.features .feature-button {
  margin-top: 2rem;
}

.offerings {
  background-color: #f8f8fc;
  padding: 4rem 0;
  text-align: center;
}

.offerings h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.offerings p {
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.comparison {
  background-color: var(--light);
  padding: 4rem 0;
  text-align: center;
}

.comparison h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.comparison p {
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.comp-card {
  flex: 1 1 45%;
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.comp-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.comp-card p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.welcome-bonus,
.sports-bonus {
  background-color: #f8f8fc;
  padding: 4rem 0;
}

.welcome-bonus h2,
.sports-bonus h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.welcome-bonus p,
.sports-bonus p {
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-bonus ol,
.sports-bonus ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
}

.welcome-bonus table,
.sports-bonus table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.welcome-bonus th,
.sports-bonus th,
.welcome-bonus td,
.sports-bonus td {
  padding: 0.6rem;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 0.9rem;
}

.welcome-bonus th,
.sports-bonus th {
  background-color: var(--primary);
  color: var(--text-light);
}

.markets {
  background-color: var(--light);
  padding: 4rem 0;
  text-align: center;
}

.markets h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.markets p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.news {
  background-color: #f8f8fc;
  padding: 4rem 0;
}

.news h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.news p {
  text-align: center;
  margin-bottom: 2rem;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.news-grid article {
  flex: 1 1 30%;
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.news-grid article h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 1rem;
}

.news-grid article p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.news-grid .date {
  font-size: 0.8rem;
  color: #666;
}

.app {
  background-color: var(--dark);
  color: var(--text-light);
  padding: 4rem 0;
}

.app-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.app-text {
  flex: 1 1 50%;
}

.app-text h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.app-text p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.app-image {
  flex: 1 1 50%;
  text-align: center;
}

.app-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
}

.bet-types {
  background-color: var(--light);
  padding: 4rem 0;
}

.bet-types h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.bet-types p {
  text-align: center;
  margin-bottom: 2rem;
}

.bet-type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.bet-type {
  flex: 1 1 30%;
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.bet-type h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.bet-type p {
  font-size: 0.9rem;
}



.payment-methods {
  background-color: var(--light);
  padding: 4rem 0;
  text-align: center;
}

.payment-methods h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.payment-methods p {
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.payment-item {
  flex: 1 1 30%;
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.payment-item h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.payment-item p {
  font-size: 0.9rem;
}

.visa-direct {
  background-color: #f8f8fc;
  padding: 4rem 0;
  text-align: center;
}

.visa-direct h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.visa-direct p {
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.visa-direct ol {
  list-style: decimal inside;
  margin: 0 auto 1rem auto;
  max-width: 600px;
  text-align: left;
  padding-left: 1rem;
}





footer {
  background-color: var(--dark);
  color: var(--text-light);
  padding: 2rem 0;
  text-align: center;
}

footer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

footer .regulatory p {
  font-size: 0.8rem;
  color: #aaaaaa;
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .bonus-cards .card,
  .game-cards .card,
  .comp-card,
  .payment-item {
    flex: 1 1 45%;
  }
  .app-container {
    flex-direction: column;
  }
  .app-text,
  .app-image {
    flex: 1 1 100%;
  }
  .payment-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 1rem 0;
  }

  .nav-container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 1rem 0;
    width: 95%;
    max-width: none;
    margin: 0 auto;
  }

  .logo {
    display: block !important;
    order: 1;
    flex: 1;
  }

  .nav-container > .btn {
    display: block !important;
    order: 2;
    margin-left: auto;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .burger-menu {
    display: flex !important;
    order: 3;
    flex-shrink: 0;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 998;
    height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-menu.active {
    display: block;
    transform: translateY(0);
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
  }
  
  .nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .mobile-register {
    display: block !important;
    margin-top: 1rem;
    text-align: center;
    padding: 0 2rem;
  }
  
  .mobile-register a {
    border: none !important;
    display: block;
    text-align: center;
    border-radius: 5px;
    width: 100%;
    padding: 12px 0;
  }
  .hero-container,
  .bonuses-header,
  .game-cards,
  .features-container,
  .comparison-grid,
  .news-grid,
  .payment-grid,
  .bet-type-grid {
    flex-direction: column;
  }
  .bonus-cards .card,
  .game-cards .card,
  .comp-card,
  .payment-item,
  .bet-type {
    flex: 1 1 100%;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-container > .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .logo-image {
    height: 35px;
  }
  
  .logo .tagline {
    font-size: 0.75rem;
  }
  
  .burger-menu span {
    width: 20px;
    height: 2px;
  }
}

.app-features {
  background-color: var(--light);
  padding: 4rem 0;
}

.app-features h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}

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

.feature-item {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.download-section {
  background-color: #f8f8fc;
  padding: 4rem 0;
  text-align: center;
}

.download-section h2 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.download-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1 1 250px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: var(--text-light);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.benefits {
  padding: 4rem 0;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.benefit-card i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  margin-bottom: 1rem;
}

.game-categories {
  background-color: var(--light);
  padding: 4rem 0;
}

.game-categories h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}

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

.category-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.category-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.category-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.category-card ul {
  list-style: none;
  margin: 1rem 0;
  text-align: left;
}

.category-card li {
  padding: 0.3rem 0;
  border-bottom: 1px solid #eee;
}

.category-card li:last-child {
  border-bottom: none;
}

.popular-games {
  padding: 4rem 0;
}

.popular-games h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.game-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.game-item h3 {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.game-item .rtp {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.current-bonuses {
  background-color: var(--light);
  padding: 4rem 0;
}

.current-bonuses h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}

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

.bonus-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.bonus-card.featured {
  border: 2px solid var(--secondary);
}

.bonus-badge {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.bonus-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  margin: 1rem 0;
}

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

.bonus-details li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.promotions-calendar {
  padding: 4rem 0;
}

.promotions-calendar h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.day-promo {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.day-promo h3 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.day-promo span {
  font-size: 0.9rem;
  color: #ccc;
}


.vip-program {
  background-color: #f8f8fc;
  padding: 4rem 0;
  text-align: center;
}

.vip-program h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.vip-program p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vip-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.vip-level {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
}

.level-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.5rem;
}

.level-icon.bronze {
  background-color: #cd7f32;
  color: white;
}

.level-icon.silver {
  background-color: #c0c0c0;
  color: white;
}

.level-icon.gold {
  background-color: #ffd700;
  color: white;
}

.vip-level ul {
  list-style: none;
  text-align: left;
}

.vip-level li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
}



.text-content {
  background-color: var(--light);
  padding: 4rem 0;
}

.text-content .container {
  max-width: 800px;
  margin: 0 auto;
}

.text-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.text-content h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

.text-content p:last-child {
  margin-bottom: 0;
}


body > h2:not(.hero h2):not(.features h2):not(.bonuses h2):not(.about h2):not(.start h2):not(.offerings h2):not(.comparison h2):not(.markets h2):not(.news h2):not(.app h2):not(.bet-types h2):not(.payment-methods h2):not(.visa-direct h2):not(.blog-section h2):not(.app-features h2):not(.download-section h2):not(.benefits h2) {
  color: var(--primary);
  font-size: 2rem;
  margin: 3rem auto 1.5rem auto;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

body > h3:not(.hero h3):not(.features h3):not(.bonuses h3):not(.about h3):not(.start h3):not(.offerings h3):not(.comparison h3):not(.markets h3):not(.news h3):not(.app h3):not(.bet-types h3):not(.payment-methods h3):not(.visa-direct h3):not(.blog-section h3):not(.app-features h3):not(.download-section h3):not(.benefits h3) {
  color: var(--primary);
  font-size: 1.4rem;
  margin: 2rem auto 1rem auto;
  max-width: 800px;
  padding: 0 2rem;
}

body > p:not(.hero p):not(.features p):not(.bonuses p):not(.about p):not(.start p):not(.offerings p):not(.comparison p):not(.markets p):not(.news p):not(.app p):not(.bet-types p):not(.payment-methods p):not(.visa-direct p):not(.blog-section p):not(.app-features p):not(.download-section p):not(.benefits p) {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto 1rem auto;
  text-align: justify;
  max-width: 800px;
  padding: 0 2rem;
}


@media (max-width: 768px) {
  .features-grid,
  .categories-grid,
  .games-grid,
  .bonuses-grid,
  .calendar-grid {
    grid-template-columns: 1fr;
  }
  
  .download-steps {
    flex-direction: column;
  }
  
  .vip-levels {
    flex-direction: column;
    align-items: center;
  }
  
  body > h2 {
    font-size: 1.6rem;
    margin: 2rem auto 1rem auto;
  }
  
  body > h3 {
    font-size: 1.2rem;
    margin: 1.5rem auto 0.8rem auto;
  }
  
  .text-content h2 {
    font-size: 1.8rem;
  }
  
  .text-content h3 {
    font-size: 1.3rem;
  }
}

/* Улучшенная адаптивность для маленьких экранов */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .text-content h2,
  body > h2 {
    font-size: 1.5rem;
  }
  
  .text-content h3,
  body > h3 {
    font-size: 1.1rem;
  }
  
  .container {
    padding: 0.75rem 0;
  }
  
  .feature-item h3,
  .category-card h3,
  .game-card h3,
  .bonus-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-item p,
  .category-card p,
  .game-card p,
  .bonus-card p {
    font-size: 0.9rem;
  }
}

/* Дополнительная адаптивность для экранов 320px */
@media (max-width: 320px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .nav-container > .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
  
  .container {
    width: 98%;
  }
  
  .text-content h2,
  body > h2 {
    font-size: 1.4rem;
    padding: 0 1rem;
  }
  
  .text-content h3,
  body > h3 {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  body > p,
  .text-content p {
    padding: 0 1rem;
    font-size: 0.95rem;
  }
  
  .logo .tagline {
    font-size: 0.7rem;
  }
  
  .logo-image {
    height: 30px;
  }
}