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

html { scroll-behavior: smooth; }

body.bus-body {
  font-family: 'Inter', sans-serif;
  background: #0c1a2e;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

a { text-decoration: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0c1a2e; }
::-webkit-scrollbar-thumb { background: #1a3556; border-radius: 3px; }

/* Header */
.bus-header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: linear-gradient(180deg, #0e2040 0%, #091826 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 24px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.bus-header.site-header.scrolled {
  background: rgba(9,18,32,0.97);
  box-shadow: 0 2px 28px rgba(0,0,0,0.65);
}

.bus-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.bus-logo {
  height: 54px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}

.bus-logo--footer {
  height: 56px;
  margin: 0 auto;
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  background: #ffffff;
  color: #0e2040;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}

.btn-login:hover { background: #e8edf4; }

.btn-register {
  background: #dc2626;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
}

.btn-register:hover {
  background: #b91c1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(220,38,38,0.45);
}

/* {{MENU_$1}} desktop */
.bus-nav-slot--desktop {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bus-nav-slot--desktop .bus-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.bus-nav-slot--desktop .bus-menu-link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.bus-nav-slot--desktop .bus-menu-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: #dc2626;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.bus-nav-slot--desktop .bus-menu-link:hover {
  color: #dc2626;
}

.bus-nav-slot--desktop .bus-menu-link:hover::after {
  transform: scaleX(1);
}

/* Hamburger */
.bus-hamburger.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

.bus-hamburger span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.bus-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bus-hamburger.open span:nth-child(2) { opacity: 0; }
.bus-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* {{MENU_$1}} mobile */
.bus-mobile-nav.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #0d1e38;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
}

.bus-mobile-nav.mobile-nav.open {
  display: flex;
}

.bus-nav-slot--mobile .bus-nav-inner {
  display: flex;
  flex-direction: column;
}

.bus-nav-slot--mobile .bus-menu-link {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}

.bus-nav-slot--mobile .bus-menu-link:hover {
  color: #dc2626;
  background: rgba(220,38,38,0.05);
}

.mobile-btns {
  display: flex;
  gap: 12px;
  padding: 16px 24px 20px;
}

.mobile-btns .btn-login,
.mobile-btns .btn-register {
  flex: 1;
  text-align: center;
}

/* Hero */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  max-height: 520px;
  min-height: 380px;
  margin-top: 72px;
  overflow: hidden;
  background: #0c1a2e;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.hero-animate {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.05,0.7,0.1,1.0);
}

.hero-animate.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-h1 {
  font-size: clamp(24px, 4vw, 54px);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, #dc2626 30%, #dc2626 70%, transparent);
  opacity: 0.8;
}

/* Content */
.section-padding {
  background: #0d1e36;
  padding: 72px 0;
}

.content-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.bus-content {
  font-family: 'Inter', sans-serif;
}

.bus-content h2,
.bus-content .section-h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.bus-content h2::before,
.bus-content .section-h2::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 32px;
  background: #dc2626;
  border-radius: 3px;
  flex-shrink: 0;
}

.bus-content > p:first-of-type,
.bus-content .section-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 52px;
  line-height: 1.8;
  max-width: 680px;
}

.bus-content h3,
.bus-content .h3-accent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
}

.bus-content h3::before,
.bus-content .h3-accent::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: #dc2626;
  border-radius: 2px;
  flex-shrink: 0;
}

.bus-content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin: 0 0 16px;
}

.bus-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 52px;
}

.bus-content ul li {
  display: flex;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
}

.bus-content ul li:last-child {
  border-bottom: none;
}

.bus-content ul li::before {
  content: '\2014';
  color: #dc2626;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: -1px;
}

.bus-content ol {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
}

.bus-content ol li {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
}

.bus-content ol li:last-child {
  border-bottom: none;
}

.bus-content .num-list-number {
  font-size: 40px;
  font-weight: 900;
  color: rgba(220,38,38,0.3);
  flex-shrink: 0;
  line-height: 1;
}

.bus-content .table-wrap {
  margin-bottom: 60px;
  overflow: hidden;
}

.bus-content table,
.bus-content .casino-table {
  width: 100%;
  border-collapse: collapse;
}

.bus-content .casino-table thead th,
.bus-content table thead th {
  background: transparent;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 16px 12px;
  text-align: left;
  border-bottom: 2px solid #dc2626;
}

.bus-content .casino-table tbody td,
.bus-content table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bus-content .casino-table tbody tr:last-child td,
.bus-content table tbody tr:last-child td {
  border-bottom: none;
}

.bus-content .casino-table tbody tr:hover td,
.bus-content table tbody tr:hover td {
  background: rgba(220,38,38,0.06);
}

.bus-content blockquote {
  margin: 0;
  text-align: center;
}

.bus-content .blockquote-text,
.bus-content blockquote p {
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.75;
  margin: 0 auto 16px;
  max-width: 700px;
  padding: 0 32px;
}

.bus-content blockquote cite {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-cta {
  text-align: center;
  padding-top: 8px;
}

.btn-cta {
  display: inline-block;
  background: #dc2626;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 16px 52px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220,38,38,0.45);
}

.cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin: 14px 0 0;
  line-height: 1.65;
}

/* Footer — {{MENU_$2}} */
.bus-footer {
  background: #0c1a2e;
}

.footer-strip {
  width: 100%;
  display: block;
}

.footer-strip:first-of-type {
  margin-top: -1px;
}

.footer-line {
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.footer-inner {
  text-align: center;
  padding: 44px 40px 24px;
}

.bus-nav-slot--footer {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px 36px;
}

.bus-nav-slot--footer .bus-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.bus-nav-slot--footer .footer-link {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  padding: 4px 14px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.bus-nav-slot--footer .footer-link:hover {
  color: #dc2626;
}

.footer-social {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-social-btns {
  display: flex;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
  margin-right: 10px;
}

.social-btn:hover {
  border-color: #dc2626;
  background: rgba(220,38,38,0.13);
}

.footer-responsible {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin: 0;
}

@media (max-width: 768px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

@media (max-width: 768px) {
  .bus-header.site-header {
    padding: 0 20px;
    gap: 12px;
  }

  .bus-nav-slot--desktop { display: none; }

  .header-btns .btn-login { display: none; }

  .bus-hamburger.hamburger-btn { display: flex; }

  .hero-section { height: 420px; }

  .hero-banner {
    width: auto;
  }

  .section-padding { padding: 48px 0 60px; }

  .bus-content h2,
  .bus-content .section-h2 { font-size: 24px; }

  .bus-content h3,
  .bus-content .h3-accent { font-size: 16px; }

  .bus-content .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bus-content .casino-table thead th,
  .bus-content table thead th {
    font-size: 10px;
    padding: 0 10px 10px;
  }

  .bus-content .casino-table tbody td,
  .bus-content table tbody td {
    font-size: 13px;
    padding: 11px 10px;
  }

  .bus-content .num-list-number { font-size: 28px; }

  .bus-content .blockquote-text,
  .bus-content blockquote p {
    font-size: 16px;
    padding: 0 16px;
  }

  .btn-cta {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }

  .footer-inner { padding: 36px 20px 24px; }

  .bus-nav-slot--footer { padding: 0 20px 36px; }

  .bus-nav-slot--footer .footer-link { font-size: 12px; }

  .footer-social {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .bus-header.site-header { height: 60px; }

  .bus-logo { height: 42px; }

  .bus-mobile-nav { top: 60px; }

  .hero-section {
    height: 360px;
    margin-top: 60px;
  }

  .hero-h1 { font-size: 26px; }
}
