/* Shared styles for 1xbet-nepal.online league landing pages */
:root {
  --theme-color-accent: #1465c0;
  --theme-color-secondary: #2bb765;
  --theme-body-bg: #090f1e;
  --theme-body-color: #ffffff;
  --theme-a-color: #4a9eff;
  --theme-section-bg: #141b2e;
  --theme-section-border-color: #1465c0;
  --theme-buttons-accent-bg: #1465c0;
  --theme-buttons-accent-bg-hover: #1d7ada;
  --theme-buttons-secondary-bg: #2bb765;
  --theme-buttons-secondary-bg-hover: #49d583;
  --theme-buttons-outline-border: #2bb765;
  --theme-header-bg: #090f1e;
  --theme-footer-bg: #141b2e;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--theme-body-bg);
  color: var(--theme-body-color);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}
a { color: var(--theme-a-color); text-decoration: none; }
a:hover { text-decoration: underline; }

/* header */
header.site-header { background: var(--theme-header-bg); border-bottom: 1px solid #1a2238; padding: 14px 0; position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.logo span { color: var(--theme-color-accent); }
.main-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.main-nav a { color: #cfd5e3; font-size: 14px; font-weight: 500; }
.main-nav a.active { color: var(--theme-a-color); }
.header-buttons { display: flex; gap: 10px; }
.lang-switcher { display: flex; align-items: center; gap: 2px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.lang-switcher a { color: #9297a3; padding: 4px 10px; border-radius: 6px; transition: all .2s ease; }
.lang-switcher a:hover { color: #fff; background: #1a2238; text-decoration: none; }
.lang-switcher a.active { color: var(--theme-a-color); background: rgba(74,158,255,.12); pointer-events: none; }
.lang-switcher .sep { color: #3a4566; margin: 0 2px; }

/* buttons */
.btn { display: inline-block; padding: 12px 24px; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; text-align: center; transition: all .2s ease; font-family: inherit; line-height: 1.2; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn.accent { background: var(--theme-buttons-accent-bg); color: #fff; }
.btn.accent:hover { background: var(--theme-buttons-accent-bg-hover); }
.btn.outline { background: transparent; color: #fff; border: 2px solid var(--theme-buttons-outline-border); }
.btn.outline:hover { background: var(--theme-buttons-outline-border); }

/* hamburger */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; flex-shrink: 0; background: #1a2238; border: 1px solid #243049; border-radius: 8px; cursor: pointer; padding: 0 9px; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* layout */
main { max-width: 1000px; margin: 0 auto; padding: 24px 20px 90px; }
.breadcrumbs { font-size: 13px; color: #9297a3; margin-bottom: 18px; }
.breadcrumbs a { color: #9297a3; }
.breadcrumbs a:hover { color: var(--theme-a-color); }
.breadcrumbs span { color: #5b667f; margin: 0 6px; }

.league-hero { background: var(--theme-section-bg); border: 1px solid var(--theme-section-border-color); border-radius: 14px; padding: 34px 30px; margin-bottom: 14px; }
.league-hero h1 { font-size: 30px; margin: 0 0 14px; line-height: 1.2; }
.league-hero p { font-size: 16px; color: #d0d6e3; margin: 0 0 8px; }
.promo-pill { display: inline-block; margin-top: 14px; background: #1a2238; border: 1px dashed var(--theme-color-secondary); border-radius: 8px; padding: 8px 16px; font-size: 14px; color: #cfd5e3; }
.promo-pill strong { color: #ffd84a; letter-spacing: .5px; }

.content h2 { font-size: 24px; margin-top: 44px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--theme-section-border-color); }
.content h3 { font-size: 19px; margin-top: 26px; margin-bottom: 10px; color: #e8edf7; }
.content p { margin: 0 0 16px; color: #d8dde9; }
.content ul, .content ol { margin: 0 0 18px; padding-left: 22px; color: #d8dde9; }
.content li { margin-bottom: 8px; }
.content strong { color: #fff; }
.content table { width: 100%; border-collapse: collapse; margin: 20px 0; background: var(--theme-section-bg); border-radius: 10px; overflow: hidden; font-size: 14px; }
.content th, .content td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #243049; color: #d8dde9; }
.content th { background: #1a2238; font-weight: 700; color: #fff; }
.content tr:last-child td { border-bottom: none; }

/* numbered steps */
.steps { list-style: none; counter-reset: s; padding: 0; margin: 22px 0; }
.steps li { position: relative; padding: 4px 0 18px 46px; }
.steps li::before { counter-increment: s; content: counter(s); position: absolute; left: 0; top: 0; width: 32px; height: 32px; background: linear-gradient(135deg, var(--theme-color-accent), var(--theme-color-secondary)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }

/* cta */
.cta-grad { position: relative; margin: 40px 0 10px; padding: 32px 28px; border-radius: 16px; background: linear-gradient(135deg, #1465c0 0%, #2bb765 100%); text-align: center; overflow: hidden; }
.cta-grad .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 8px; }
.cta-grad h2 { font-size: 25px; font-weight: 800; color: #fff; margin: 0 0 8px; border: none; padding: 0; }
.cta-grad h2 .amount { color: #ffd84a; }
.cta-grad p { color: rgba(255,255,255,.92); font-size: 14px; margin: 0 0 18px; }
.cta-grad .btn { background: #fff; color: #0a1933; padding: 14px 36px; font-size: 16px; }
.cta-grad .btn:hover { background: #ffd84a; }

/* faq accordion */
.faq-list { margin: 22px 0; }
.faq-item { background: var(--theme-section-bg); border: 1px solid #243049; border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-item[open] { border-color: var(--theme-color-secondary); }
.faq-item summary { padding: 16px 20px; cursor: pointer; font-weight: 700; color: #fff; font-size: 16px; list-style: none; position: relative; padding-right: 50px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--theme-color-secondary); }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-content { padding: 0 20px 18px; color: #d8dde9; font-size: 14.5px; }
.faq-item .faq-content p { margin: 0; }

/* sticky bonus bar */
.bonus-bar { position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(90deg, #0a1933 0%, #1465c0 100%); border-top: 2px solid var(--theme-color-secondary); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; z-index: 90; box-shadow: 0 -6px 20px rgba(0,0,0,.4); }
.bonus-bar__text { font-size: 15px; font-weight: 600; color: #fff; }
.bonus-bar__text strong { color: #ffd84a; font-size: 17px; }
.bonus-bar__close { background: transparent; border: none; color: #fff; font-size: 22px; cursor: pointer; padding: 0 6px; line-height: 1; }

/* footer */
footer.site-footer { background: var(--theme-footer-bg); margin-top: 60px; padding: 40px 20px 100px; border-top: 1px solid #243049; }
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-categories { margin-bottom: 24px; }
.footer-categories a { display: inline-block; background: #1a2238; color: #cfd5e3; padding: 6px 14px; border-radius: 6px; margin: 0 6px 8px 0; font-size: 13px; }
.footer-categories a:hover { background: var(--theme-color-accent); color: #fff; text-decoration: none; }
.footer-disclaimer { border-top: 1px solid #243049; padding-top: 20px; color: #9297a3; font-size: 12px; line-height: 1.6; }
.footer-disclaimer p { margin: 0 0 10px; color: #9297a3; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .header-buttons { display: none; }
  .main-nav { display: none; position: absolute; top: calc(100% + 14px); left: 0; right: 0; flex-direction: column; gap: 0; background: var(--theme-header-bg); border: 1px solid #243049; border-radius: 0 0 12px 12px; padding: 8px 20px 14px; box-shadow: 0 12px 24px rgba(0,0,0,.45); z-index: 99; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 4px; font-size: 15px; border-bottom: 1px solid #1a2238; }
  .header-inner { position: relative; }
  .league-hero h1 { font-size: 23px; }
  .content table { display: block; overflow-x: auto; }
}
