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

body {
  font-family: Arial, sans-serif;
  background-color: #235098;
  color: #ffffff;
  line-height: 1.5;
  min-height: 100vh;
}

.header-inner,
section,
.hero,
.bonus-banner,
.footer-inner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

header {
  background: #173a73;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  height: 40px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.button-block-btn, 
button {
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  padding: 10px 28px;
  cursor: pointer;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  background: linear-gradient(to top, #fa4d00, #fa5e00);
}

.button-block-btn:hover {
  opacity: 0.9;
}

.header-actions .button:last-child,
.header-actions .button-block-btn:last-child {
  background: linear-gradient(to top, #428cdc, #509aea 97%, #509aea 100%);
}

section {
  padding: 30px 15px;
}

section > table,
section > .pros-cons,
section > .expert-note {
  margin-bottom: 30px;
  width: 100%;
}

section .button,
section .button-block-btn {
  margin: 35px auto !important; 
  display: flex !important;
  width: fit-content !important;
  max-width: 100% !important;    
  white-space: normal !important; 
  text-align: center;
}

.hero {
  border-radius: 20px;
  padding: 80px 50px; 
  min-height: 420px; 
  margin-top: 15px;
  margin-bottom: 0px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center; 
  position: relative;
  overflow: hidden;
  background: #173a73 url(/uploads/img/mostbet-cz-banner.jpg);
  background-size: cover;
  background-position: center top; 
}

.hero + section {
  padding-top: 15px; /* По умолчанию у всех секций 30px, здесь делаем меньше */
}

.hero-content {
  flex: 1;
  max-width: 65%;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.hero .hero-title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 20px;
  color: #ffffff;
  white-space: nowrap;
}

h1 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 25px;
  color: #ffffff;
}

h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  color: #ffffff;
}

h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #ffffff;
}

.hero .button,
.hero .button-block-btn {
  margin: 0 !important;
}

.hero-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.hero .hero-btn {
  padding: 16px 40px !important;
  font-size: 16px !important;
  font-weight: 800;
  border-radius: 40px;
  box-shadow: 0 8px 25px rgba(250, 77, 0, 0.4);
  animation: pulse-btn 2s infinite;
  margin: 0 !important;
}

@keyframes pulse-btn {
  0% { box-shadow: 0 0 0 0 rgba(250, 77, 0, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(250, 77, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(250, 77, 0, 0); }
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.15); 
  padding-left: 20px;
}

.feature-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff66;
  animation: blink-dot 1.5s infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

section ul,
section ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

section ul {
  list-style-type: none;
}

section ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 10px;
  line-height: 1.6;
}

section ul li::before {
  content: '•';
  color: #fa4d00;
  font-size: 22px;
  position: absolute;
  left: -15px;
  top: -4px;
}

section ol li {
  margin-bottom: 12px;
  padding-left: 5px;
  line-height: 1.6;
}

section ol li::marker {
  color: #fa4d00;
  font-weight: 700;
}

.pros-cons ul {
  padding-left: 15px;
  margin-bottom: 0;
}

table {
  border-collapse: collapse;
  background: #173a73;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th, 
table tr:first-child td {
  text-align: left;
  padding: 15px;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.2);
}

.pros-cons {
  display: flex;
  gap: 30px;
}

.pros-cons > div {
  flex: 1;
  background: #173a73;
  padding: 30px;
  border-radius: 12px;
}

.expert-note {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #fa4d00;
  padding: 20px;
  border-radius: 0 12px 12px 0;
}

.expert-note p {
  margin: 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #173a73;
  border-radius: 10px;
  position: relative;
  padding: 20px;
}

.faq-item input.toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  margin: 0;
}

.faq-question {
  font-size: 18px;
  margin: 0;
  padding-right: 30px;
}

