/* ============================================================
   Fonts — self-hosted Inter (latin subset)
   ============================================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700.woff2') format('woff2');
}

/* ============================================================
   Variables — Voltrush: dark green + yellow
   ============================================================ */

:root {
  --color-bg:          #040e06;
  --color-bg-card:     #081408;
  --color-bg-header:   #020804;
  --color-bg-footer:   #020804;
  --color-text:        #ffffff;
  --color-text-muted:  #5a8f62;
  --color-accent:      #eab308;
  --color-accent-alt:  #4ade80;
  --color-border:      #0c2010;
  --color-table-head:  #091a0b;
  --color-table-row:   #050e06;
  --font-main:         'Segoe UI', sans-serif;
  --radius:            8px;
  --max-width:         1200px;
}

/* ============================================================
   Reset & base
   ============================================================ */

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

html {
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent-alt);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  background-color: var(--color-bg-header);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.custom-logo-link {
  display: flex;
  align-items: center;
}
.custom-logo-link:hover {
  text-decoration: none;
}

.custom-logo {
  height: 36px;
  width: auto;
  display: block;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn--full {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn--ghost {
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
  text-decoration: none;
}

.btn--primary {
  color: #000000;
  background: var(--color-accent);
  border: 1px solid transparent;
}
.btn--primary:hover {
  background: #ca8a04;
  color: #000000;
  text-decoration: none;
}

.site-nav__list {
  list-style: none;
  display: flex;
  gap: 32px;
}

.site-nav__list a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav__list a:hover {
  color: var(--color-text);
  text-decoration: none;
}

/* ============================================================
   Main content
   ============================================================ */

.site-main {
  min-height: calc(100vh - 64px - 80px);
  padding: 48px 0;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--color-text);
}

.page-body {
  width: 100%;
}

.page-body p {
  margin-bottom: 1.25rem;
  color: var(--color-text);
  line-height: 1.75;
}

.page-body h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--color-text);
}

.page-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--color-text-muted);
}

.page-body img {
  border-radius: var(--radius);
  margin: 1.75rem 0;
  height: auto;
}

.page-body figure {
  margin: 1.75rem 0;
}

.page-body figure img {
  margin: 0;
}

.page-body figcaption {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

.page-body .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-body .alignleft {
  float: left;
  margin: 0.25rem 1.75rem 1rem 0;
}

.page-body .alignright {
  float: right;
  margin: 0.25rem 0 1rem 1.75rem;
}

.page-body .alignwide {
  width: 100%;
}

.page-body::after {
  content: '';
  display: table;
  clear: both;
}

.page-body ul,
.page-body ol {
  margin: 0 0 1.25rem 1.5rem;
  color: var(--color-text);
  line-height: 1.75;
}

.page-body li {
  margin-bottom: 0.4rem;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background-color: var(--color-bg-footer);
  border-top: 1px solid var(--color-border);
}

.site-footer__widgets-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 32px;
  border-bottom: 1px solid var(--color-border);
}

.site-footer__widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 40px;
}

.site-footer__widget {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.site-footer__widget a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.site-footer__widget a:hover {
  color: var(--color-text);
  text-decoration: none;
}

.site-footer__widget-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .site-footer__widgets {
    grid-template-columns: 1fr;
  }
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__copy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.site-footer__list {
  list-style: none;
  display: flex;
  gap: 24px;
}

.site-footer__list a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: none;
}
.site-footer__list a:hover {
  color: var(--color-text);
  text-decoration: none;
}

/* ============================================================
   Tables
   ============================================================ */

.page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-body table thead {
  background-color: var(--color-table-head);
}

.page-body table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-border);
}

.page-body table td {
  padding: 12px 16px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.page-body table tbody tr:last-child td {
  border-bottom: none;
}

.page-body table tbody tr:nth-child(even) {
  background-color: var(--color-table-row);
}

.page-body table tbody tr:hover {
  background-color: var(--color-table-head);
}

/* ============================================================
   Gutenberg Button block
   ============================================================ */

.wp-block-buttons {
  width: 100%;
}

.wp-block-button {
  width: 100%;
}

.wp-block-button__link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-main);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  background: var(--color-accent);
  color: #000000;
  border: 1px solid transparent;
}
.wp-block-button__link:hover {
  background: #ca8a04;
  color: #000000;
  text-decoration: none;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
  background: transparent;
}

