:root {
  --bg-main: #0b0e14;
  --bg-surface: #121722;
  --bg-card: #182030;
  --bg-card-hover: #202b40;
  --bg-accent: #283652;
  --primary: #00f0ff;
  --primary-hover: #00c8d6;
  --primary-glow: rgba(0, 240, 255, 0.25);
  --secondary: #7000ff;
  --secondary-hover: #5900cc;
  --accent-green: #00e676;
  --accent-gold: #ffb300;
  --accent-red: #ff3366;
  --text-main: #f0f4f8;
  --text-muted: #8a99ad;
  --text-dark: #070a0f;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-active: rgba(0, 240, 255, 0.4);
  --font-main: 'Commissioner', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Orbitron', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fz-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --fz-sm: clamp(0.84rem, 0.8rem + 0.3vw, 0.9375rem);
  --fz-base: clamp(0.95rem, 0.9rem + 0.35vw, 1.0625rem);
  --fz-md: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --fz-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --fz-xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --fz-2xl: clamp(1.85rem, 1.5rem + 1.5vw, 2.375rem);
  --fz-3xl: clamp(2.25rem, 1.8rem + 2vw, 3rem);
  --fz-4xl: clamp(2.75rem, 2.1rem + 2.8vw, 3.75rem);
  --space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --space-sm: clamp(0.5rem, 0.4rem + 0.5vw, 0.875rem);
  --space-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --space-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --space-xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --space-2xl: clamp(3rem, 2.2rem + 4vw, 5rem);
  --container-max: 1440px;
  --container-narrow: 960px;
  --container-padding: clamp(1rem, 4vw, 2.5rem);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px var(--primary-glow);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --z-back: -1;
  --z-normal: 1;
  --z-dropdown: 100;
  --z-header: 500;
  --z-overlay: 900;
  --z-modal: 1000;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  background-color: var(--bg-main);
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: var(--fz-base);
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe,
embed,
object {
  max-width: 100%;
  border: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

th,
td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

th {
  font-family: var(--font-heading);
  font-size: var(--fz-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background-color: var(--bg-surface);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-main);
  overflow-wrap: break-word;
}

h1 {
  font-size: var(--fz-4xl);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--fz-3xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--fz-2xl);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--fz-xl);
  margin-bottom: var(--space-sm);
}

h5 {
  font-size: var(--fz-lg);
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: var(--fz-md);
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-md);
  overflow-wrap: break-word;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

ul,
ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-xs);
}

blockquote {
  border-left: 4px solid var(--primary);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  background-color: var(--bg-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-muted);
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 0.9em;
}

