/* === BALTBET - SEO Optimized Styles === */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  background-color: #000000;
  color: #e6ebf0;
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: #439D49; text-decoration: none; transition: color .2s ease; }
a:hover { color: #5dbf63; }

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

/* === HEADER === */
.site-header {
  background-color: #3F6687;
  border-bottom: 2px solid #26313D;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.logo-block { display: flex; align-items: center; gap: 12px; }
.logo-block img {
  height: 44px;
  width: auto;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 4px;
}
.logo-text {
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .5px;
}
.logo-text small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: .85;
  letter-spacing: .2px;
}

/* === NAV === */
.main-nav {
  background-color: #26313D;
  border-bottom: 1px solid #1a232c;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 0 20px;
}
.nav-inner a {
  color: #d6dde4;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 3px solid transparent;
  display: inline-block;
}
.nav-inner a:hover,
.nav-inner a.active {
  color: #ffffff;
  background-color: #33526C;
  border-bottom-color: #439D49;
}

/* === BUTTONS (Square, no radius) === */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-align: center;
  border-radius: 0; /* square corners */
  transition: filter .2s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-primary { background-color: #439D49; color: #ffffff; }
.btn-secondary { background-color: #263B4D; color: #ffffff; }
.header-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(135deg, #33526C 0%, #26313D 100%);
  padding: 56px 20px;
  text-align: center;
  border-bottom: 1px solid #26313D;
}
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero h1 {
  color: #ffffff;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 900;
}
.hero h1 .accent { color: #439D49; }
.hero p.lead {
  color: #cfd6dd;
  font-size: 18px;
  max-width: 820px;
  margin: 0 auto 28px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === CONTENT === */
main { padding: 0; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 22px;
}
.content-block {
  background-color: #26313D;
  padding: 30px 32px;
  margin-bottom: 30px;
  border-left: 4px solid #439D49;
}
.content-block.alt {
  background-color: #33526C;
  border-left-color: #ffffff;
}

h1, h2, h3, h4 { color: #ffffff; font-weight: 800; line-height: 1.25; }
h1 { font-size: 32px; margin-bottom: 18px; }
h2 {
  font-size: 26px;
  margin: 28px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #33526C;
}
h3 { font-size: 20px; margin: 22px 0 12px; color: #8fd293; }
h4 { font-size: 17px; margin: 18px 0 10px; }

p { margin-bottom: 14px; color: #d6dde4; }
ul, ol { margin: 12px 0 18px 28px; color: #d6dde4; }
li { margin-bottom: 7px; }
strong { color: #ffffff; }
em { color: #8fd293; font-style: normal; font-weight: 600; }

/* === IMAGES IN CONTENT — Beautiful Display === */
.content-image {
  position: relative;
  margin: 32px auto;
  background: linear-gradient(135deg, #1a232c 0%, #26313D 100%);
  padding: 14px;
  border: 1px solid #33526C;
  box-shadow: 0 8px 24px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.content-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #439D49 50%, transparent 100%);
}
.content-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,.55), 0 0 0 1px #439D49;
}
.content-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.content-image figcaption {
  text-align: center;
  font-size: 13.5px;
  color: #a8b8c6;
  padding: 12px 8px 4px;
  font-style: italic;
  letter-spacing: .2px;
  line-height: 1.5;
}

/* Wide banner (1024×318) — KHL, Champions League */
.content-image.banner {
  max-width: 100%;
}
.content-image.banner img {
  border: 1px solid #33526C;
}

/* Square or portrait (welcome-bonus 900×900, registration-bonus 1023×724) */
.content-image.portrait {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Centered medium (login-promo, cart-bets) */
.content-image.medium {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Float-right card for desktop (mixes text and image) */
.content-image.float-right {
  max-width: 420px;
  float: right;
  margin: 8px 0 20px 28px;
  clear: both;
}
.content-image.float-left {
  max-width: 420px;
  float: left;
  margin: 8px 28px 20px 0;
  clear: both;
}

/* Mobile apps screenshot composition */
.content-image.app-screen {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #2a4660 0%, #1a232c 100%);
  padding: 20px 16px;
}

/* Image gallery — pair of images side by side */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 32px 0;
}
.image-gallery .content-image {
  margin: 0;
}

/* Hero/featured image — full bleed within content-block */
.content-image.featured {
  margin: 0 0 24px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
}
.content-image.featured::before { display: none; }
.content-image.featured img {
  border: 2px solid #439D49;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.content-image.featured figcaption {
  background: #1a232c;
  margin-top: 0;
  padding: 12px 18px;
  border-left: 3px solid #439D49;
  border-right: 3px solid #439D49;
  border-bottom: 3px solid #439D49;
  font-style: normal;
  color: #d6dde4;
}

/* Clear floats after content-blocks */
.content-block::after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 720px) {
  .content-image.float-right,
  .content-image.float-left {
    float: none;
    margin: 24px auto;
    max-width: 100%;
  }
  .content-image { margin: 24px 0; padding: 10px; }
}

/* === TABLE === */
.tbl-wrap { overflow-x: auto; margin: 18px 0 26px; }
table.info-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #26313D;
  border: 1px solid #33526C;
}
.info-table th, .info-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #33526C;
  color: #e6ebf0;
  font-size: 14.5px;
}
.info-table th {
  background-color: #33526C;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .5px;
}
.info-table tbody tr:hover { background-color: #2c3a48; }

/* === TOC === */
.toc {
  background-color: #26313D;
  padding: 22px 26px;
  margin-bottom: 30px;
  border-left: 4px solid #439D49;
}
.toc h2 {
  font-size: 20px;
  margin: 0 0 14px;
  padding: 0;
  border: none;
  color: #ffffff;
}
.toc ol { margin: 0 0 0 22px; }
.toc ol li { margin-bottom: 6px; }
.toc ol li a { color: #8fd293; }
.toc ol li a:hover { color: #ffffff; }

/* === CTA BLOCK === */
.cta-block {
  background: linear-gradient(135deg, #439D49 0%, #2e7e34 100%);
  text-align: center;
  padding: 36px 22px;
  margin: 30px 0;
  color: #ffffff;
}
.cta-block h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 14px;
}
.cta-block p { color: #e8f5e9; margin-bottom: 22px; }
.cta-block .btn { background-color: #263B4D; }

/* === FAQ === */
.faq-item {
  background-color: #26313D;
  border-left: 4px solid #439D49;
  padding: 18px 22px;
  margin-bottom: 14px;
}
.faq-item h3 {
  color: #ffffff;
  font-size: 18px;
  margin: 0 0 8px;
}
.faq-item p { margin-bottom: 0; }

/* === CARDS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.card {
  background-color: #33526C;
  padding: 22px;
  border-top: 3px solid #439D49;
}
.card h3 {
  color: #ffffff;
  font-size: 18px;
  margin: 0 0 10px;
}
.card p { color: #cfd6dd; margin: 0; font-size: 14.5px; }

/* === HERO META (date in hero) === */
.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 0 auto 22px;
  padding: 8px 16px;
  background: rgba(0,0,0,.25);
  border-left: 3px solid #439D49;
  font-size: 13.5px;
  color: #cfd6dd;
}
.hero-meta .hm-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .hm-item strong { color: #ffffff; font-weight: 700; }
.hero-meta .hm-item .dot { color: #8fd293; font-weight: 900; }

/* === RELATED POSTS === */
.related-posts {
  margin: 30px 0;
  padding: 28px;
  background-color: #26313D;
  border-left: 4px solid #8fd293;
}
.related-posts h2 {
  font-size: 22px;
  margin: 0 0 18px;
  padding: 0;
  border: none;
  color: #ffffff;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.related-card {
  background-color: #33526C;
  padding: 18px 20px;
  border-top: 3px solid #439D49;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}
.related-card:hover { transform: translateY(-2px); filter: brightness(1.08); }
.related-card .rc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8fd293;
  margin-bottom: 8px;
  font-weight: 700;
}
.related-card .rc-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.related-card .rc-desc {
  color: #cfd6dd;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  background-color: #1a232c;
  border-bottom: 1px solid #26313D;
  padding: 10px 20px;
  font-size: 13.5px;
}
.breadcrumbs-inner {
  max-width: 1180px;
  margin: 0 auto;
  color: #8fa5b8;
}
.breadcrumbs a { color: #8fd293; }
.breadcrumbs a:hover { color: #ffffff; text-decoration: underline; }
.breadcrumbs .bc-sep { margin: 0 8px; color: #5d7282; }
.breadcrumbs [aria-current="page"] { color: #ffffff; font-weight: 600; }

/* === ARTICLE META FOOTER (E-E-A-T) === */
.article-meta-footer {
  background-color: #1a232c;
  border-top: 3px solid #439D49;
  border-bottom: 1px solid #26313D;
  padding: 36px 20px 30px;
  margin-top: 20px;
}
.container-narrow {
  max-width: 1180px;
  margin: 0 auto;
}
.author-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background-color: #26313D;
  padding: 22px 24px;
  border-left: 4px solid #439D49;
  margin-bottom: 18px;
}
.author-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #439D49 0%, #2e7e34 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
}
.author-info { flex: 1; min-width: 0; }
.author-name {
  color: #ffffff;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 3px;
}
.author-role {
  color: #8fd293;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.author-bio {
  color: #cfd6dd;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.article-dates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 22px;
  background-color: #26313D;
  padding: 18px 24px;
  margin-bottom: 18px;
  border-left: 4px solid #33526C;
}
.date-item {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #ffffff;
}
.date-label {
  color: #8fa5b8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}
.fact-check-badge {
  background-color: #26313D;
  border-left: 4px solid #8fd293;
  padding: 14px 22px;
  font-size: 14px;
  color: #d6dde4;
}
.fact-check-badge strong {
  color: #8fd293;
}

@media (max-width: 640px) {
  .author-card { flex-direction: column; align-items: stretch; gap: 12px; }
  .author-avatar { width: 56px; height: 56px; font-size: 19px; }
}

/* === FOOTER === */
.site-footer {
  background-color: #26313D;
  border-top: 3px solid #439D49;
  padding: 36px 20px 18px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.footer-col p, .footer-col li {
  color: #a8b3bd;
  font-size: 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #cfd6dd; }
.footer-col a:hover { color: #8fd293; }
.footer-bottom {
  max-width: 1280px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid #33526C;
  text-align: center;
  color: #8fa5b8;
  font-size: 13px;
}

/* === MOBILE === */
@media (max-width: 900px) {
  .hero h1 { font-size: 28px; }
  .hero p.lead { font-size: 16px; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  .container { padding: 26px 16px; }
  .content-block { padding: 22px 18px; }
}

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: stretch; }
  .header-actions { justify-content: center; }
  .logo-block { justify-content: center; }
  .logo-text { font-size: 17px; text-align: center; }
  .nav-inner { justify-content: center; }
  .nav-inner a { padding: 10px 12px; font-size: 14px; }
  .hero { padding: 38px 16px; }
  .hero h1 { font-size: 24px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .info-table th, .info-table td { padding: 10px 8px; font-size: 13px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 21px; }
  h1 { font-size: 22px; }
  h2 { font-size: 19px; }
  .btn { padding: 11px 16px; font-size: 13px; }
}
