/*
 * Lizaro Casino Design System
 * Maximalist western noir: dark saloon atmosphere, leather frames, neon orange, gold, and cactus-green accents.
 */

:root {
    --background: #141210;
    --foreground: #F5EDE0;
    --card: #6B3410;
    --card-foreground: #F5EDE0;
    --popover: #1F1A16;
    --popover-foreground: #F5EDE0;
    --primary: #c94e00;
    --primary-foreground: #FFFFFF;
    --secondary: #6B3410;
    --secondary-foreground: #F5EDE0;
    --muted: #8B7355;
    --muted-foreground: #D8C39A;
    --accent: #FFD700;
    --accent-foreground: #141210;
    --success: #39FF88;
    --success-foreground: #102116;
    --destructive: #D93636;
    --destructive-foreground: #FFFFFF;
    --border: #8B7355;
    --input: #1F1A16;
    --ring: #FF7A1A;

    --font-display: "Rye", Georgia, serif;
    --font-body: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3.5rem;
    --space-3xl: 6rem;

    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --container: 1200px;
    --header-height: 72px;
    --shadow-glow: 0 0 28px rgba(255, 107, 0, 0.32);
    --shadow-card: 0 18px 45px rgba(0, 0, 0, 0.42);
    --gradient-gold: linear-gradient(135deg, #FFF2A3 0%, #FFD700 45%, #B87500 100%);
    --gradient-fire: linear-gradient(135deg, #FF8A1F 0%, #c94e00 55%, #FFD700 140%);
}

.dark {
    --background: #141210;
    --foreground: #F5EDE0;
    --card: #6B3410;
    --card-foreground: #F5EDE0;
    --popover: #1F1A16;
    --popover-foreground: #F5EDE0;
    --primary: #c94e00;
    --primary-foreground: #FFFFFF;
    --secondary: #6B3410;
    --secondary-foreground: #F5EDE0;
    --muted: #8B7355;
    --muted-foreground: #D8C39A;
    --accent: #FFD700;
    --accent-foreground: #141210;
    --success: #39FF88;
    --success-foreground: #102116;
    --destructive: #D93636;
    --destructive-foreground: #FFFFFF;
    --border: #8B7355;
    --input: #1F1A16;
    --ring: #FF7A1A;
}

/* ============================================
   RESET & OVERFLOW SAFETY - Stable layouts on all viewports
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: clip;
    background:
        radial-gradient(circle at top left, rgba(255, 107, 0, 0.16), transparent 36rem),
        radial-gradient(circle at 85% 15%, rgba(57, 255, 136, 0.08), transparent 28rem),
        var(--background);
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.6;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

img {
    display: block;
    border-radius: var(--radius-md);
}

[class*="grid"] > *,
[class*="flex"] > *,
.card,
.info-card,
.category-card {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
    white-space: pre;
}

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

p, li, td, th {
    overflow-wrap: break-word;
}

a {
    color: var(--accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
}

a[href^="http"],
a[href^="mailto"] {
    word-break: break-word;
}

input, textarea, select, button {
    font: inherit;
}

input, textarea, select {
    max-width: 100%;
    color: var(--foreground);
    background: var(--input);
    border: 1px solid var(--border);
}

section, .hero, .cta-banner {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY - Rye display headings and Outfit readable body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 var(--space-md);
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: 0.01em;
}

h1,
.h1 {
    font-size: clamp(2rem, calc(5vw + 0.5rem), 3.25rem);
}

h2,
.h2 {
    font-size: clamp(1.625rem, calc(3vw + 0.5rem), 2.375rem);
}

h3,
.h3 {
    font-size: clamp(1.375rem, calc(1.8vw + 0.6rem), 1.75rem);
}

h4,
.h4 {
    font-size: clamp(1.125rem, calc(1vw + 0.75rem), 1.375rem);
}

p {
    margin: 0 0 var(--space-lg);
    max-width: 72ch;
}

.lead {
    color: var(--muted-foreground);
    font-size: clamp(1.0625rem, calc(0.8vw + 0.9rem), 1.25rem);
}

.eyebrow {
    margin-bottom: var(--space-sm);
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gold-text,
.stat-number,
.bonus-amount {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: var(--font-display);
}

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

.skip-link {
    position: fixed;
    top: var(--space-sm);
    left: var(--space-sm);
    z-index: 2000;
    transform: translateY(-140%);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--accent-foreground);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

/* ============================================
   LAYOUT - Mobile-first containers, sections, grids
   ============================================ */
.container,
.section-inner,
.site-header__inner,
.site-footer__inner,
.site-footer__bottom {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

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

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

.two-column,
.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

.auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
    gap: var(--space-md);
}

/* ============================================
   HEADER & NAVIGATION - Sticky saloon bar with mobile drawer
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    background: rgba(20, 18, 16, 0.98);
    border-bottom: 1px solid rgba(139, 115, 85, 0.58);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: var(--space-md);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: var(--space-sm);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.15rem;
    text-decoration: none;
}

.site-brand__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 2px solid var(--accent);
    border-radius: 50% 50% 45% 45%;
    background: linear-gradient(145deg, #3A2013, #11100F);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 900;
    box-shadow: 0 0 18px rgba(255, 107, 0, 0.35);
}

.mobile-menu-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--popover);
    color: var(--foreground);
    cursor: pointer;
}

.mobile-menu-toggle__line {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transition: transform 300ms ease, opacity 300ms ease;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__line:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__line:nth-child(3) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__line:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: none;
    overflow-y: auto;
    padding: var(--space-xl);
    background: var(--background);
    border-top: 1px solid var(--border);
}

.primary-nav.is-open {
    display: block;
}

.primary-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--foreground);
    font-weight: 800;
    text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    border-color: var(--primary);
    background: rgba(232, 90, 0, 0.13);
    color: var(--accent);
}

.header-actions {
    display: none;
    align-items: center;
    gap: var(--space-sm);
}

/* ============================================
   BUTTONS & LINKS - High-contrast conversion elements
   ============================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.15rem;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: -50% auto -50% -40%;
    width: 38%;
    transform: skewX(-20deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
    transition: left 700ms ease;
}

.btn:hover::after,
.btn:focus-visible::after {
    left: 115%;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--primary {
    background: var(--gradient-fire);
    color: var(--primary-foreground);
    box-shadow: 0 8px 26px rgba(232, 90, 0, 0.36);
}

.btn--ghost {
    border-color: var(--border);
    background: rgba(31, 26, 22, 0.92);
    color: var(--foreground);
}

.btn--large {
    min-height: 52px;
    padding-inline: 1.5rem;
    font-size: 1.05rem;
}

.text-link {
    color: var(--accent);
    font-weight: 900;
}

/* ============================================
   CARDS & FRAMES - Weathered leather content containers
   ============================================ */
.card,
.info-card,
.leather-frame,
.category-card,
.callout-box,
.summary-box,
.stat-highlight,
.pull-quote,
.comparison-table,
.social-proof-card {
    border: 1px solid rgba(139, 115, 85, 0.82);
    background:
        linear-gradient(145deg, rgba(107, 52, 16, 0.92), rgba(31, 26, 22, 0.98)),
        var(--popover);
    box-shadow: var(--shadow-card);
}

.card,
.info-card,
.leather-frame {
    position: relative;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.leather-frame::before,
.leather-frame::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(20,18,16,0.6), 0 0 12px rgba(255, 215, 0, 0.45);
}

.leather-frame::before {
    top: 14px;
    left: 14px;
}

.leather-frame::after {
    right: 14px;
    bottom: 14px;
}

.card-featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-card), 0 0 28px rgba(255, 215, 0, 0.18);
}