.wp-block-button.wp-block-button__width-100 {
  width: 100%;
}
.wp-block-button.wp-block-button__width-100 .wp-block-button__link {
  width: 100%;
}

/* ============================================================
   Badge
   ============================================================ */

.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge--yellow { background: rgba(234, 179, 8, 0.15);  color: #eab308; }
.badge--green  { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.badge--lime   { background: rgba(16, 185, 129, 0.15); color: #10b981; }


/* ============================================================
   Accessibility — skip link, focus, reduced motion
   ============================================================ */

/* Skip-to-content link: hidden until focused by keyboard users */
.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 1000;
  padding: 8px 16px;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
  text-decoration: none;
}

/* Visible keyboard focus indicator across all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-accent-alt);
  outline-offset: 2px;
  border-radius: 2px;
}

/* The <main> is a programmatic skip target — don't draw a ring around it */
.site-main {
  scroll-margin-top: 80px;
}
.site-main:focus {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

  :root{
    --sb-bg:#0E1B17;--sb-item-hover:rgba(255, 255, 255, 0.08);--sb-active:#3a2b66;
    --sb-text:#dedede;--sb-dim:#f3effb;--sb-white:#f3effb;--sb-toggle:#eab308;
  }
  /* push page content right so it isn't hidden behind the fixed sidebar (desktop only) */
  @media(min-width:993px){body{padding-left:256px!important;}body.sbnav-collapsed{padding-left:60px!important;}}
  #spinbet-sidebar{position:fixed;top:0;left:0;height:100vh;width:256px;background:var(--sb-bg);
    z-index:9999;display:flex;flex-direction:column;padding:12px 0;box-sizing:border-box;
    transition:width .22s,transform .22s;overflow-y:auto;}
  #spinbet-sidebar *{box-sizing:border-box;}
  .sbnav-top{display:flex;align-items:center;gap:8px;margin-bottom:16px;padding:4px 2px 12px;border-bottom:1px solid rgba(255,255,255,.06);}
  .sbnav-seg{display:flex;gap:12px;flex:1;}
  .sbnav-seg a{display:flex;align-items:center;gap:6px;color:var(--sb-dim);font-size:14px;font-weight:600;text-decoration:none;white-space:nowrap;padding:6px 8px;border-radius:20px;background:rgba(255,255,255,.03);}
  .sbnav-seg a svg{width:16px;height:16px;stroke:currentColor;fill:none;}
  .sbnav-seg a:hover{color:var(--sb-white);}
  .sbnav-toggle{ padding-left: 10px; width:36px;height:36px;border:none;border-radius:8px;background:none;color:var(--sb-text);display:flex;align-items:center;justify-content:center;cursor:pointer;flex-shrink:0;}
  .sbnav-toggle svg{width:18px;height:18px;stroke:currentColor;fill:none;}
  .page-body .sbnav-menu{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px;}
  .sbnav-menu a{display:flex;align-items:center;gap:14px;padding:11px 14px;color:var(--sb-text);text-decoration:none;font-size:14px;font-weight:600;white-space:nowrap;transition:background .15s,color .15s;}
  .sbnav-menu a svg{width:20px;height:20px;stroke:currentColor;fill:none;flex-shrink:0;}
  .sbnav-menu a:hover{background:var(--sb-item-hover);color:var(--sb-white);}
  .sbnav-menu a.active{background:none;color:#00FEA9}
	
	.sbnav-seg a.active {color:#00FEA9}
  /* collapsed (desktop icon-rail) */
  body.sbnav-collapsed #spinbet-sidebar{width:60px;}
  body.sbnav-collapsed #spinbet-sidebar .sbnav-label{opacity:0;width:0;overflow:hidden;pointer-events:none;}
body.sbnav-collapsed #spinbet-sidebar .sbnav-label {
display: none;
}
  body.sbnav-collapsed #spinbet-sidebar .sbnav-top{justify-content:center;}
  body.sbnav-collapsed #spinbet-sidebar .sbnav-menu a{justify-content:center;padding:11px;}
body.sbnav-collapsed #spinbet-sidebar .sbnav-toggle {
	padding-left: 0;
}
  /* mobile hamburger button */
  .sbnav-burger{display:none;position:fixed;top:12px;left:12px;z-index:10001;width:40px;height:40px;border:none;border-radius:10px;background:var(--sb-bg);color:var(--sb-white);align-items:center;justify-content:center;cursor:pointer;box-shadow:0 2px 8px rgba(0,0,0,.3);}
  .sbnav-burger svg{width:22px;height:22px;stroke:currentColor;fill:none;}
  .sbnav-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:9998;}
  @media(max-width:992px){
    .sbnav-burger{display:flex;}
    #spinbet-sidebar{transform:translateX(-100%);width:260px;box-shadow:2px 0 16px rgba(0,0,0,.4);}
    body.sbnav-open #spinbet-sidebar{transform:translateX(0);}
    body.sbnav-open .sbnav-overlay{display:block;}
    body.sbnav-open .sbnav-burger{left:auto;right:12px;}
  }
body.sbnav-collapsed #spinbet-sidebar .sbnav-seg {
display: none;opacity:0;width:0;overflow:hidden;pointer-events:none;
}

