/*
Theme Name: Fast BTC Withdraw
Theme URI: https://fastbtcwithdraw.com
Author: Fast BTC Withdraw
Description: Light crypto WordPress theme for Fast BTC Withdraw.
Version: 0.1.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: fast-btc-withdraw
*/

@font-face {
  font-family: "Stack Sans Headline";
  font-style: normal;
  font-display: swap;
  font-weight: 200 700;
  src: url("stack-sans-headline-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Stack Sans Headline";
  font-style: normal;
  font-display: swap;
  font-weight: 200 700;
  src: url("stack-sans-headline-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Stack Sans Notch";
  font-style: normal;
  font-display: swap;
  font-weight: 200 700;
  src: url("stack-sans-notch-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Stack Sans Notch";
  font-style: normal;
  font-display: swap;
  font-weight: 200 700;
  src: url("stack-sans-notch-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-bg: #f6f3ee;
  --color-surface: #ffffff;
  --color-ink: #141b24;
  --color-muted: #5b6572;
  --color-line: #e4ddd3;
  --color-accent: #f7931a;
  --color-accent-hover: #d9780c;
  --color-brand: #17324d;
  --font-display: "Stack Sans Notch", system-ui, sans-serif;
  --font-body: "Stack Sans Headline", system-ui, sans-serif;
  --gutter: clamp(1rem, 3.2vw, 2.5rem);
  --container: min(100% - (var(--gutter) * 2), 90rem);
  --radius: 0.75rem;
  --shadow: 0 12px 32px rgba(20, 27, 36, 0.08);
  --text: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --lead: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --h1: clamp(1.75rem, 1.2rem + 2.4vw, 3.25rem);
  --h2: clamp(1.5rem, 1.15rem + 1.5vw, 2.375rem);
  --h3: clamp(1.25rem, 1.1rem + 0.8vw, 1.75rem);
  --h4: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --space: clamp(1.25rem, 1rem + 1.2vw, 2.5rem);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  margin: 0;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text);
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-brand);
}

a:hover,
a:focus-visible {
  color: var(--color-accent-hover);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  color: var(--color-brand);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

h4 {
  font-size: var(--h4);
}

p {
  margin: 0 0 1em;
  overflow-wrap: anywhere;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--space);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--color-accent);
  color: #141b24;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-accent-hover);
  color: #141b24;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-main {
  flex: 1 1 auto;
  min-width: 0;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -4rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--color-brand);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--gutter);
  color: #fff;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-brand);
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: rgba(23, 50, 77, 0.08);
  color: var(--color-brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 243, 238, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-line);
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.25rem;
  padding-block: 0.65rem;
}

.site-brand {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-width: 0;
  flex: 1 1 auto;
  color: var(--color-brand);
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-decoration: none;
}

.site-brand:hover,
.site-brand:focus-visible {
  color: var(--color-accent-hover);
}

.site-brand .custom-logo-link {
  display: inline-flex;
  max-width: 100%;
}

.site-brand .custom-logo {
  height: 2rem;
  width: auto;
}

.header-nav {
  display: none;
  min-width: 0;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--color-brand);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list .current-menu-item > a,
.nav-list .current_page_item > a {
  background: rgba(247, 147, 26, 0.14);
  color: var(--color-ink);
}

.nav-list .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.15rem;
}

.header-search {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  padding: 0;
  overflow: hidden;
  background: rgba(20, 27, 36, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100dvh;
  padding: max(var(--gutter), env(safe-area-inset-top)) var(--gutter) max(var(--gutter), env(safe-area-inset-bottom));
  overflow-x: clip;
  overflow-y: auto;
  background: rgba(246, 243, 238, 0.96);
  -webkit-overflow-scrolling: touch;
}

.lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lightbox-title {
  margin: 0;
  min-width: 0;
  font-family: var(--font-display);
  font-size: var(--h4);
  font-weight: 600;
  color: var(--color-brand);
}

.lightbox-close {
  margin-left: auto;
}

.search-form {
  display: grid;
  gap: 0.65rem;
}

.search-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.search-input {
  width: 100%;
  min-width: 0;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 0.95rem + 1.2vw, 1.5rem);
}

.search-input:focus {
  border-color: var(--color-accent);
  outline: 2px solid rgba(247, 147, 26, 0.35);
  outline-offset: 0;
}

.lightbox-nav .nav-list {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.2rem;
  padding-bottom: 1rem;
}

.lightbox-nav .nav-list a {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.8rem 0.75rem;
  border-radius: var(--radius);
  white-space: normal;
  overflow-wrap: anywhere;
}

.lightbox-nav .sub-menu {
  padding-left: 0.75rem;
}