pre {
  background-color: var(--bg-surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

hr {
  border: 0;
  height: 1px;
  background-color: var(--border-color);
  margin: var(--space-xl) 0;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: var(--text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.site-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.site-container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.site-container-full {
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.grid-system {
  display: grid;
  gap: var(--space-md);
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.grid-auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.flex-system {
  display: flex;
  gap: var(--space-md);
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alignwide {
  margin-left: -2rem;
  margin-right: -2rem;
  max-width: calc(100% + 4rem);
  width: auto;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: var(--space-md);
  margin-bottom: var(--space-md);
}

.alignright {
  float: right;
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.wp-caption {
  max-width: 100%;
  margin-bottom: var(--space-md);
}

.wp-caption-text {
  font-size: var(--fz-xs);
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-xs);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.screen-reader-text:focus {
  background-color: var(--bg-surface);
  clip: auto;
  clip-path: none;
  color: var(--primary);
  display: block;
  font-size: var(--fz-sm);
  height: auto;
  left: 5px;
  padding: var(--space-sm) var(--space-md);
  top: 5px;
  width: auto;
  z-index: 100000;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-accent {
  color: var(--primary);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.bg-surface {
  background-color: var(--bg-surface);
}

.bg-card {
  background-color: var(--bg-card);
}

.card-base {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.card-base:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-md);
}

.btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--fz-sm);
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--text-dark);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-main);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--text-main);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-dark);
}

@media (max-width: 1024px) {
  .alignwide {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .alignleft,
  .alignright {
    float: none;
    margin-left: 0;
    margin-right: 0;
  }

  .grid-system {
    gap: var(--space-sm);
  }
}

@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 {
    --header-bg: #0d0f19;
    --header-border: rgba(255, 255, 255, 0.08);
    --header-text: #ffffff;
    --header-hover: #00ff88;
    --btn-bg-start: #00e5ff;
    --btn-bg-end: #00ff88;
    --btn-text: #08090f;
    --overlay-bg: rgba(13, 15, 25, 0.96);
    --overlay-blur: 16px;
    --header-height: 80px;
}

body.overlay-open {
    overflow: hidden !important;
    touch-action: none;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    z-index: 1000;
    will-change: transform;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-branding {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    line-height: 0;
}

.site-logo {
    width: auto;
    height: 48px;
    max-width: 180px;
    object-fit: contain;
    aspect-ratio: 240 / 80;
}

.desktop-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav-menu-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
}

.nav-menu-list > li {
    flex-shrink: 0;
}

.nav-menu-list a {
    color: var(--header-text);
    text-decoration: none;
    font-family: 'Commissioner', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.nav-menu-list a:hover,
.nav-menu-list a:focus-visible {
    color: var(--header-hover);
}

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

.search-trigger-btn,
.burger-trigger-btn,
.overlay-close-btn {
    background: transparent;
    border: none;
    color: var(--header-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.search-trigger-btn:hover,
.burger-trigger-btn:hover,
.overlay-close-btn:hover {
    color: var(--header-hover);
    background-color: rgba(255, 255, 255, 0.05);
}

.burger-trigger-btn {
    display: none;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--btn-bg-start), var(--btn-bg-end));
    color: var(--btn-text);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

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

.fullscreen-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-overlay.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.overlay-backdrop {
    position: absolute;
    inset: 0;
    background-color: var(--overlay-bg);
    backdrop-filter: blur(var(--overlay-blur));
    -webkit-backdrop-filter: blur(var(--overlay-blur));
}

.overlay-panel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.overlay-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10;
}

.overlay-scroll-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 80px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.overlay-section {
    width: 100%;
}

.fullscreen-overlay[data-mode="search"] .menu-section,
.fullscreen-overlay[data-mode="search"] .action-section {
    display: none;
}

.fullscreen-overlay[data-mode="menu"] .search-section {
    margin-bottom: 10px;
}

.overlay-search-form {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 6px 6px 6px 16px;
}

.search-input-wrapper:focus-within {
    border-color: var(--header-hover);
}

.icon-search-input {
    color: rgba(255, 255, 255, 0.5);
    margin-right: 12px;
    flex-shrink: 0;
}

.overlay-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'Commissioner', sans-serif;
    font-size: 18px;
    width: 100%;
}

.overlay-search-submit {
    background: linear-gradient(135deg, var(--btn-bg-start), var(--btn-bg-end));
    border: none;
    color: var(--btn-text);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-navigation {
    width: 100%;
}

.mobile-nav-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.mobile-nav-menu-list a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Commissioner', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    word-break: break-word;
    display: inline-block;
}

.btn-login-mobile {
    width: 100%;
    padding: 16px;
    font-size: 15px;
}

@media screen and (max-width: 1024px) {
    .desktop-navigation {
        display: none;
    }

    .burger-trigger-btn {
        display: inline-flex;
    }

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

@media screen and (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }

    .site-logo {
        height: 38px;
        max-width: 140px;
    }

    .overlay-scroll-container {
        padding: 70px 16px 30px;
    }

    .overlay-search-input {
        font-size: 15px;
    }

    .overlay-search-submit {
        padding: 10px 14px;
        font-size: 12px;
    }
}

.site-footer {
  background-color: var(--footer-bg, #0b0e14);
  color: var(--footer-text, #94a3b8);
  border-top: 1px solid var(--footer-border, #1e293b);
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem 1.5rem;
  box-sizing: border-box;
  width: 100%;
}

.footer-responsible-gambling {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background-color: var(--rg-bg, #151c28);
  border: 1px solid var(--rg-border, #243044);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #ef4444;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
  line-height: 1;
}

.gambling-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--rg-text, #cbd5e1);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.footer-col {
  min-width: 0;
}

.footer-heading {
  color: var(--footer-heading, #ffffff);
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  letter-spacing: 0.015em;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  color: var(--footer-link-color, #94a3b8);
  text-decoration: none;
  display: inline-block;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  line-height: 1.4;
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.footer-links a:hover {
  color: var(--footer-link-hover, #38bdf8);
}

.footer-links a:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
  border-radius: 2px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--footer-border, #1e293b);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.footer-brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--footer-heading, #ffffff);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--footer-copy-color, #64748b);
}

@media (prefers-reduced-motion: reduce) {
  .footer-links a {
    transition: none;
  }
}

.page-main {
  width: 100%;
  padding: 2rem 0 4rem;
  box-sizing: border-box;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.page-breadcrumbs-wrapper {
  margin-bottom: 1.5rem;
}

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

.page-title {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color, #ffffff);
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.page-featured-media {
  margin-bottom: 2.5rem;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color, #1e293b);
  background-color: var(--card-bg, #0f172a);
}

.page-featured-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.page-content {
  color: var(--text-color, #cbd5e1);
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.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,
.page-content h5,
.page-content h6 {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  color: var(--heading-color, #ffffff);
  font-weight: 600;
  line-height: 1.3;
  margin: 2.25rem 0 1rem;
}

.page-content h1 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
.page-content h2 { font-size: clamp(1.35rem, 3vw, 1.875rem); }
.page-content h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
.page-content h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
.page-content h5 { font-size: 1.1rem; }
.page-content h6 { font-size: 1rem; }

.page-content p {
  margin: 0 0 1.5rem;
}

.page-content a {
  color: var(--link-color, #38bdf8);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.page-content a:hover {
  color: var(--link-hover-color, #7dd3fc);
}

.page-content a:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
  border-radius: 2px;
}

.page-content strong,
.page-content b {
  color: var(--heading-color, #ffffff);
  font-weight: 600;
}

.page-content em,
.page-content i {
  font-style: italic;
}

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

.page-content li {
  margin-bottom: 0.5rem;
}

.page-content li > ul,
.page-content li > ol {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.page-content blockquote,
.page-content .wp-block-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background-color: var(--quote-bg, #151c28);
  border-left: 4px solid var(--accent-color, #38bdf8);
  border-radius: 0 8px 8px 0;
}

.page-content blockquote p,
.page-content .wp-block-quote p {
  margin: 0;
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--heading-color, #f1f5f9);
}

.page-content blockquote cite,
.page-content .wp-block-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--text-muted, #94a3b8);
}

.page-content table,
.page-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9375rem;
  text-align: left;
}

.page-content .wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
}

.page-content th,
.page-content td {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color, #1e293b);
}

.page-content th {
  background-color: var(--table-header-bg, #1e293b);
  color: var(--heading-color, #ffffff);
  font-weight: 600;
}

.page-content tr:nth-child(even) {
  background-color: var(--table-row-alt, #0f172a);
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-content figure,
.page-content .wp-block-image {
  margin: 2rem 0;
  max-width: 100%;
}

.page-content figcaption,
.page-content .wp-element-caption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted, #94a3b8);
  text-align: center;
}

.page-content iframe,
.page-content video,
.page-content .wp-block-embed {
  max-width: 100%;
  border: 0;
  border-radius: 8px;
}

.page-content iframe,
.page-content video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.page-content pre,
.page-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.page-content pre {
  background-color: var(--code-bg, #0b0e14);
  border: 1px solid var(--border-color, #1e293b);
  padding: 1.25rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
  font-size: 0.875rem;
  color: #e2e8f0;
}

.page-content code {
  background-color: var(--code-inline-bg, #1e293b);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.875em;
}

.page-content pre code {
  background-color: transparent;
  padding: 0;
  font-size: inherit;
}

.page-content .wp-block-button__link {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.page-links {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color, #1e293b);
}

.single-main {
  width: 100%;
  padding: 2rem 0 4rem;
  box-sizing: border-box;
}

.single-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.single-breadcrumbs-wrapper {
  margin-bottom: 1.5rem;
}

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

.single-title {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--heading-color, #ffffff);
  margin: 0 0 1rem 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted, #94a3b8);
}

.single-meta .meta-item {
  display: inline-flex;
  align-items: center;
}

.single-meta a {
  color: var(--text-muted, #94a3b8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.single-meta a:hover {
  color: var(--link-color, #38bdf8);
}

.single-meta a:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
  border-radius: 2px;
}

.single-meta .meta-category a {
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  color: var(--link-color, #38bdf8);
  font-size: 0.8125rem;
}

.single-featured-media {
  margin-bottom: 2.5rem;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color, #1e293b);
  background-color: var(--card-bg, #0f172a);
}

.single-featured-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 520px;
}

.single-content {
  color: var(--text-color, #cbd5e1);
  font-size: 1.0625rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

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

.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  color: var(--heading-color, #ffffff);
  font-weight: 600;
  line-height: 1.3;
  margin: 2.25rem 0 1rem 0;
}

.single-content h1 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
.single-content h2 { font-size: clamp(1.35rem, 3vw, 1.875rem); }
.single-content h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
.single-content h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
.single-content h5 { font-size: 1.1rem; }
.single-content h6 { font-size: 1rem; }

.single-content p {
  margin: 0 0 1.5rem 0;
}

.single-content a {
  color: var(--link-color, #38bdf8);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.single-content a:hover {
  color: var(--link-hover-color, #7dd3fc);
}

.single-content a:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
  border-radius: 2px;
}

.single-content strong,
.single-content b {
  color: var(--heading-color, #ffffff);
  font-weight: 600;
}

.single-content em,
.single-content i {
  font-style: italic;
}

.single-content ul,
.single-content ol {
  margin: 0 0 1.5rem 1.25rem;
  padding: 0;
}

.single-content li {
  margin-bottom: 0.5rem;
}

.single-content li > ul,
.single-content li > ol {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.single-content blockquote,
.single-content .wp-block-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background-color: var(--quote-bg, #151c28);
  border-left: 4px solid var(--accent-color, #38bdf8);
  border-radius: 0 8px 8px 0;
}

.single-content blockquote p,
.single-content .wp-block-quote p {
  margin: 0;
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--heading-color, #f1f5f9);
}

.single-content blockquote cite,
.single-content .wp-block-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--text-muted, #94a3b8);
}

.single-content table,
.single-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9375rem;
  text-align: left;
}

.single-content .wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
}

.single-content th,
.single-content td {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color, #1e293b);
}

.single-content th {
  background-color: var(--table-header-bg, #1e293b);
  color: var(--heading-color, #ffffff);
  font-weight: 600;
}

.single-content tr:nth-child(even) {
  background-color: var(--table-row-alt, #0f172a);
}

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.single-content figure,
.single-content .wp-block-image {
  margin: 2rem 0;
  max-width: 100%;
}

.single-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.single-content .alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.single-content .alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .single-content .alignleft,
  .single-content .alignright {
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.single-content figcaption,
.single-content .wp-element-caption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted, #94a3b8);
  text-align: center;
}

.single-content iframe,
.single-content video,
.single-content audio,
.single-content .wp-block-embed {
  max-width: 100%;
  border: 0;
  border-radius: 8px;
}

.single-content iframe,
.single-content video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.single-content hr,
.single-content .wp-block-separator {
  border: 0;
  height: 1px;
  background-color: var(--border-color, #1e293b);
  margin: 2.5rem 0;
}

.single-content pre,
.single-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.single-content pre {
  background-color: var(--code-bg, #0b0e14);
  border: 1px solid var(--border-color, #1e293b);
  padding: 1.25rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
  font-size: 0.875rem;
  color: #e2e8f0;
}

.single-content code {
  background-color: var(--code-inline-bg, #1e293b);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.875em;
}

.single-content pre code {
  background-color: transparent;
  padding: 0;
  font-size: inherit;
}

.single-content .wp-block-button__link {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .single-meta a,
  .single-content a {
    transition: none;
  }
}

.metabet-breadcrumbs {
  width: 100%;
  margin-bottom: 1.5rem;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-muted, #94a3b8);
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin: 0 0.5rem;
  color: var(--border-color, #475569);
  font-size: 0.8125rem;
}

.breadcrumb-item a {
  color: var(--text-muted, #94a3b8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--link-color, #38bdf8);
}

.breadcrumb-item.active {
  color: var(--heading-color, #f1f5f9);
  font-weight: 500;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .breadcrumb-item.active {
    max-width: 180px;
  }
}

.archive-main {
  width: 100%;
  padding: 2rem 0 4rem;
  box-sizing: border-box;
}

.archive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.archive-breadcrumbs-wrapper {
  margin-bottom: 1.5rem;
}

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

.archive-title {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--heading-color, #ffffff);
  margin: 0 0 0.75rem 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.archive-description {
  color: var(--text-muted, #94a3b8);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.archive-results {
  position: relative;
  transition: opacity 0.25s ease;
}

.archive-results.is-loading {
  opacity: 0.4;
  pointer-events: none;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

@media (max-width: 360px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

.archive-card {
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.archive-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover, #334155);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.card-media-link {
  display: block;
  text-decoration: none;
  outline: none;
}

.card-media {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background-color: var(--media-bg, #1e293b);
  position: relative;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.archive-card:hover .card-image {
  transform: scale(1.04);
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-weight: 700;
  color: var(--text-muted, #475569);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

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

.card-category {
  margin-bottom: 0.5rem;
}

.card-category a {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--link-color, #38bdf8);
  text-decoration: none;
  background-color: rgba(56, 189, 248, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
}

.card-category a:hover {
  background-color: rgba(56, 189, 248, 0.2);
}

.card-title {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.5rem 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.card-title a {
  color: var(--heading-color, #ffffff);
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: var(--link-color, #38bdf8);
}

.card-title a:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
  border-radius: 2px;
}

.card-meta {
  font-size: 0.8125rem;
  color: var(--text-muted, #94a3b8);
  margin-bottom: 0.75rem;
}

.card-excerpt {
  font-size: 0.875rem;
  color: var(--text-color, #cbd5e1);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.card-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--link-color, #38bdf8);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
  transition: color 0.2s ease;
}

.card-read-more:hover {
  color: var(--link-hover-color, #7dd3fc);
}

.archive-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.archive-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.archive-pagination li {
  margin: 0 !important;
  padding: 0 !important;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border-radius: 6px;
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  color: var(--text-color, #cbd5e1);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.archive-pagination a.page-numbers:hover {
  background-color: var(--border-color, #1e293b);
  color: var(--heading-color, #ffffff);
  border-color: var(--border-hover, #334155);
}

.archive-pagination .page-numbers.current {
  background-color: var(--link-color, #38bdf8);
  color: #000000;
  border-color: var(--link-color, #38bdf8);
}

.archive-pagination .page-numbers.dots {
  background-color: transparent;
  border-color: transparent;
}

.archive-pagination .page-numbers:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}

.archive-no-results {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted, #94a3b8);
}

@media (prefers-reduced-motion: reduce) {
  .archive-card,
  .card-image,
  .card-title a,
  .archive-results,
  .archive-pagination .page-numbers {
    transition: none;
  }
}

.author-main {
  width: 100%;
  padding: 2rem 0 4rem;
  box-sizing: border-box;
}

.author-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.author-breadcrumbs-wrapper {
  margin-bottom: 1.5rem;
}

.author-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .author-box {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 2.5rem;
  }
}

.author-box-avatar {
  flex-shrink: 0;
}

.author-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--link-color, #38bdf8);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

@media (min-width: 640px) {
  .author-avatar-img {
    width: 120px;
    height: 120px;
  }
}

.author-box-content {
  flex-grow: 1;
  min-width: 0;
}

.author-box-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .author-box-header {
    justify-content: flex-start;
  }
}

.author-box-name {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color, #ffffff);
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.author-box-badge {
  background-color: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--link-color, #38bdf8);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.author-box-bio {
  color: var(--text-color, #cbd5e1);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.author-box-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .author-box-links {
    justify-content: flex-start;
  }
}

.author-website-link {
  color: var(--link-color, #38bdf8);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.author-website-link:hover {
  color: var(--link-hover-color, #7dd3fc);
  text-decoration: underline;
}

.author-posts-title {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--heading-color, #ffffff);
  margin: 0 0 1.5rem 0;
}

.front-page-main {
  width: 100%;
  overflow-x: hidden;
}

.front-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

.hero-section {
  position: relative;
  background-color: #080b11;
  padding: 3rem 1rem 4rem;
  border-bottom: 1px solid var(--border-color, #1e293b);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}

.hero-title {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 1.25rem 0;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-lead {
  color: var(--text-color, #cbd5e1);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-lead p {
  margin: 0 0 0.875rem 0;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
  list-style: none !important;
  margin: 0 0 2rem 0 !important;
  padding: 0 !important;
}

@media (max-width: 480px) {
  .hero-features-list {
    grid-template-columns: 1fr;
  }
}

.hero-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background-color: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color, #1e293b);
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-media {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(56, 189, 248, 0.15);
  background-color: #0f172a;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-sizing: border-box;
  text-align: center;
}

.btn-large {
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
}

@media (max-width: 480px) {
  .btn-large {
    width: 100%;
    padding: 1rem;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary {
  background-color: rgba(30, 41, 59, 0.8);
  color: #ffffff;
  border: 1px solid var(--border-color, #334155);
}

.btn-secondary:hover {
  background-color: var(--border-color, #334155);
  color: var(--link-color, #38bdf8);
  border-color: var(--link-color, #38bdf8);
  transform: translateY(-2px);
}

.btn-glow {
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.4); }
  100% { box-shadow: 0 0 25px rgba(16, 185, 129, 0.8); }
}

.section-block {
  margin-top: 4rem;
}

.section-title {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  line-height: 1.25;
}

.section-intro {
  color: var(--text-color, #cbd5e1);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.section-intro p {
  margin: 0 0 1rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.4);
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.feature-card-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.feature-card p {
  color: var(--text-color, #cbd5e1);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.cta-banner-block {
  margin-top: 4rem;
}

.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 2.5rem 3rem;
  }
}

.cta-banner-title {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.cta-banner-text {
  color: var(--text-color, #cbd5e1);
  font-size: 0.9375rem;
  margin: 0;
}

.content-card {
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  border-radius: 16px;
  padding: 1.75rem;
  color: var(--text-color, #cbd5e1);
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .content-card {
    padding: 2.5rem;
  }
}

.content-card h3 {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #ffffff;
  margin: 2rem 0 1rem 0;
}

.content-card h3:first-child {
  margin-top: 0;
}

.content-card p {
  margin: 0 0 1.25rem 0;
}

.content-card a {
  color: var(--link-color, #38bdf8);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-card a:hover {
  color: var(--link-hover-color, #7dd3fc);
}

.bonus-card {
  background: linear-gradient(180deg, #0f172a 0%, #0b0e14 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .bonus-card {
    padding: 3rem;
  }
}

.bonus-badge {
  display: inline-block;
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.bonus-title {
  margin-bottom: 1.25rem;
}

.bonus-card p {
  color: var(--text-color, #cbd5e1);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.bonus-highlight-box {
  background-color: rgba(16, 185, 129, 0.05);
  border-left: 4px solid #10b981;
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
}

.bonus-highlight-box p {
  margin: 0;
}

.bonus-highlight-box strong {
  color: #ffffff;
}

.bonus-action {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 480px) {
  .bonus-action .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-glow {
    animation: none;
  }
  .feature-card, .btn {
    transition: none;
  }
}

.subsection-title {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 2rem 0 1rem 0;
}

.info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
}

.info-card {
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  border-radius: 12px;
  padding: 1.25rem;
  box-sizing: border-box;
}

.info-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.info-card-header strong {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  color: #ffffff;
  font-size: 1rem;
}

.info-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
}

.info-badge.green {
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.info-badge.blue {
  background-color: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-color, #cbd5e1);
}

.info-card-grid span {
  color: var(--text-muted, #94a3b8);
}

.info-card-grid strong {
  color: #ffffff;
}

.info-card-desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-color, #cbd5e1);
  line-height: 1.5;
}

.styled-list {
  padding-left: 1.25rem;
  margin: 1rem 0;
  color: var(--text-color, #cbd5e1);
}

.styled-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.card-cta-wrapper {
  margin-top: 1.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step-card {
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--link-color, #38bdf8);
  color: #000000;
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: 1.125rem;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.step-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-color, #cbd5e1);
  line-height: 1.5;
}

.margin-top-card {
  margin-top: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.faq-item {
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--link-color, #38bdf8);
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-color, #cbd5e1);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
}

.highlight-text {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.0625rem;
}

.final-actions {
  margin-top: 1.5rem;
  width: 100%;
}

.archive-metabet-header {
  margin-bottom: 3rem;
}

.metabet-info-card {
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  border-radius: 16px;
  padding: 1.75rem;
  color: var(--text-color, #cbd5e1);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 100%;
}

@media (min-width: 768px) {
  .metabet-info-card {
    padding: 2.5rem;
  }
}

.metabet-info-card h2 {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #ffffff;
  margin: 2rem 0 1rem 0;
  line-height: 1.3;
}

.metabet-info-card h2:first-of-type {
  margin-top: 1.5rem;
}

.metabet-info-card h3 {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--link-color, #38bdf8);
  margin: 1.5rem 0 0.5rem 0;
}

.metabet-info-card p {
  margin: 0 0 1.25rem 0;
}

.metabet-info-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 480px) {
  .metabet-info-actions .btn {
    width: 100%;
  }
}

.error-404-block {
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  border-radius: 16px;
  padding: 3rem 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .error-404-block {
    padding: 4rem 2.5rem;
  }
}

.error-code {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  color: var(--link-color, #38bdf8);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.error-title {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.error-description {
  color: var(--text-color, #cbd5e1);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1rem;
  line-height: 1.6;
}

.error-search-form,
.no-results-search-form {
  max-width: 480px;
  margin: 0 auto 2rem auto;
}

.error-actions {
  display: flex;
  justify-content: center;
}

.archive-title span {
  color: var(--link-color, #38bdf8);
}

.archive-subtitle {
  color: var(--text-muted, #94a3b8);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.archive-no-results {
  background-color: var(--card-bg, #0f172a);
  border: 1px solid var(--border-color, #1e293b);
  border-radius: 16px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--text-color, #cbd5e1);
}

.archive-no-results h2 {
  font-family: var(--font-heading, "Orbitron", sans-serif);
  color: #ffffff;
  margin-top: 0;
}

.logo-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
  font-family: var(--font-heading, "Orbitron", -apple-system, sans-serif);
  line-height: 1;
  user-select: none;
  transition: transform 0.2s ease;
}

.logo-text-link:hover {
  transform: translateY(-1px);
}

/* Основная часть "METABET" */
.logo-text-main {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(56, 189, 248, 0.2));
}

/* Бейджик "TV" */
.logo-text-badge {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0b1329;
  background: #38bdf8;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
  transition: all 0.25s ease;
}

.logo-text-link:hover .logo-text-badge {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.8);
}

/* Адаптив под мобилки */
@media (max-width: 576px) {
  .logo-text-main {
    font-size: 1.3rem;
  }
  .logo-text-badge {
    font-size: 0.75rem;
    padding: 0.15rem 0.35rem;
  }
}
