
:root {
  --primary: #d32f2f; /* main red */
  --secondary: #aa2e25; /* dark red */
  --accent: #f44336; /* brighter red for highlights */
  --dark: #0d0d0d; /* deepest background */
  --dark-alt: #181818; /* alternate dark section */
  --light: #ffffff;
  --text-light: #f0f0f0;
  --muted: #bbbbbb;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--primary);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding-left: 1rem;
}
ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}
ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 0;
}

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

header {
  background: var(--dark-alt);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--light);
  font-size: 1.5rem;
}
.logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text strong {
  font-size: 1.5rem;
  line-height: 1;
}
.logo .tagline {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1;
}
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 0.4rem 0.5rem;
  border-radius: 5px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
nav ul li a:hover {
  color: var(--primary);
  background: rgba(211, 47, 47, 0.1);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

@media (min-width: 769px) {
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1.5rem;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    box-shadow: none;
    overflow: visible;
  }
  
  .mobile-home-btn {
    display: none;
  }
  
  .nav-menu ul {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    flex-wrap: nowrap;
    flex-direction: row;
    margin-bottom: 0;
  }
  
  .nav-menu ul li {
    border-bottom: none;
  }
  
  .nav-menu ul li a {
    padding: 0.4rem 0.4rem;
    font-size: 0.8rem;
    white-space: nowrap;
    justify-content: center;
    border-radius: 5px;
  }
  
  .nav-menu .nav-btn {
    margin: 0;
    flex-shrink: 0;
    width: auto;
    max-width: none;
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--light);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

.nav-menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: -1;
}

.nav-menu.active::before {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-to-top:active {
  transform: translateY(0);
}

/* Current Page Styles */
.current-page {
  color: var(--primary);
  font-weight: 600;
  padding: 0.4rem 0.5rem;
  border-radius: 5px;
  background: rgba(211, 47, 47, 0.1);
  pointer-events: none;
  font-size: 0.85rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

/* Page Section Styles */
.page-section {
  background: var(--dark);
  padding: 3rem 0;
  min-height: 60vh;
}

/* CTA Section */
.cta-section {
  background: var(--dark-alt);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 3rem;
}

.cta-section h3 {
  color: var(--light);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.cta-section p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Bonus Details */
.bonus-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.bonus-card {
  background: var(--dark-alt);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bonus-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.bonus-amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--light);
  margin-bottom: 1rem;
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.feature-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Requirements Section */
.requirements-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.requirement-card {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 10px;
}

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

/* Download Steps */
.download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.step-number {
  background: var(--primary);
  color: var(--light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--light);
  margin-bottom: 0.5rem;
}

/* Sports List */
.sports-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.sports-list li {
  padding: 0.5rem;
  background: var(--dark-alt);
  border-radius: 5px;
  text-align: center;
}

/* Leagues Grid */
.leagues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.league-item {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 10px;
}

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

/* Payment Grid */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.payment-card {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(211, 47, 47, 0.2);
}

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

.payment-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-details p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Limits Table */
.limits-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background: var(--dark-alt);
  border-radius: 10px;
  overflow: hidden;
}

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

.limits-table th {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Security Features */
.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-item {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

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

/* Requirements List */
.requirements-list {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.requirements-list li {
  margin-bottom: 0.5rem;
  padding-left: 0;
}

/* Terms Section */
.terms-section {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

/* FAQ Payments */
.faq-payments {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.faq-payments .faq-item {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 10px;
}

.faq-payments .faq-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  min-height: 40px;
  text-align: center;
  box-sizing: border-box;
  font-size: 0.9rem;
  white-space: nowrap;
}
.btn:hover {
  background: var(--accent);
}
.btn:active {
  transform: translateY(1px) scale(0.98);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--light);
}

.hero {
  background: var(--dark);
  padding: 4rem 0;
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.hero-content {
  flex: 1 1 45%;
}
.hero-content h1 {
  font-size: 2.5rem;
  color: var(--light);
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}
.hero-image {
  flex: 1 1 45%;
}
.hero-image img {
  width: 100%;
  border-radius: 10px;
}

/* Steps Section */
.steps {
  background: var(--dark-alt);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: var(--dark);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.step-number {
  background: var(--primary);
  color: var(--light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
}
.step-card h3 {
  margin-bottom: 0.5rem;
  color: var(--light);
}
.step-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Benefits Section */
.benefits {
  background: var(--dark);
}
.benefits h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--light);
}
.benefits p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--muted);
}

/* Advantages Section */
.advantages {
  background: var(--dark-alt);
  padding: 3rem 0;
}
.advantages h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--light);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.advantage-item {
  background: var(--dark);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.advantage-item h3 {
  margin-bottom: 0.5rem;
  color: var(--light);
  font-size: 1.2rem;
}
.advantage-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Sports Section */
.sports {
  background: var(--dark);
  padding: 3rem 0;
}
.sports h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.sport-item {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.sport-item h3 {
  margin-bottom: 0.5rem;
  color: var(--light);
  font-size: 1.1rem;
}
.sport-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
thead {
  background: var(--secondary);
}
thead th {
  color: var(--light);
  padding: 0.8rem;
  text-align: left;
  font-weight: 600;
}
tbody td {
  padding: 0.8rem;
  border: 1px solid var(--dark-alt);
  color: var(--muted);
  font-size: 0.9rem;
}
tbody tr:nth-child(even) {
  background: var(--dark-alt);
}

/* FAQ Styles */
.faq {
  background: var(--dark-alt);
  padding: 3rem 0;
}
.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.faq-item {
  background: var(--dark);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.faq-item h4 {
  margin-bottom: 0.5rem;
  color: var(--light);
  font-size: 1rem;
}
.faq-item p {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Additional Section Styles */
.about,
.registration,
.bonuses,
.football,
.how-bet,
.casino,
.payments {
  background: var(--dark);
  padding: 3rem 0;
}
.about h2,
.registration h2,
.bonuses h2,
.football h2,
.how-bet h2,
.casino h2,
.payments h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--light);
}
.about p,
.registration p,
.bonuses p,
.football p,
.how-bet p,
.casino p,
.payments p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.registration ol,
.how-bet ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.registration li,
.how-bet li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}
.casino h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}
.casino p {
  margin-bottom: 0.8rem;
}

/* Payments Section lists */
.payments ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.payments li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

/* Footer */
footer {
  background: var(--dark-alt);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Bonuses Section */
.bonuses {
  background: var(--dark-alt);
}
.bonuses h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--light);
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.bonus-card {
  background: var(--dark);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.bonus-card h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}
.bonus-card p,
.bonus-card ul li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.bonus-card ul li strong {
  color: var(--text-light);
}

/* Reliability Section */
.reliability {
  background: var(--dark);
}
.reliability h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--light);
  font-size: 2rem;
}
.reliability p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.sports {
  background: var(--dark-alt);
}
.sports h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--light);
  font-size: 2rem;
}
.sports h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.sports h4 {
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}
.sports p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.sports ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.sports ol li {
  margin-bottom: 0.5rem;
}
.sports ul.columns {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  padding-left: 0;
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.markets-grid h4 {
  margin-bottom: 0.3rem;
  color: var(--primary);
}
.markets-grid ul li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.casino-games {
  background: var(--dark);
}
.casino-games h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--light);
  font-size: 2rem;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.game-category {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.game-category h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.game-category p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.support {
  background: var(--dark-alt);
}
.support h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--light);
  font-size: 2rem;
}
.support p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