html.is-locked,
html.is-locked body {
  overflow: hidden;
}

@media (min-width: 30rem) {
  .search-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
  }

  .search-row .button {
    min-height: 3.25rem;
    padding-inline: 1.25rem;
  }
}

@media (min-width: 48rem) {
  .lightbox {
    padding: var(--gutter);
    align-items: center;
  }

  .lightbox-panel {
    width: min(100%, 44rem);
    height: auto;
    max-height: min(90dvh, 52rem);
    border-radius: calc(var(--radius) * 1.4);
    box-shadow: var(--shadow);
  }
}

@media (min-width: 64rem) {
  .header-bar {
    gap: 1.25rem;
  }

  .site-brand {
    flex: 0 1 auto;
    max-width: 18rem;
  }

  .header-nav {
    display: block;
    flex: 1 1 auto;
  }

  .header-nav .nav-list a {
    white-space: nowrap;
  }

  .header-nav .menu-item-has-children {
    position: relative;
  }

  .header-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    min-width: 12rem;
    padding: 0.4rem;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .header-nav .sub-menu a {
    width: 100%;
    white-space: normal;
  }

  .header-nav .menu-item-has-children:hover > .sub-menu,
  .header-nav .menu-item-has-children:focus-within > .sub-menu {
    display: grid;
    gap: 0.15rem;
  }

  .header-search {
    display: inline-flex;
  }

  .header-burger {
    display: none;
  }

  .lightbox-nav {
    display: none;
  }
}

.breadcrumbs {
  margin: 0 0 1.15rem;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.breadcrumbs-item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  color: var(--color-muted);
}

.breadcrumbs-item:not(:last-child)::after {
  content: "/";
  margin: 0 0.45rem;
  color: var(--color-line);
}

.breadcrumbs-item a,
.breadcrumbs-item span {
  min-width: 0;
  max-width: 11rem;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumbs-item a:hover,
.breadcrumbs-item a:focus-visible {
  color: var(--color-accent-hover);
}

.breadcrumbs-item:last-child span {
  color: var(--color-brand);
  font-weight: 600;
}

.cover {
  margin: 0 0 1.5rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-surface);
}

.cover-image {
  display: block;
  width: 100%;
  max-height: min(28rem, 70vw);
  object-fit: cover;
}

.entry-header {
  margin-bottom: 1.25rem;
}

.entry-title {
  margin: 0;
}

.page-content {
  min-width: 0;
  overflow-x: auto;
}

.page-content > *:first-child {
  margin-top: 0;
}

.page-content > *:last-child {
  margin-bottom: 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  margin: 1.35em 0 0.55em;
}

.page-content p {
  margin: 0 0 1em;
}

.page-content a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1em;
  padding-left: 1.25rem;
}

.page-content li {
  margin: 0 0 0.35em;
}

.page-content li > ul,
.page-content li > ol {
  margin: 0.35em 0 0;
}

.page-content blockquote {
  margin: 0 0 1em;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--color-muted);
}

.page-content table {
  width: 100%;
  min-width: 32rem;
  margin: 0 0 1em;
  border-collapse: collapse;
  background: var(--color-surface);
}

.page-content thead {
  background: rgba(23, 50, 77, 0.06);
}

.page-content th,
.page-content td {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

.page-content th {
  color: var(--color-brand);
  font-weight: 600;
}

.page-content img,
.page-content figure,
.page-content .wp-caption {
  max-width: 100%;
  height: auto;
}

.page-content figure,
.page-content .wp-caption {
  margin: 0 0 1em;
}

.page-content figcaption,
.page-content .wp-caption-text {
  margin-top: 0.45rem;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.page-content .alignnone,
.page-content .aligncenter,
.page-content .alignleft,
.page-content .alignright {
  max-width: 100%;
  height: auto;
}

.page-content .aligncenter {
  display: block;
  margin: 0 auto 1em;
}

.page-content .alignleft,
.page-content .alignright {
  display: block;
  float: none;
  margin: 0 0 1em;
}

.page-content hr {
  height: 1px;
  margin: 1.5em 0;
  border: 0;
  background: var(--color-line);
}

.page-content pre,
.page-content code {
  overflow-x: auto;
  font-size: 0.9em;
}

.page-content pre {
  margin: 0 0 1em;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--color-surface);
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--color-surface);
  text-decoration: none;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-line);
  background: var(--color-surface);
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 4rem;
  padding-block: 1rem;
}

.footer-copy {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.875rem;
}

@media (min-width: 48rem) {
  .breadcrumbs-item a,
  .breadcrumbs-item span {
    max-width: 18rem;
  }

  .page-content .alignleft {
    float: left;
    margin: 0 1.1rem 1rem 0;
  }

  .page-content .alignright {
    float: right;
    margin: 0 0 1rem 1.1rem;
  }
}