.sbnav-seg {
padding-left: 15px;
}


            .wp-block-button__link {
                background: #f5c518 !important;
                color: #1a1000 !important;
                font-weight: 700 !important;
                font-size: 15px !important;
                letter-spacing: 0.01em !important;
                padding: 14px 32px !important;
                border-radius: 8px !important;
                text-transform: none !important;
                border: none !important;
                transition: all 0.2s !important;
            }

            .wp-block-button__link:hover {
                background: #ffd740 !important;
            }


            /* All text containers */
            .entry-content, .post-content, .page-content, article {
                font-size: 16px !important;
                line-height: 1.8 !important;
                //max-width: 860px !important;
                margin: 0 auto !important;
            }

            /* Headings */
            .entry-content h1, .post-content h1, article h1, .entry-content h2, .post-content h2, article h2, .entry-content h3, .post-content h3, article h3 {
                color: #ffffff !important;
                font-weight: 700 !important;
                line-height: 1.2 !important;
            }

            .entry-content h1, .post-content h1, article h1 {
                font-size: 40px !important;
                margin-bottom: 16px !important;
            }

            .entry-content h2, .post-content h2, article h2 {
                font-size: 26px !important;
                border-left: 4px solid #00c97a !important;
                padding-left: 14px !important;
                margin-top: 48px;
                margin-bottom: 12px;
            }

            .entry-content h3, .post-content h3, article h3 {
                font-size: 19px !important;
                color: #00c97a !important;
                margin-top: 32px !important;
            }

            /* Paragraphs */
            .entry-content p, .post-content p, article p {
                color: #b8c9be !important;
                margin-bottom: 20px !important;
                font-size: 16px !important;
                line-height: 1.85 !important;
            }

            /* Lists */
            .entry-content ul, .post-content ul, article ul {
                list-style: none !important;
                padding-left: 0 !important;
                margin-bottom: 24px !important;
            }

            .entry-content ul li, .post-content ul li, article ul li {
                color: #b8c9be !important;
                padding: 8px 0 8px 28px !important;
                position: relative !important;
                border-bottom: 1px solid rgba(255,255,255,0.05) !important;
                font-size: 15px !important;
            }

            .entry-content ul:not(.stats):not(.sbnav-menu) li::before, .post-content ul:not(.stats):not(.sbnav-menu) li::before, article ul:not(.stats):not(.sbnav-menu) li::before {
                content: '→' !important;
                position: absolute !important;
                left: 0 !important;
                color: #00c97a !important;
                font-weight: 700 !important;
            }

            /* Strong */
            .entry-content strong, .post-content strong, article strong {
                color: #ffffff !important;
            }

            /* Links */
            .entry-content a, .post-content a, article a {
                color: #00c97a !important;
                text-decoration: none !important;
            }

            a.wp-block-button__link:hover {
                text-decoration: none !important;
                background: #ca8a04;
                color: #000 !important;
            }

            .entry-content a:hover, .post-content a:hover, article a:hover {
                text-decoration: underline !important;
            }

            /* Dividers */
            .entry-content hr, .post-content hr, article hr {
                border: none !important;
                border-top: 1px solid rgba(0, 201, 122, 0.15) !important;
                margin: 48px 0 !important;
            }


.site-nav__list .current-menu-item a {
	color:#00FEA9
}

@media (max-width: 767px) {
  /* Mobile styles */
	nav.site-nav, .sbnav-toggle {
		display: none;
	}
	
	.custom-logo {
		height: 30px;
	}
	
	.site-header__inner {
		padding: 0 12px 0 60px;
	}
	
	.btn {
		padding: 8px 16px;
	}
}