.faq-item .icon {
  position: absolute;
  right: 20px;
  top: 25px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  margin-top: 15px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.faq-item input.toggle:checked ~ .faq-answer {
  display: block;
}

.faq-item input.toggle:checked ~ .icon {
  transform: rotate(-135deg);
}

footer {
  background: #173a73;
  padding: 40px 0 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  padding: 0 15px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-left .logo {
  height: 48px;
}

.footer-left .logo img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-socials,
.footer-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-nav .button,
.footer-socials .button,
.footer-nav .button-block-btn,
.footer-socials .button-block-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 400;
  text-transform: none;
  padding: 8px 20px;
  margin: 0 !important;
  display: inline-flex !important;
}

.footer-socials .button,
.footer-socials .button-block-btn {
  padding: 8px;
  border-radius: 8px;
}

.footer-nav .button:hover,
.footer-socials .button:hover,
.footer-nav .button-block-btn:hover,
.footer-socials .button-block-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
  margin: 0;
}

.footer-brand strong {
  color: #ffffff;
}

.registration-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.reg-card {
  background: #173a73;
  border-radius: 12px;
  padding: 25px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.reg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.reg-card .icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(250, 77, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.reg-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.reg-card .time {
  display: inline-block;
  color: #fa4d00;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.reg-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.5;
}

.bonus-banner {
  background: linear-gradient(135deg, #ff7a00 0%, #ffae00 100%);
  border-radius: 16px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.2);
}

.bonus-banner h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 800;
}

.bonus-banner p {
  font-size: 16px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-banner .banner-btn {
  background: #0b1d3d !important;
  color: #ffffff;
  margin: 0 auto !important;
  border-radius: 8px;
  padding: 15px 35px;
  font-size: 15px;
}

.bonus-banner .banner-btn:hover {
  background: #173a73 !important;
}

.bonus-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
  margin-bottom: 20px;
}

.bento-card {
  background: linear-gradient(145deg, #173a73 0%, #0d2247 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.2s;
}

.bento-card:hover {
  transform: translateY(-3px);
}

.bento-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(250, 77, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bento-value {
  font-size: 46px;
  font-weight: 900;
  color: #fa4d00;
  margin-bottom: 5px;
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(250, 77, 0, 0.2);
  z-index: 2;
}

.bento-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
  z-index: 2;
}

.bento-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}

.bento-meta span {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bento-item-1 { grid-column: span 2; }
.bento-item-2 { grid-column: span 1; }
.bento-item-3 { grid-column: span 1; }
.bento-item-4 { grid-column: span 2; }

.VIP-card {
  background: linear-gradient(145deg, #173a73 0%, #428cdc 100%);
}

.VIP-card .bento-value {
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.VIP-card::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
}

@media (max-width: 1024px) {
  .registration-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .bonus-bento { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .bento-item-1,
  .bento-item-4 { 
    grid-column: span 2; 
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
    min-height: 380px;
    background-position: left center;
  }
  
  .hero-content {
    max-width: 100%;
    margin-top: 0;
  }
  
  .hero .hero-title {
    font-size: 28px;
    white-space: normal;
  }
  
  h1 {
    font-size: 26px;
  }
  
  h2 {
    font-size: 24px;
  }

  .hero-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
  }
  
  .hero-features {
    border-left: none;
    padding-left: 0;
  }
  
  .hero .hero-btn {
    width: 100% !important;
  }
  
  .pros-cons {
    flex-direction: column;
  }
  
  .header-actions button,
  .header-actions .button-block-btn {
    padding: 10px 15px;
    font-size: 12px;
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .registration-cards {
    grid-template-columns: 1fr;
  }
  
  .bonus-banner {
    padding: 35px 20px;
  }
  
  .bonus-banner h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .bonus-bento {
    grid-template-columns: 1fr;
  }
  .bento-item-1, 
  .bento-item-2, 
  .bento-item-3, 
  .bento-item-4 {
    grid-column: span 1;
  }
  .bento-value {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .header-inner {
    height: auto;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    gap: 15px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .header-actions button,
  .header-actions .button-block-btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 13px;
  }
}