.archive-header {
  margin-bottom: 2rem;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.author-avatar img {
  display: block;
  border-radius: 999px;
}

.author-info h2 {
  margin: 0 0 0.25em;
  font-size: var(--h4);
}

.author-info p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.archive-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-image-link {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-line);
}

.card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.card-image-link:hover img {
  transform: scale(1.03);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-meta {
  margin-bottom: 0.5rem;
  color: var(--color-muted);
  font-size: 0.8125rem;
}

.card-title {
  margin: 0 0 0.5rem;
  font-size: var(--h4);
  line-height: 1.25;
}

.card-title a {
  color: var(--color-brand);
  text-decoration: none;
}

.card-title a:hover {
  color: var(--color-accent-hover);
}

.card-excerpt {
  flex: 1 1 auto;
  margin-bottom: 1.25rem;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.card-excerpt p {
  margin: 0;
}

.card-footer {
  margin-top: auto;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  color: var(--color-brand);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-ink);
}

/* Layout Essentials */
.front-container {
  width: var(--container);
  margin-inline: auto;
}

.front-section {
  padding: 3.5rem 0;
}

.front-section--alt {
  background: var(--color-surface, rgba(255, 255, 255, 0.02));
}

.front-section--outro {
  text-align: center;
}

/* Hero */
.front-hero {
  padding: 4rem 0 3rem;
}

.front-hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .front-hero__container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.front-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-brand, #fff);
}

.front-hero__text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.front-hero__img,
.front-media__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius, 12px);
  border: 1px solid var(--color-line, rgba(255, 255, 255, 0.1));
  display: block;
}

/* Grids */
.front-grid--2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .front-grid--2col {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Buttons & CTA */
.front-cta {
  margin-top: 2rem;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-accent, #f7931a);
  color: var(--color-ink, #000);
}

.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--large {
  padding: 1.125rem 2.25rem;
  font-size: 1.25rem;
}

/* Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: var(--radius, 8px);
  border: 1px solid var(--color-line, rgba(255, 255, 255, 0.1));
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 500px;
}

.data-table th,
.data-table td {
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid var(--color-line, rgba(255, 255, 255, 0.1));
}

.data-table th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

/* FAQ & Lists */
.front-list {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.front-list li {
  margin-bottom: 0.75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.faq-item__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.front-text--highlight {
  font-weight: 700;
  margin-top: 1rem;
}

.front-outro__text {
  font-size: 1.25rem;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Post Card */
.post-card {
  background: var(--color-surface, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--color-line, rgba(255, 255, 255, 0.1));
  border-radius: var(--radius, 12px);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent, #f7931a);
}

.post-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.post-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-accent, #f7931a);
}

.post-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card__title {
  font-size: 1.125rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: var(--color-brand, #fff);
}

.post-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* FAQ Section Frontend Styles */
.faq-section {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--color-surface, rgba(255, 255, 255, 0.02));
  border: 1px solid var(--color-line, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
}

.faq-section__main-title {
  font-size: 1.75rem;
  margin-top: 0!important;
  margin-bottom: 2rem!important;
  color: var(--color-brand, #fff);
}

.faq-section__list {
  display: flex;
  flex-direction: column;
}

/* Стилизуем автоматически H3 (вопросы) */
.faq-section__list h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--color-accent, #f7931a);
  margin: 1.5rem 0 0.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line, rgba(255, 255, 255, 0.08));
}

.faq-section__list h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Стилизуем ответы */
.faq-section__list p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0 0 1rem 0;
}

/* 404 Page */
.error-404 {
  padding: 4rem 0;
}

.error-404__card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-surface, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--color-line, rgba(255, 255, 255, 0.1));
  border-radius: var(--radius, 12px);
}

.error-404__badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent, #f7931a);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.error-404__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-brand, #fff);
  margin-bottom: 1rem;
}

.error-404__text {
  font-size: 1.125rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.error-404__search {
  margin-bottom: 2rem;
}

/* Search Header & Results */
.search-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-line, rgba(255, 255, 255, 0.1));
}

.search-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-brand, #fff);
  margin-bottom: 0.5rem;
}

.search-title__query {
  color: var(--color-accent, #f7931a);
}

.search-count {
  font-size: 1rem;
  opacity: 0.7;
}

.search-no-results {
  max-width: 500px;
  margin: 2rem auto;
  text-align: center;
}

.search-no-results__text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

/* WordPress Native Search Form Styling */
.search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.search-form label {
  flex-grow: 1;
}

.search-form .search-field {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-line, rgba(255, 255, 255, 0.15));
  border-radius: var(--radius, 8px);
  color: #fff;
  font-size: 1rem;
}