.payments {
  background: var(--dark);
}
.payments h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--light);
  font-size: 2rem;
}
.payments h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.payments p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 1rem;
}
.payments ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.app {
  background: var(--dark-alt);
}
.app-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.app-text {
  flex: 1 1 50%;
}
.app-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--light);
}
.app-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}
.app-image {
  flex: 1 1 40%;
}
.app-image img {
  width: 100%;
  border-radius: 10px;
}

.faq {
  background: var(--dark);
}
.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--light);
  font-size: 2rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.faq-item {
  background: var(--dark-alt);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.faq-item h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 1.1rem;
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

footer {
  background: var(--dark-alt);
  text-align: center;
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}
footer p {
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 1rem 0;
  padding: 1rem 0;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

@media (min-width: 1200px) {
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    gap: 3rem;
  }
  
  .nav-menu {
    gap: 2.5rem;
  }
  
  .nav-menu ul {
    gap: 0.8rem;
  }
  
  .nav-menu ul li a {
    padding: 0.5rem 0.6rem;
    font-size: 0.9rem;
  }
  
  .nav-menu .nav-btn {
    padding: 0.6rem 1.6rem;
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 95%;
    padding: 1.5rem 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 1rem 0.5rem;
  }
  
  .nav-container {
    justify-content: space-between;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-alt);
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
  }
  
  .nav-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu ul li:last-child {
    border-bottom: none;
  }
  
  .nav-menu ul li a {
    padding: 1rem 0;
    justify-content: flex-start;
    font-size: 1.1rem;
    border-radius: 0;
    background: none;
  }
  
  .nav-menu .nav-btn {
    width: 100%;
    margin-top: 1rem;
  }
  
  .nav-menu .current-page {
    padding: 1rem 0;
    justify-content: flex-start;
    font-size: 1.1rem;
    border-radius: 0;
    background: none;
    color: var(--primary);
  }
  
  .mobile-home-btn {
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-home-btn .btn {
    width: 100%;
    text-align: center;
  }
  
  .logo {
    gap: 0.5rem;
  }
  .logo-image {
    width: 32px;
    height: 32px;
  }
  .logo-text strong {
    font-size: 1.2rem;
  }
  .logo .tagline {
    font-size: 0.6rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  .hero-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-content h1 {
    font-size: 1.8rem;
    text-align: center;
  }
  .hero-content p {
    text-align: center;
    font-size: 1rem;
  }
  
  .steps-grid,
  .advantages-grid,
  .sports-grid,
  .bonus-grid,
  .games-grid,
  .markets-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .app-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .sports ul.columns {
    columns: 1;
  }
  
  table {
    font-size: 0.8rem;
  }
  
  thead th,
  tbody td {
    padding: 0.5rem 0.3rem;
  }
  
  .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }
  
  .footer-links {
    gap: 0.5rem 1rem;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 1rem 0.75rem;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .nav-menu {
    width: 100%;
    right: -100%;
  }
  
  .nav-menu ul li a {
    font-size: 1rem;
  }
  
  .logo-text strong {
    font-size: 1rem;
  }
  
  .logo .tagline {
    font-size: 0.55rem;
  }
  
  .about,
  .registration,
  .bonuses,
  .advantages,
  .app,
  .sports,
  .football,
  .how-bet,
  .casino,
  .payments,
  .faq {
    padding: 2rem 0;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  h4 {
    font-size: 1rem;
  }
  
  p, li {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 0.7rem;
  }
  
  .scroll-to-top {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }
  
  .scroll-to-top svg {
    width: 16px;
    height: 16px;
  }
}