/* ============================================
   HERO & SECTION PATTERNS - Cinematic page intros
   ============================================ */
.hero {
    position: relative;
    padding-block: var(--space-2xl);
    background:
        linear-gradient(100deg, rgba(20,18,16,0.98) 0%, rgba(20,18,16,0.84) 55%, rgba(107,52,16,0.35) 100%);
}

.hero__inner {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__media {
    position: relative;
    display: grid;
    place-items: center;
}

.hero__media img {
    width: min(100%, 460px);
    filter: drop-shadow(0 28px 35px rgba(0,0,0,0.62)) drop-shadow(0 0 24px rgba(255,107,0,0.26));
    animation: mascotFloat 5.5s ease-in-out infinite;
}

.hero__actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

/* ============================================
   COMPONENTS - Reusable macros used by content pages
   ============================================ */
.cta-banner {
    padding-block: var(--space-2xl);
}

.cta-banner__inner {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    padding: clamp(1.5rem, calc(4vw + 0.5rem), 4rem);
    text-align: center;
}

.cta-banner__inner p {
    margin-inline: auto;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.cta-banner__small {
    margin-top: var(--space-md);
    margin-bottom: 0;
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.category-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}

.category-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.category-card:hover,
.category-card:focus-within {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.category-card__media,
.category-card__icon {
    display: grid;
    place-items: center;
    min-height: 96px;
    margin-bottom: var(--space-md);
}

.category-card__media img {
    max-height: 170px;
    object-fit: contain;
}

.category-card__icon {
    color: var(--accent);
    font-size: 2.5rem;
}

.category-card p {
    color: var(--muted-foreground);
}

.category-card .text-link {
    margin-top: auto;
}

.faq-accordion {
    display: grid;
    gap: var(--space-sm);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(31, 26, 22, 0.94);
    transition: background 300ms ease, border-color 300ms ease;
}

.faq-item[open] {
    border-color: var(--primary);
    background: rgba(107, 52, 16, 0.82);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    min-height: 56px;
    padding: var(--space-md) var(--space-lg);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
}

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

.faq-item__content {
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-item__content p {
    margin-bottom: 0;
    color: var(--muted-foreground);
}

/* ============================================
   ENGAGEMENT & CRO PATTERNS - Citation-friendly visual breaks
   ============================================ */
.summary-box,
.callout-box,
.stat-highlight,
.pull-quote {
    margin-block: var(--space-xl);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.summary-box {
    border-left: 5px solid var(--success);
}

.summary-box h2,
.summary-box h3,
.callout-box h2,
.callout-box h3 {
    margin-bottom: var(--space-sm);
}

.summary-box ul,
.callout-box ul {
    margin: 0;
    padding-left: 1.25rem;
}

.callout-box {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(232,90,0,0.18), rgba(31,26,22,0.98));
}

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

.stat-number {
    display: block;
    font-size: clamp(2.75rem, calc(7vw + 0.5rem), 5rem);
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: var(--space-sm);
    color: var(--muted-foreground);
    font-weight: 800;
}

.pull-quote {
    border-left: 6px solid var(--accent);
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, calc(2vw + 0.8rem), 2rem);
    line-height: 1.35;
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    color: var(--muted-foreground);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: normal;
}

.trust-badges,
.license-badges,
.payment-list,
.social-proof-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.badge,
.trust-badge,
.payment-list li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(31, 26, 22, 0.95);
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 800;
}

.badge--trust {
    border-color: var(--success);
    color: var(--success);
}

.badge--warning {
    border-color: var(--accent);
    color: var(--accent);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(139, 115, 85, 0.45);
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    background: rgba(255, 215, 0, 0.12);
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 400;
}

.comparison-table .recommended,
.comparison-table [data-recommended="true"] {
    background: rgba(57, 255, 136, 0.09);
    box-shadow: inset 0 0 0 1px rgba(57, 255, 136, 0.28);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.social-proof-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

details:not(.faq-item) {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--popover);
}

details:not(.faq-item) summary {
    min-height: 48px;
    padding: var(--space-md);
    color: var(--accent);
    font-weight: 900;
    cursor: pointer;
}

details:not(.faq-item) > *:not(summary) {
    padding-inline: var(--space-md);
}

/* ============================================
   FOOTER - Links, payments, compliance
   ============================================ */
.site-footer {
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(139, 115, 85, 0.58);
    background: #100F0E;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
}

.site-footer h2 {
    font-size: 1.125rem;
}

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

.site-footer li + li {
    margin-top: var(--space-xs);
}

.site-footer a {
    color: var(--foreground);
    font-weight: 700;
}

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

.payment-list li {
    filter: grayscale(1);
}

.footer-overview-link {
    display: inline-flex;
    margin-top: var(--space-sm);
}

.site-footer__bottom {
    margin-top: var(--space-xl);
    padding-block: var(--space-lg);
    border-top: 1px solid rgba(139, 115, 85, 0.32);
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.site-footer__bottom p {
    margin: 0;
}

/* ============================================
   ANIMATIONS - Subtle reveal and mascot motion
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

:focus-visible {
    outline: 3px solid var(--ring);
    outline-offset: 3px;
}

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

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   RESPONSIVE ENHANCEMENTS - Tablet, desktop, wide screens
   ============================================ */
@media (min-width: 768px) {
    body {
        font-size: 17px;
    }

    .section,
    .section--large,
    .hero,
    .cta-banner {
        padding-block: var(--space-3xl);
    }

    .two-column,
    .split-layout,
    .hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

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

    .social-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        z-index: auto;
        display: block;
        overflow: visible;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: 0.25rem;
        overflow-x: auto;
    }

    .primary-nav a {
        min-height: 44px;
        white-space: nowrap;
    }

    .header-actions {
        display: flex;
    }

    .site-brand {
        font-size: 1.25rem;
    }

    .hero__media {
        margin-right: min(-4vw, -2rem);
    }

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

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

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

    .site-footer__inner {
        grid-template-columns: 1.25fr 0.75fr 1fr 1fr;
    }
}

@media (min-width: 1280px) {
    .hero__media {
        margin-right: -4rem;
    }
}

@media (max-width: 1023px) {
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