.search-form .search-field:focus {
  outline: none;
  border-color: var(--color-accent, #f7931a);
}

.search-form .search-submit {
  padding: 0.75rem 1.25rem;
  background: var(--color-accent, #f7931a);
  color: var(--color-ink, #000);
  border: none;
  border-radius: var(--radius, 8px);
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.search-form .search-submit:hover {
  opacity: 0.9;
}

/* Pagination Styling */
.posts-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.posts-pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.posts-pagination a,
.posts-pagination span {
  padding: 0.5rem 1rem;
  border-radius: var(--radius, 6px);
  border: 1px solid var(--color-line, rgba(255, 255, 255, 0.1));
  background: var(--color-surface, rgba(255, 255, 255, 0.03));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.posts-pagination span.current {
  background: var(--color-accent, #f7931a);
  color: #000;
  border-color: var(--color-accent, #f7931a);
}

.posts-pagination a:hover {
  border-color: var(--color-accent, #f7931a);
}

:root {
  --bg-footer: #0d1117;
  --border-footer: #30363d;
  --text-main: #e6edf3;
  --text-muted: #8b949e;
  --accent-color: #f7931a;
  --accent-danger: #ff5252;
}

.site-footer {
  background-color: var(--bg-footer);
  color: var(--text-muted);
  padding: 40px 20px 24px 20px;
  font-family: system-ui, -apple-system, sans-serif;
  border-top: 1px solid var(--border-footer);
}

.footer-container {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Top Row */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.footer-tagline {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-color);
}

/* Dividers */
.footer-divider {
  height: 1px;
  background-color: var(--border-footer);
  width: 100%;
  opacity: 0.6;
}

/* Middle Row */
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-compliance {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
}

.age-badge {
  background: rgba(255, 82, 82, 0.15);
  color: var(--accent-danger);
  border: 1px solid rgba(255, 82, 82, 0.3);
  font-weight: 800;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.compliance-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted);
}

.footer-partners {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-item {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border-footer);
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bottom Row */
.footer-bottom {
  text-align: center;
}

.copyright-text {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-top, 
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-nav {
    gap: 16px;
  }
  
  .footer-partners {
    justify-content: flex-start;
  }
}

.post-card--archive {
    background: linear-gradient(135deg, #f7931a, #ffb347);
    border-radius: 20px;
    overflow: hidden;
}

.post-card--archive .post-card__archive-link {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 320px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.post-card__archive-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.post-card__archive-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
}

.post-card__archive-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}

.post-card__archive-arrow {
    margin-top: 20px;
    font-size: 32px;
    line-height: 1;
    transition: transform .25s ease;
}

.post-card--archive:hover .post-card__archive-arrow {
    transform: translateX(7px);
}

:root {
  --bg-card: #161b22;
  --bg-card-hover: #1c2128;
  --border-card: #30363d;
  --text-main: #e6edf3;
  --text-muted: #8b949e;
  --accent-gold: #f7931a;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.advantage-card:hover {
  transform: translateX(4px);
  background: var(--bg-card-hover);
  border-color: rgba(247, 147, 26, 0.4);
}

.advantage-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.advantage-icon {
  font-size: 20px;
  line-height: 1;
  background: rgba(247, 147, 26, 0.1);
  color: var(--accent-gold);
  padding: 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.advantage-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

.advantage-text {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 44px;
}

@media (max-width: 600px) {
  .advantage-card {
    padding: 16px;
  }
  
  .advantage-text {
    padding-left: 0;
  }
}

.bonus-types-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  font-family: system-ui, -apple-system, sans-serif;
  box-sizing: border-box;
  margin-bottom: 35px;
}

.bonus-type-card {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.bonus-type-card:hover {
  transform: translateX(4px);
  background: #1c2128;
  border-color: rgba(247, 147, 26, 0.4);
}

.bonus-type-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bonus-type-icon {
  font-size: 20px;
  line-height: 1;
  background: rgba(247, 147, 26, 0.1);
  color: #f7931a;
  padding: 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bonus-type-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #e6edf3;
}

.bonus-type-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 44px;
}

.bonus-type-row {
  display: flex;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.bonus-type-label {
  color: #f7931a;
  font-weight: 600;
  white-space: nowrap;
}

.bonus-type-value {
  color: #8b949e;
}

@media (max-width: 600px) {
  .bonus-type-card {
    padding: 16px;
  }
  
  .bonus-type-body {
    padding-left: 0;
  }

  .bonus-type-row {
    flex-direction: column;
    gap: 2px;
  }
}



