/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-layout[b-pfdzywezsb] {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text-primary);
}

.admin-header[b-pfdzywezsb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px clamp(24px, 4vw, 48px);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.admin-header__brand[b-pfdzywezsb] {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--heading);
    text-decoration: none;
}

.admin-header__right[b-pfdzywezsb] {
    display: flex;
    gap: 24px;
    align-items: center;
}

.admin-header__link[b-pfdzywezsb] {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.admin-header__link:hover[b-pfdzywezsb] {
    color: var(--accent);
}

.admin-header__link--logout[b-pfdzywezsb] {
    color: var(--rust);
}

.admin-header__toggle[b-pfdzywezsb] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.admin-header__toggle:hover[b-pfdzywezsb] {
    transform: scale(1.1);
}

.admin-header__toggle svg[b-pfdzywezsb] {
    width: 18px;
    height: 18px;
}

.admin-main[b-pfdzywezsb] {
    padding: clamp(24px, 4vw, 48px);
    max-width: 1400px;
    margin: 0 auto;
}
/* /Components/Layout/GateLayout.razor.rz.scp.css */
.gate-layout[b-pjoee83gda] {
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    padding: clamp(32px, 6vw, 80px) clamp(20px, 4vw, 40px);
    position: relative;
    overflow: hidden;
}

.gate-branch--top[b-pjoee83gda] {
    top: -10%;
    left: -30%;
    width: 120%;
    transform: rotate(15deg);
}

.gate-branch--bottom[b-pjoee83gda] {
    bottom: -15%;
    right: -25%;
    width: 100%;
    transform: rotate(-20deg) scaleX(-1);
}

.gate-toggle[b-pjoee83gda] {
    position: fixed;
    top: 16px;
    right: clamp(20px, 4vw, 40px);
    z-index: 100;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.gate-toggle:hover[b-pjoee83gda] {
    transform: scale(1.1);
}

.gate-toggle svg[b-pjoee83gda] {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .gate-layout[b-pjoee83gda] {
        padding: 60px 16px 24px;
    }

    .gate-branch--top[b-pjoee83gda] {
        top: -5%;
        left: -15%;
        width: 130%;
        transform: rotate(10deg);
    }

    .gate-branch--bottom[b-pjoee83gda] {
        bottom: -5%;
        right: -15%;
        width: 130%;
        transform: rotate(-15deg) scaleX(-1);
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout - no wrapper needed */
/* /Components/Navigation/MobileMenu.razor.rz.scp.css */
.nav__mobile-overlay[b-mi0slgycc6] {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: background 0.3s ease;
}

.nav__mobile-overlay.active[b-mi0slgycc6] {
    display: flex;
}

.nav__mobile-overlay a[b-mi0slgycc6] {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 400;
    color: var(--heading);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav__mobile-overlay a:hover[b-mi0slgycc6] {
    color: var(--accent);
}
/* /Components/Navigation/SideNav.razor.rz.scp.css */
.side-nav[b-5lg9n3qhoq] {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.side-nav__dot[b-5lg9n3qhoq] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.side-nav__dot:hover[b-5lg9n3qhoq] {
    transform: scale(1.3);
}

.side-nav__dot.active[b-5lg9n3qhoq] {
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.side-nav__dot[b-5lg9n3qhoq]::before {
    content: attr(data-label);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.side-nav__dot:hover[b-5lg9n3qhoq]::before {
    opacity: 1;
}

@media (max-width: 1199px) {
    .side-nav[b-5lg9n3qhoq] { display: none; }
}
/* /Components/Navigation/TopNav.razor.rz.scp.css */
.nav[b-i14fyt5ie1] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    padding: 0 clamp(24px, 4vw, 60px);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled[b-i14fyt5ie1] {
    background: var(--nav-bg);
    box-shadow: 0 1px 12px var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav__logo[b-i14fyt5ie1] {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--heading);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__logo .fox-silhouette[b-i14fyt5ie1] {
    width: 18px;
    height: 18px;
    fill: var(--fox);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav__logo:hover .fox-silhouette[b-i14fyt5ie1] {
    opacity: 1;
}

.nav__logo .heart[b-i14fyt5ie1] {
    color: var(--accent);
    font-size: 14px;
}

.nav__right[b-i14fyt5ie1] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__links[b-i14fyt5ie1] {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    list-style: none;
}

.nav__link[b-i14fyt5ie1] {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link[b-i14fyt5ie1]::before {
    content: '';
    position: absolute;
    top: -30px;
    bottom: -30px;
    left: -8px;
    right: -8px;
}

.nav__link[b-i14fyt5ie1]::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav__link:hover[b-i14fyt5ie1] {
    color: var(--heading);
}

.nav__link:hover[b-i14fyt5ie1]::after {
    width: 100%;
}

.nav__toggle[b-i14fyt5ie1] {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
}

.nav__toggle[b-i14fyt5ie1]::before {
    content: '';
    position: absolute;
    top: -18px;
    bottom: -18px;
    left: -6px;
    right: -6px;
}

.nav__toggle:hover[b-i14fyt5ie1] {
    color: var(--accent);
    border-color: var(--accent);
}

.nav__toggle svg[b-i14fyt5ie1] {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav__hamburger[b-i14fyt5ie1] {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.nav__hamburger span[b-i14fyt5ie1] {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--heading);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.active span:nth-child(1)[b-i14fyt5ie1] {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav__hamburger.active span:nth-child(2)[b-i14fyt5ie1] {
    opacity: 0;
}

.nav__hamburger.active span:nth-child(3)[b-i14fyt5ie1] {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.star-mode-toggle[b-i14fyt5ie1] {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    height: 30px;
}

.star-mode-toggle__opt[b-i14fyt5ie1] {
    width: 30px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
    padding: 0;
}

.star-mode-toggle__opt:hover[b-i14fyt5ie1] {
    color: var(--heading);
}

.star-mode-toggle__opt.active[b-i14fyt5ie1] {
    background: var(--accent);
    color: var(--bg);
}

.star-mode-toggle__opt svg[b-i14fyt5ie1] {
    width: 14px;
    height: 14px;
}

.sim-panel[b-i14fyt5ie1] {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: rgba(28, 20, 16, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 80px 20px 20px;
    overflow-y: auto;
    border-left: 1px solid var(--border);
}

.sim-panel.open[b-i14fyt5ie1] {
    transform: translateX(0);
}

.sim-panel__header[b-i14fyt5ie1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.sim-panel__title[b-i14fyt5ie1] {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--heading);
    letter-spacing: 0.02em;
}

.sim-panel__close[b-i14fyt5ie1] {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.3s ease;
}

.sim-panel__close:hover[b-i14fyt5ie1] {
    color: var(--accent);
}

.sim-panel__mode[b-i14fyt5ie1] {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.sim-panel__group[b-i14fyt5ie1] {
    margin-bottom: 18px;
}

.sim-panel__label[b-i14fyt5ie1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.sim-panel__val[b-i14fyt5ie1] {
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.sim-panel__val--changed[b-i14fyt5ie1] {
    color: var(--heading);
}

.sim-panel__track[b-i14fyt5ie1] {
    position: relative;
    padding: 4px 0;
}

.sim-panel__tick[b-i14fyt5ie1] {
    position: absolute;
    top: 50%;
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
    background: var(--accent);
    opacity: 0.35;
    border-radius: 1px;
    pointer-events: none;
}

.sim-panel input[type="range"][b-i14fyt5ie1] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.sim-panel input[type="range"]:hover[b-i14fyt5ie1] {
    opacity: 1;
}

.sim-panel input[type="range"][b-i14fyt5ie1]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: none;
}

.sim-panel input[type="range"][b-i14fyt5ie1]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: none;
}

.sim-panel__reset[b-i14fyt5ie1] {
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.sim-panel__reset:hover[b-i14fyt5ie1] {
    color: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .nav__links[b-i14fyt5ie1] { display: none; }
    .nav__hamburger[b-i14fyt5ie1] { display: flex; }
}
/* /Components/Pages/Admin/AdminAnalytics.razor.rz.scp.css */
.analytics[b-fuhi9gr4c5] {
    margin: 56px 0 48px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.analytics__title[b-fuhi9gr4c5] {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 400;
    color: var(--heading);
    margin: 0 0 20px;
}

/* Charts grid */
.analytics__charts[b-fuhi9gr4c5] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.analytics__chart-wrap--wide[b-fuhi9gr4c5] {
    grid-column: 1 / -1;
}

.analytics__chart-wrap[b-fuhi9gr4c5] {
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.analytics__chart-title[b-fuhi9gr4c5] {
    margin: 0 0 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.analytics__chart[b-fuhi9gr4c5] {
    position: relative;
    height: 260px;
}

.analytics__chart--small[b-fuhi9gr4c5] {
    height: 200px;
}

@media (max-width: 800px) {
    .analytics__charts[b-fuhi9gr4c5] {
        grid-template-columns: 1fr;
    }
}

/* Simple key-value list (referrers, top paths) */
.analytics__list[b-fuhi9gr4c5] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.analytics__list-row[b-fuhi9gr4c5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
}

.analytics__list-label[b-fuhi9gr4c5] {
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70%;
}

.analytics__list-label code[b-fuhi9gr4c5] {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    color: var(--heading);
}

.analytics__list-count[b-fuhi9gr4c5] {
    font-weight: 600;
    color: var(--accent);
}

/* Funnel */
.analytics__funnel[b-fuhi9gr4c5] {
    margin-top: 28px;
    padding: 16px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
}

[b-fuhi9gr4c5] .funnel {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

[b-fuhi9gr4c5] .funnel__step {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

[b-fuhi9gr4c5] .funnel__bar {
    width: 100%;
    height: 14px;
    background: var(--bg-alt);
    border-radius: 7px;
    overflow: hidden;
}

[b-fuhi9gr4c5] .funnel__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--fox));
    border-radius: 7px;
    transition: width 0.6s ease;
}

[b-fuhi9gr4c5] .funnel__info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-primary);
}

[b-fuhi9gr4c5] .funnel__label {
    font-weight: 400;
}

[b-fuhi9gr4c5] .funnel__count {
    font-weight: 600;
    color: var(--heading);
}

[b-fuhi9gr4c5] .funnel__pct {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 13px;
}

.analytics__funnel-extra[b-fuhi9gr4c5] {
    margin: 12px 0 0;
    font-size: 13px;
    font-style: italic;
    color: var(--text-secondary);
}

.analytics__funnel-extra code[b-fuhi9gr4c5] {
    font-family: ui-monospace, monospace;
    font-size: 12px;
}

/* Photo upload guesses */
.analytics__photos[b-fuhi9gr4c5] {
    margin-top: 28px;
}

.analytics__hint[b-fuhi9gr4c5] {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}

.analytics__hint code[b-fuhi9gr4c5] {
    font-family: ui-monospace, monospace;
    font-size: 12px;
    padding: 1px 5px;
    background: var(--bg-alt);
    border-radius: 3px;
}

.photo-guess-grid[b-fuhi9gr4c5] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.photo-guess[b-fuhi9gr4c5] {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.photo-guess__thumb[b-fuhi9gr4c5] {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-alt);
}

.photo-guess__caption[b-fuhi9gr4c5] {
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.3;
    color: var(--text-primary);
    border-top: 1px solid var(--border);
}

.photo-guess__caption--high[b-fuhi9gr4c5] {
    background: color-mix(in srgb, var(--sage) 14%, transparent);
    border-top-color: var(--sage);
    color: var(--text-primary);
}

.photo-guess__caption--low[b-fuhi9gr4c5] {
    background: color-mix(in srgb, var(--accent) 14%, transparent);
    border-top-color: var(--accent);
}

.photo-guess__caption--unknown[b-fuhi9gr4c5] {
    color: var(--text-secondary);
    font-style: italic;
}

/* Print actions table */
.analytics__print[b-fuhi9gr4c5] {
    margin-top: 28px;
}

.analytics__print table[b-fuhi9gr4c5] {
    width: 100%;
}

/* Recent visits */
.analytics__recent[b-fuhi9gr4c5] {
    margin-top: 28px;
}

.analytics__ip[b-fuhi9gr4c5] {
    font-family: ui-monospace, monospace;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Filter bar */
.analytics__filters[b-fuhi9gr4c5] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
    margin-bottom: 16px;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.analytics__filters label[b-fuhi9gr4c5] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    min-width: 160px;
}

.analytics__filters label span[b-fuhi9gr4c5] {
    white-space: nowrap;
}

.analytics__filters select[b-fuhi9gr4c5] {
    padding: 6px 10px;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease;
}

.analytics__filters select:focus[b-fuhi9gr4c5] {
    border-color: var(--accent);
}

.analytics__filters-check[b-fuhi9gr4c5] {
    flex-direction: row !important;
    align-items: center !important;
    min-width: auto !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 14px !important;
    color: var(--text-primary) !important;
    cursor: pointer;
    gap: 6px !important;
}

.analytics__filters-check input[b-fuhi9gr4c5] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
}

.analytics__filters-count[b-fuhi9gr4c5] {
    margin-left: auto;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
}

.analytics__empty[b-fuhi9gr4c5] {
    text-align: center;
    padding: 28px 12px !important;
    color: var(--text-secondary);
    font-style: italic;
}

/* Pagination */
.analytics__pager[b-fuhi9gr4c5] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding: 10px;
}

.analytics__pager-info[b-fuhi9gr4c5] {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
    min-width: 100px;
    text-align: center;
}

[b-fuhi9gr4c5] .analytics__recent td code {
    font-family: ui-monospace, monospace;
    font-size: 12px;
    color: var(--heading);
}
/* /Components/Pages/Admin/AdminDashboard.razor.rz.scp.css */
.admin-title[b-ya15zi6s34] {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--heading);
    margin: 0 0 32px;
}

/* Summary grid */
.summary-grid[b-ya15zi6s34] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.summary-card[b-ya15zi6s34] {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.summary-card__value[b-ya15zi6s34] {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--heading);
    line-height: 1;
    margin-bottom: 4px;
}

.summary-card__label[b-ya15zi6s34] {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.summary-card__bar[b-ya15zi6s34] {
    height: 4px;
    background: var(--bg-alt);
    border-radius: 2px;
    margin-top: 12px;
    overflow: hidden;
}

.summary-card__fill[b-ya15zi6s34] {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.summary-card__detail[b-ya15zi6s34] {
    display: block;
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Actions bar */
.admin-actions[b-ya15zi6s34] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.admin-actions__count[b-ya15zi6s34] {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
}

/* Table */
.admin-table-wrap[b-ya15zi6s34] {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

.admin-table[b-ya15zi6s34] {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 14px;
}

.admin-table th[b-ya15zi6s34] {
    padding: 12px 16px;
    text-align: left;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    user-select: none;
}

.admin-table__sortable[b-ya15zi6s34] {
    cursor: pointer;
    transition: color 0.2s ease;
}

.admin-table__sortable:hover[b-ya15zi6s34] {
    color: var(--accent);
}

.admin-table__sortable.sort-asc[b-ya15zi6s34]::after {
    content: " ▲";
    font-size: 10px;
}

.admin-table__sortable.sort-desc[b-ya15zi6s34]::after {
    content: " ▼";
    font-size: 10px;
}

.admin-table td[b-ya15zi6s34] {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    white-space: nowrap;
}

.admin-table__row[b-ya15zi6s34] {
    cursor: pointer;
    transition: background 0.15s ease;
}

.admin-table__row:hover[b-ya15zi6s34] {
    background: var(--bg-alt);
}

.admin-table__row--no[b-ya15zi6s34] {
    opacity: 0.5;
}

.admin-table__row--expanded[b-ya15zi6s34] {
    background: var(--bg-alt);
}

.admin-table__name[b-ya15zi6s34] {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-table__date[b-ya15zi6s34] {
    color: var(--text-secondary);
    font-size: 13px;
}

.admin-table__toggle[b-ya15zi6s34] {
    color: var(--text-secondary);
    font-size: 10px;
    text-align: center;
}

/* Badges */
.badge[b-ya15zi6s34] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.badge--note[b-ya15zi6s34] {
    background: var(--accent-light);
    color: var(--heading);
}

.badge--msg[b-ya15zi6s34] {
    background: var(--sage);
    color: #fff;
}

/* Detail panel */
.admin-table__detail td[b-ya15zi6s34] {
    padding: 0;
    border-bottom: 2px solid var(--border);
}

.detail-panel[b-ya15zi6s34] {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-section[b-ya15zi6s34] {
    padding: 16px;
    background: var(--bg);
    border-radius: 8px;
}

.detail-section__title[b-ya15zi6s34] {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 0 12px;
}

.detail-hint[b-ya15zi6s34] {
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0;
    text-transform: none;
}

.detail-row[b-ya15zi6s34] {
    display: flex;
    gap: 12px;
    align-items: baseline;
    padding: 4px 0;
    font-size: 14px;
}

.detail-label[b-ya15zi6s34] {
    font-weight: 500;
    color: var(--text-secondary);
    min-width: 100px;
    flex-shrink: 0;
}

.detail-select[b-ya15zi6s34] {
    font-family: var(--font-body);
    font-size: 14px;
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text-primary);
    cursor: pointer;
}

/* Note & message items */
.note-item[b-ya15zi6s34],
.msg-item[b-ya15zi6s34] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.note-item:last-of-type[b-ya15zi6s34],
.msg-item:last-of-type[b-ya15zi6s34] {
    border-bottom: none;
}

.note-text[b-ya15zi6s34],
.msg-text[b-ya15zi6s34] {
    flex: 1;
    min-width: 200px;
    font-size: 14px;
}

.msg-item--plain[b-ya15zi6s34] { border-left: 3px solid var(--text-secondary); padding-left: 12px; }
.msg-item--green[b-ya15zi6s34] { border-left: 3px solid var(--sage); padding-left: 12px; }
.msg-item--orange[b-ya15zi6s34] { border-left: 3px solid var(--accent); padding-left: 12px; }
.msg-item--red[b-ya15zi6s34] { border-left: 3px solid var(--rust); padding-left: 12px; }

.note-input[b-ya15zi6s34] {
    flex: 1;
    min-width: 200px;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s ease;
}

.note-input:focus[b-ya15zi6s34] {
    border-color: var(--accent);
}

.note-actions[b-ya15zi6s34] {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.note-add[b-ya15zi6s34],
.msg-add[b-ya15zi6s34] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
}

/* Color picker */
.color-picker[b-ya15zi6s34] {
    display: flex;
    gap: 6px;
    align-items: center;
}

.color-dot[b-ya15zi6s34] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.15s ease, transform 0.15s ease;
    padding: 0;
}

.color-dot:hover[b-ya15zi6s34] {
    transform: scale(1.15);
}

.color-dot.active[b-ya15zi6s34] {
    border-color: var(--heading);
}

.color-dot--plain[b-ya15zi6s34] { background: var(--text-secondary); }
.color-dot--green[b-ya15zi6s34] { background: var(--sage); }
.color-dot--orange[b-ya15zi6s34] { background: var(--accent); }
.color-dot--red[b-ya15zi6s34] { background: var(--rust); }

/* Small buttons */
.btn-sm[b-ya15zi6s34] {
    font-family: var(--font-body);
    font-size: 12px;
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.btn-sm:hover[b-ya15zi6s34] {
    background: var(--bg-alt);
    color: var(--text-primary);
}

.btn-sm--save[b-ya15zi6s34] {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-sm--save:hover[b-ya15zi6s34] {
    opacity: 0.9;
    background: var(--accent);
    color: #fff;
}

.btn-sm--save:disabled[b-ya15zi6s34] {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-sm--cancel[b-ya15zi6s34] {
    color: var(--text-secondary);
}

.btn-sm--danger[b-ya15zi6s34] {
    color: var(--rust);
    border-color: var(--rust);
}

.btn-sm--danger:hover[b-ya15zi6s34] {
    background: var(--rust);
    color: #fff;
}

/* History */
.history-item[b-ya15zi6s34] {
    display: flex;
    gap: 12px;
    padding: 4px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.history-date[b-ya15zi6s34] {
    font-weight: 500;
    min-width: 120px;
    flex-shrink: 0;
}

/* Button styles */
.btn--secondary[b-ya15zi6s34] {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn--secondary:hover[b-ya15zi6s34] {
    background: var(--accent);
    color: #fff;
}

.admin-loading[b-ya15zi6s34] {
    color: var(--text-secondary);
    font-style: italic;
}

@media (max-width: 768px) {
    .summary-grid[b-ya15zi6s34] {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-table[b-ya15zi6s34] {
        font-size: 13px;
    }

    .admin-table th[b-ya15zi6s34],
    .admin-table td[b-ya15zi6s34] {
        padding: 8px 10px;
    }

    .detail-panel[b-ya15zi6s34] {
        padding: 16px;
    }
}

/* Detail actions + delete confirmation */
.detail-actions[b-ya15zi6s34] {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}

.detail-confirm[b-ya15zi6s34] {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 6px 10px;
    background: color-mix(in srgb, var(--rust) 12%, transparent);
    border: 1px solid var(--rust);
    border-radius: 6px;
    font-size: 13px;
    color: var(--rust);
}

.detail-code[b-ya15zi6s34] {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--heading);
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Edit form inside detail panel */
.edit-form[b-ya15zi6s34] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.edit-form__row[b-ya15zi6s34] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.edit-form__row--three[b-ya15zi6s34] {
    grid-template-columns: 1fr 1fr 1fr;
}

.edit-form label[b-ya15zi6s34] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.edit-form input[type="text"][b-ya15zi6s34],
.edit-form input[type="email"][b-ya15zi6s34],
.edit-form input[type="number"][b-ya15zi6s34],
.edit-form select[b-ya15zi6s34],
.edit-form textarea[b-ya15zi6s34] {
    padding: 8px 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text-primary);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease;
}

.edit-form input:focus[b-ya15zi6s34],
.edit-form select:focus[b-ya15zi6s34],
.edit-form textarea:focus[b-ya15zi6s34] {
    border-color: var(--accent);
}

.edit-form__textarea textarea[b-ya15zi6s34] {
    resize: vertical;
    min-height: 40px;
    font-family: var(--font-body);
}

.edit-form__checkbox[b-ya15zi6s34] {
    flex-direction: row !important;
    align-items: center;
    gap: 8px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--text-primary) !important;
}

.edit-form__checkbox input[type="checkbox"][b-ya15zi6s34] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--accent);
}

.edit-form__error[b-ya15zi6s34] {
    margin: 0;
    color: var(--rust);
    font-size: 13px;
}

.edit-form__actions[b-ya15zi6s34] {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .edit-form__row[b-ya15zi6s34],
    .edit-form__row--three[b-ya15zi6s34] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Gate.razor.rz.scp.css */
.gate__card[b-13l245hwyq] {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 400px;
    padding: 48px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
}

.gate__fox[b-13l245hwyq] {
    width: 48px;
    height: 48px;
    color: var(--fox);
    margin-bottom: 20px;
    opacity: 0.8;
}

.gate__title[b-13l245hwyq] {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--heading);
    margin: 0 0 4px;
}

.gate__subtitle[b-13l245hwyq] {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    margin: 0 0 32px;
}

.gate__error[b-13l245hwyq] {
    padding: 12px 16px;
    background: color-mix(in srgb, var(--rust) 10%, transparent);
    border: 1px solid var(--rust);
    border-radius: 8px;
    color: var(--rust);
    font-size: 14px;
    margin-bottom: 24px;
}

[b-13l245hwyq] .gate__field {
    margin-bottom: 24px;
    text-align: left;
}

[b-13l245hwyq] .gate__field label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

[b-13l245hwyq] .gate__field input[type="password"] {
    width: 100%;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-light);
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

[b-13l245hwyq] .gate__field input[type="password"]:focus {
    border-bottom-color: var(--accent);
}
/* /Components/Sections/CountdownSection.razor.rz.scp.css */
.countdown[b-5wjc49rgab] {
    position: relative;
    background: var(--bg-alt);
    padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.countdown__ribbon[b-5wjc49rgab] {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 4vw, 48px);
    position: relative;
    z-index: 2;
}

.countdown__item[b-5wjc49rgab] {
    text-align: center;
}

.countdown__flip[b-5wjc49rgab] {
    position: relative;
    width: clamp(72px, 12vw, 120px);
    height: clamp(80px, 13vw, 130px);
    perspective: 600px;
    margin-bottom: 12px;
}

.countdown__flip-inner[b-5wjc49rgab] {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--card-shadow);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.countdown__flip-inner[b-5wjc49rgab]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    right: 6px;
    height: 1px;
    background: var(--border);
    transform: translateY(-50%);
    z-index: 2;
}

.countdown__flip-num[b-5wjc49rgab] {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--heading);
    line-height: 1;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.countdown__unit[b-5wjc49rgab] {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
}

[b-5wjc49rgab] .countdown__flip-inner.pulse {
    animation: flipPulse 0.4s ease;
}

@media (max-width: 768px) {
    .countdown__ribbon[b-5wjc49rgab] {
        flex-wrap: wrap;
        gap: 16px;
    }

    .countdown__flip[b-5wjc49rgab] {
        width: 64px;
        height: 72px;
    }

    .countdown__flip-num[b-5wjc49rgab] {
        font-size: 2.4rem !important;
    }
}
/* /Components/Sections/DressCodeSection.razor.rz.scp.css */
.dresscode[b-0a9jjn52kf] {
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.dresscode__grid[b-0a9jjn52kf] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 40px);
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

[b-0a9jjn52kf] .dresscode__card { padding: clamp(32px, 4vw, 52px); }

[b-0a9jjn52kf] .dresscode__card-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

[b-0a9jjn52kf] .dresscode__card-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 400;
    color: var(--heading);
    margin-bottom: 14px;
    line-height: 1.15;
    transition: color 0.3s ease;
}

[b-0a9jjn52kf] .dresscode__card-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

[b-0a9jjn52kf] .dresscode__swatches {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

[b-0a9jjn52kf] .dresscode__swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    transition: transform 0.3s ease;
}

[b-0a9jjn52kf] .dresscode__swatch:hover { transform: scale(1.15); }

[b-0a9jjn52kf] .dresscode__swatch-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 4px;
}

@media (max-width: 900px) {
    .dresscode__grid[b-0a9jjn52kf] {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}
/* /Components/Sections/FaqSection.razor.rz.scp.css */
.faq[b-sp4xkvwemn] {
    position: relative;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq__deco[b-sp4xkvwemn] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80vh;
    pointer-events: none;
    overflow: hidden;
}

.faq__list[b-sp4xkvwemn] {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item[b-sp4xkvwemn] {
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.faq-item:first-child[b-sp4xkvwemn] {
    border-top: 1px solid var(--border);
}

.faq-item__question[b-sp4xkvwemn] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--heading);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.faq-item__question:hover[b-sp4xkvwemn] {
    color: var(--accent-dark);
}

.faq-item__icon[b-sp4xkvwemn] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
}

.faq-item__icon[b-sp4xkvwemn]::before,
.faq-item__icon[b-sp4xkvwemn]::after {
    content: '';
    position: absolute;
    background: var(--accent-light);
    transition: transform 0.3s ease;
}

.faq-item__icon[b-sp4xkvwemn]::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.faq-item__icon[b-sp4xkvwemn]::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-item__icon[b-sp4xkvwemn]::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-item__answer[b-sp4xkvwemn] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item__answer-inner[b-sp4xkvwemn] {
    padding: 0 0 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: color 0.3s ease;
}
/* /Components/Sections/FooterSection.razor.rz.scp.css */
.footer[b-hl2y6148vv] {
    background: var(--bg-alt);
    padding: clamp(60px, 8vw, 100px) 24px clamp(40px, 5vw, 60px);
    text-align: center;
    transition: background 0.3s ease;
}

.footer__fox-decoration[b-hl2y6148vv] {
    width: 40px;
    height: 40px;
    margin: 0 auto 24px;
    opacity: 0.3;
}

.footer__fox-decoration svg[b-hl2y6148vv] {
    width: 100%;
    height: 100%;
    fill: var(--fox);
}

.footer__monogram-outer[b-hl2y6148vv] {
    margin: 0 auto 24px;
    position: relative;
    display: inline-block;
}

.footer__monogram-text[b-hl2y6148vv] {
    font-family: 'Inter', sans-serif;
    font-size: 140px;
    font-weight: 100;
    color: var(--heading);
    opacity: 0.12;
    display: flex;
    align-items: center;
    line-height: 1;
    transition: color 0.3s ease;
}

.footer__monogram-text .ef-e[b-hl2y6148vv],
.footer__monogram-text .ef-f[b-hl2y6148vv] {
    display: block;
}

.footer__monogram-text .ef-e[b-hl2y6148vv] {
    transform: scaleX(-1);
    margin-right: -0.125em;
}

.footer__monogram-text .ef-f[b-hl2y6148vv] {
    margin-left: -0.125em;
}

.footer__names[b-hl2y6148vv] {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--heading);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.footer__date[b-hl2y6148vv] {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.footer__contact[b-hl2y6148vv] {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 36px;
    transition: color 0.3s ease;
}

.footer__contact a[b-hl2y6148vv] {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer__contact a:hover[b-hl2y6148vv] {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.footer__contact-sep[b-hl2y6148vv] {
    margin: 0 10px;
    color: var(--accent);
    opacity: 0.5;
}

.footer__nav[b-hl2y6148vv] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.footer__nav a[b-hl2y6148vv] {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer__nav a:hover[b-hl2y6148vv] {
    color: var(--accent);
}

.footer__love[b-hl2y6148vv] {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.7;
}
/* /Components/Sections/GallerySection.razor.rz.scp.css */
.gallery[b-txqzjvehl1] {
    position: relative;
    z-index: 3;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: visible;
    transition: background 0.3s ease;
}

.gallery__inner[b-txqzjvehl1] {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Action cards */
.gallery__actions[b-txqzjvehl1] {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 32px);
    max-width: 1100px;
    margin: 0 auto clamp(40px, 5vw, 56px);
    position: relative;
    z-index: 2;
}

.gallery__action-card[b-txqzjvehl1] {
    flex: 1;
    max-width: 480px;
    text-align: center;
    padding: clamp(24px, 3vw, 36px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 2px 16px var(--card-shadow);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery__action-card:hover[b-txqzjvehl1] {
    box-shadow: 0 8px 36px var(--card-shadow);
    transform: translateY(-3px);
}

.gallery__action-text[b-txqzjvehl1] {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: clamp(20px, 2.5vw, 28px);
    flex: 1;
    display: flex;
    align-items: center;
}

.gallery__action-btn[b-txqzjvehl1] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 14px 32px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.gallery__action-btn:hover[b-txqzjvehl1] {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
}

.gallery__action-icon[b-txqzjvehl1] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Grid — flexbox so the last (non-full) row stays centered */
[b-txqzjvehl1] .gallery__grid {
    --grid-cols: 4;
    --grid-gap: clamp(12px, 2vw, 20px);
    display: flex;
    flex-wrap: wrap;
    gap: var(--grid-gap);
    justify-content: center;
}

[b-txqzjvehl1] .gallery__item {
    flex: 0 0 calc((100% - (var(--grid-cols) - 1) * var(--grid-gap)) / var(--grid-cols));
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--surface);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--border);
    box-shadow: 0 2px 16px var(--card-shadow);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

[b-txqzjvehl1] .gallery__item:hover {
    box-shadow: 0 8px 36px var(--card-shadow);
    transform: translateY(-3px) scale(1.02);
}

/* New photo entrance animation */
[b-txqzjvehl1] .gallery__item--new {
    animation: gallerySlideIn-b-txqzjvehl1 0.6s ease both;
    box-shadow: 0 0 0 2px var(--accent), 0 2px 16px var(--card-shadow);
}

@keyframes gallerySlideIn-b-txqzjvehl1 {
    from { opacity: 0; transform: scale(0.8) translateY(-20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Skeleton loading */
[b-txqzjvehl1] .gallery__skeleton {
    flex: 0 0 calc((100% - (var(--grid-cols) - 1) * var(--grid-gap)) / var(--grid-cols));
    aspect-ratio: 1;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--surface) 25%, var(--bg-alt) 50%, var(--surface) 75%);
    background-size: 200% 100%;
    animation: shimmer-b-txqzjvehl1 1.5s infinite;
}

@keyframes shimmer-b-txqzjvehl1 {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Empty state */
[b-txqzjvehl1] .gallery__empty {
    text-align: center;
    padding: clamp(40px, 6vw, 80px) 20px;
}

[b-txqzjvehl1] .gallery__empty-text {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.65;
}

/* Load more button */
[b-txqzjvehl1] .gallery__more {
    text-align: center;
    margin-top: clamp(24px, 4vw, 48px);
}

[b-txqzjvehl1] .gallery__more-btn {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 12px 32px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

[b-txqzjvehl1] .gallery__more-btn:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
}

[b-txqzjvehl1] .gallery__more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
    [b-txqzjvehl1] .gallery__grid {
        --grid-cols: 3;
    }
}

@media (max-width: 768px) {
    [b-txqzjvehl1] .gallery__grid {
        --grid-cols: 2;
    }
}

@media (max-width: 768px) {
    .gallery__actions[b-txqzjvehl1] {
        flex-direction: column;
        align-items: center;
    }

    .gallery__action-card[b-txqzjvehl1] {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    [b-txqzjvehl1] .gallery__grid {
        --grid-cols: 2;
        --grid-gap: 10px;
    }
}
/* /Components/Sections/GuestResponseSection.razor.rz.scp.css */
.rsvp[b-xlzt4hqi3i] {
    position: relative;
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.rsvp__inner[b-xlzt4hqi3i] {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

[b-xlzt4hqi3i] .form-group {
    margin-bottom: 28px;
}

[b-xlzt4hqi3i] .form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

[b-xlzt4hqi3i] .form-group input,
[b-xlzt4hqi3i] .form-group select,
[b-xlzt4hqi3i] .form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-light);
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s ease, color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

[b-xlzt4hqi3i] .form-group input:focus,
[b-xlzt4hqi3i] .form-group select:focus,
[b-xlzt4hqi3i] .form-group textarea:focus {
    border-bottom-color: var(--accent);
}

[b-xlzt4hqi3i] .form-group input::placeholder,
[b-xlzt4hqi3i] .form-group textarea::placeholder {
    color: var(--accent-light);
    opacity: 0.5;
}

[b-xlzt4hqi3i] .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

[b-xlzt4hqi3i] .form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A7060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}

[b-xlzt4hqi3i] .form-group select option {
    background: var(--surface);
    color: var(--text-primary);
}

/* Capacity progress bar */
[b-xlzt4hqi3i] .capacity-bar {
    margin-bottom: 36px;
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}

[b-xlzt4hqi3i] .capacity-bar__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

[b-xlzt4hqi3i] .capacity-bar__label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

[b-xlzt4hqi3i] .capacity-bar__pct {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--heading);
    letter-spacing: -0.02em;
}

[b-xlzt4hqi3i] .capacity-bar__track {
    height: 6px;
    background: var(--bg-alt);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

[b-xlzt4hqi3i] .capacity-bar__fill {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 1s ease;
}

[b-xlzt4hqi3i] .capacity-bar__fill--over {
    background: var(--sage);
}

[b-xlzt4hqi3i] .capacity-bar__overflow {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: var(--fox);
    border-radius: 0 3px 3px 0;
    opacity: 0.7;
    transition: width 1s ease;
}

[b-xlzt4hqi3i] .capacity-bar__note {
    display: block;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    font-style: italic;
}

/* Shared custom combobox (guests + attendance) */
[b-xlzt4hqi3i] .combo,
[b-xlzt4hqi3i] .guests-combo {
    position: relative;
}

[b-xlzt4hqi3i] .combo input,
[b-xlzt4hqi3i] .guests-combo input {
    padding-right: 28px;
    cursor: pointer;
}

[b-xlzt4hqi3i] .combo__toggle,
[b-xlzt4hqi3i] .guests-combo__toggle {
    position: absolute;
    right: 0;
    bottom: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 4px;
    display: flex;
    align-items: center;
}

[b-xlzt4hqi3i] .combo__list,
[b-xlzt4hqi3i] .guests-combo__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 16px var(--card-shadow);
    margin-top: 4px;
    overflow: hidden;
}

[b-xlzt4hqi3i] .combo__option,
[b-xlzt4hqi3i] .guests-combo__option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.2s ease;
}

[b-xlzt4hqi3i] .combo__option:hover,
[b-xlzt4hqi3i] .guests-combo__option:hover {
    background: var(--bg-alt);
}

[b-xlzt4hqi3i] .combo__option.active,
[b-xlzt4hqi3i] .guests-combo__option.active {
    color: var(--accent);
    font-weight: 500;
}

[b-xlzt4hqi3i] .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

[b-xlzt4hqi3i] .rsvp__success {
    text-align: center;
    padding: 48px 0;
}

[b-xlzt4hqi3i] .rsvp__success-check {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

[b-xlzt4hqi3i] .rsvp__success-check svg {
    width: 64px;
    height: 64px;
}

[b-xlzt4hqi3i] .rsvp__success-check .check-circle {
    stroke: var(--accent);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawCheck 0.8s ease 0.2s forwards;
}

[b-xlzt4hqi3i] .rsvp__success-check .check-mark {
    stroke: var(--accent);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawCheck 0.5s ease 0.8s forwards;
}

[b-xlzt4hqi3i] .rsvp__success-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--heading);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

[b-xlzt4hqi3i] .rsvp__success-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

[b-xlzt4hqi3i] .rsvp__deadline-notice {
    padding: 24px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

[b-xlzt4hqi3i] .validation-message {
    color: var(--rust);
    font-size: 12px;
    margin-top: 4px;
}

/* Three-column row for guest breakdown */
[b-xlzt4hqi3i] .form-row--three {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Guest total */
[b-xlzt4hqi3i] .guest-total {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    margin: -12px 0 28px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

[b-xlzt4hqi3i] .guest-total strong {
    color: var(--heading);
    font-weight: 500;
}

/* Form hints */
[b-xlzt4hqi3i] .form-hint {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 300;
    font-style: italic;
}

[b-xlzt4hqi3i] .form-hint--block {
    display: block;
    margin-top: 8px;
    line-height: 1.5;
}

/* Form sections (Friday, etc) */
[b-xlzt4hqi3i] .form-section {
    margin-bottom: 28px;
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}

[b-xlzt4hqi3i] .form-section__sub {
    margin-top: 16px;
    padding-left: 32px;
}

/* Checkbox styling */
[b-xlzt4hqi3i] .checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-primary);
    user-select: none;
}

[b-xlzt4hqi3i] .checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

[b-xlzt4hqi3i] .checkbox-box {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--accent-light);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

[b-xlzt4hqi3i] .checkbox-label input:checked + .checkbox-box {
    background: var(--accent);
    border-color: var(--accent);
}

[b-xlzt4hqi3i] .checkbox-label input:checked + .checkbox-box::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Guest messages from admin */
[b-xlzt4hqi3i] .guest-messages {
    margin-top: 24px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

[b-xlzt4hqi3i] .guest-msg {
    padding: 14px 20px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

[b-xlzt4hqi3i] .guest-msg--plain {
    background: var(--bg-alt);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

[b-xlzt4hqi3i] .guest-msg--green {
    background: color-mix(in srgb, var(--sage) 12%, transparent);
    color: var(--text-primary);
    border: 1px solid var(--sage);
}

[b-xlzt4hqi3i] .guest-msg--orange {
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--text-primary);
    border: 1px solid var(--accent);
}

[b-xlzt4hqi3i] .guest-msg--red {
    background: color-mix(in srgb, var(--rust) 10%, transparent);
    color: var(--text-primary);
    border: 1px solid var(--rust);
}

/* Loading state */
[b-xlzt4hqi3i] .rsvp__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 0;
}

[b-xlzt4hqi3i] .rsvp__loading-spinner {
    width: 36px;
    height: 36px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: rsvp-spin-b-xlzt4hqi3i 0.8s linear infinite;
}

@keyframes rsvp-spin-b-xlzt4hqi3i {
    to { transform: rotate(360deg); }
}

[b-xlzt4hqi3i] .rsvp__loading-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Submitted view */
[b-xlzt4hqi3i] .rsvp__submitted {
    text-align: center;
    padding: 48px 0;
}

[b-xlzt4hqi3i] .rsvp__summary {
    max-width: 360px;
    margin: 24px auto;
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    padding: 20px 24px;
}

[b-xlzt4hqi3i] .rsvp__summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}

[b-xlzt4hqi3i] .rsvp__summary-row:last-child {
    border-bottom: none;
}

[b-xlzt4hqi3i] .rsvp__summary-label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    align-self: center;
}

[b-xlzt4hqi3i] .rsvp__code-block {
    margin: 28px auto;
    max-width: 360px;
    padding: 16px 24px;
    background: var(--surface);
    border: 1px dashed var(--accent-light);
    border-radius: 12px;
    text-align: center;
}

[b-xlzt4hqi3i] .rsvp__code-label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

[b-xlzt4hqi3i] .rsvp__submitted-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

[b-xlzt4hqi3i] .rsvp__form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

[b-xlzt4hqi3i] .rsvp__form-actions .btn {
    flex: 0 1 auto;
}

@media (max-width: 500px) {
    [b-xlzt4hqi3i] .rsvp__form-actions {
        gap: 10px;
    }

    [b-xlzt4hqi3i] .rsvp__form-actions .btn {
        flex: 1 1 100%;
    }
}

[b-xlzt4hqi3i] .rsvp__deadline-hint {
    margin-top: 14px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
}

[b-xlzt4hqi3i] .rsvp__code-share-btn {
    margin-top: 14px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--accent-light);
    transition: color 0.2s ease;
}

[b-xlzt4hqi3i] .rsvp__code-share-btn:hover {
    color: var(--accent);
}

[b-xlzt4hqi3i] .rsvp__share-panel {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    align-items: flex-end;
}

[b-xlzt4hqi3i] .rsvp__code {
    display: block;
    font-family: monospace;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--heading);
    user-select: all;
}

/* Recovery section */
[b-xlzt4hqi3i] .rsvp__recovery {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    text-align: center;
}

[b-xlzt4hqi3i] .rsvp__recovery-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

[b-xlzt4hqi3i] .rsvp__recovery-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

[b-xlzt4hqi3i] .rsvp__recovery-panel {
    display: flex;
    gap: 8px;
    max-width: 360px;
    margin: 0 auto 12px;
}

[b-xlzt4hqi3i] .rsvp__recovery-input {
    flex: 1;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-light);
    padding: 10px 0;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

[b-xlzt4hqi3i] .rsvp__recovery-input:focus {
    border-bottom-color: var(--accent);
}

[b-xlzt4hqi3i] .rsvp__recovery-msg {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    margin-top: 4px;
}

[b-xlzt4hqi3i] .rsvp__recovery-msg--error {
    color: var(--rust);
}

[b-xlzt4hqi3i] .rsvp__recovery-msg--success {
    color: var(--sage, var(--accent));
}

/* Optional label */
[b-xlzt4hqi3i] .form-optional {
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--accent-light);
}

/* Friday dinner disabled checkbox */
[b-xlzt4hqi3i] .checkbox-label--friday-dinner {
    margin-top: 12px;
}

[b-xlzt4hqi3i] .checkbox-label--disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

[b-xlzt4hqi3i] .checkbox-label--disabled .checkbox-box {
    cursor: not-allowed;
}

/* Small button variant */
[b-xlzt4hqi3i] .btn--sm {
    padding: 8px 20px;
    font-size: 13px;
}

@media (max-width: 900px) {
    [b-xlzt4hqi3i] .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    [b-xlzt4hqi3i] .form-row--three {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 500px) {
    [b-xlzt4hqi3i] .form-row--three {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* /Components/Sections/HeroSection.razor.rz.scp.css */
.hero[b-61pxm7enyv] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(168deg, var(--bg) 0%, var(--bg-alt) 60%);
    overflow: hidden;
    padding: 100px 0 80px;
    transition: background 0.3s ease;
}

.hero__branch-left[b-61pxm7enyv] {
    position: absolute;
    top: -10%;
    left: -15%;
    width: 130%;
    max-width: none;
    opacity: 0.15;
    mix-blend-mode: multiply;
    transform: rotate(-8deg) scale(1.15);
    pointer-events: none;
    z-index: 1;
}

.hero__branch-right[b-61pxm7enyv] {
    position: absolute;
    bottom: -18%;
    right: -12%;
    width: 75%;
    max-width: none;
    opacity: 0.13;
    mix-blend-mode: multiply;
    transform: rotate(12deg) scaleX(-1);
    pointer-events: none;
    z-index: 1;
}

.hero__branch-left[b-61pxm7enyv],
.hero__branch-right[b-61pxm7enyv] {
    mask-image: radial-gradient(ellipse 80% 70% at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black 40%, transparent 100%);
}

.hero__content[b-61pxm7enyv] {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    padding: 0 clamp(24px, 6vw, 80px);
}

.hero__fox-badge[b-61pxm7enyv] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero__fox-badge svg[b-61pxm7enyv] {
    width: 20px;
    height: 20px;
    fill: var(--fox);
    opacity: 0.7;
}

.hero__label[b-61pxm7enyv] {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    transition: color 0.3s ease;
}

.hero__names[b-61pxm7enyv] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    min-height: clamp(5rem, 14vw, 12rem);
}

.hero__name[b-61pxm7enyv] {
    font-family: var(--font-display);
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 400;
    line-height: 0.9;
    color: var(--heading);
    letter-spacing: -0.03em;
    transition: color 0.3s ease;
}

.hero__name-wrap[b-61pxm7enyv] {
    display: inline-flex;
    align-items: baseline;
}

.hero__ampersand[b-61pxm7enyv] {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    font-style: normal;
    color: var(--accent);
    margin: 0 clamp(16px, 3vw, 40px);
    align-self: center;
    transition: color 0.3s ease;
}

[b-61pxm7enyv] .typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--accent);
    margin-left: 4px;
    vertical-align: baseline;
    animation: blink 0.8s step-end infinite;
}

.hero__meta[b-61pxm7enyv] {
    margin-top: clamp(28px, 4vw, 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
}

.hero__date[b-61pxm7enyv],
.hero__location[b-61pxm7enyv] {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    transition: color 0.3s ease;
}

.hero__scroll-indicator[b-61pxm7enyv] {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 3.5s forwards, bounceDown 2.5s ease-in-out 4s infinite;
    text-decoration: none;
    cursor: pointer;
    padding: 8px 16px;
}

.hero__scroll-indicator span[b-61pxm7enyv] {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.6;
}

.hero__scroll-indicator svg[b-61pxm7enyv] {
    width: 20px;
    height: 20px;
    stroke: var(--text-secondary);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .hero[b-61pxm7enyv] {
        padding: 80px 0 60px;
        align-items: flex-start;
        padding-top: 20vh;
    }

    .hero__names[b-61pxm7enyv] {
        flex-direction: column;
        align-items: center;
    }

    .hero__ampersand[b-61pxm7enyv] { margin: 8px 0; }

    /* Větve — diagonálně přes celý výškový displej */
    .hero__branch-left[b-61pxm7enyv] {
        top: -5%;
        left: -60%;
        width: 220%;
        opacity: 0.12;
        transform: rotate(30deg);
        transform-origin: center center;
    }

    .hero__branch-right[b-61pxm7enyv] {
        bottom: -5%;
        right: -60%;
        width: 220%;
        opacity: 0.09;
        transform: rotate(-30deg) scaleX(-1);
        transform-origin: center center;
    }
}

@media (max-width: 500px) {
    .hero__name[b-61pxm7enyv] {
        font-size: clamp(3.5rem, 18vw, 6rem);
    }
}
/* /Components/Sections/ScheduleSection.razor.rz.scp.css */
.schedule[b-09u4xt5vka] {
    position: relative;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 50%);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.schedule__list[b-09u4xt5vka] {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.schedule__day[b-09u4xt5vka] {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-align: center;
    margin: clamp(36px, 4vw, 56px) 0 clamp(8px, 1.2vw, 16px);
    padding-bottom: clamp(8px, 1vw, 12px);
    border-bottom: 1px solid var(--border);
    transition: opacity 0.8s ease, transform 0.8s ease, color 0.3s ease, border-color 0.3s ease;
}

.schedule__day:first-child[b-09u4xt5vka] {
    margin-top: 0;
}

.schedule__item[b-09u4xt5vka] {
    display: grid;
    grid-template-columns: clamp(80px, 12vw, 110px) 44px 1fr;
    gap: clamp(16px, 2.2vw, 28px);
    align-items: center;
    padding: clamp(18px, 2.4vw, 28px) 0;
    border-bottom: 1px solid var(--border);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s ease;
}

.schedule__item:last-child[b-09u4xt5vka] { border-bottom: none; }

.schedule__time[b-09u4xt5vka] {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 400;
    color: var(--heading);
    letter-spacing: -0.02em;
    line-height: 1;
    text-align: right;
    transition: color 0.3s ease;
}

.schedule__icon[b-09u4xt5vka] {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    opacity: 0.7;
}

.schedule__icon svg[b-09u4xt5vka] {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.schedule__info[b-09u4xt5vka] { min-width: 0; }

.schedule__event[b-09u4xt5vka] {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.schedule__detail[b-09u4xt5vka] {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.55;
    transition: color 0.3s ease;
}

@media (max-width: 540px) {
    .schedule__item[b-09u4xt5vka] {
        grid-template-columns: clamp(64px, 18vw, 84px) 36px 1fr;
        gap: 14px;
        padding: 16px 0;
    }

    .schedule__time[b-09u4xt5vka] {
        font-size: clamp(18px, 5vw, 22px);
    }

    .schedule__icon[b-09u4xt5vka] {
        width: 36px;
        height: 36px;
    }

    .schedule__icon svg[b-09u4xt5vka] {
        width: 22px;
        height: 22px;
    }

    .schedule__event[b-09u4xt5vka] {
        font-size: 14px;
        letter-spacing: 0.02em;
    }
}
/* /Components/Sections/StorySection.razor.rz.scp.css */
.story[b-5l5l0mokth] {
    position: relative;
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.story__timeline[b-5l5l0mokth] {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story__timeline[b-5l5l0mokth]::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--accent) 10%, var(--accent) 90%, transparent);
    opacity: 0.25;
    transform: translateX(-50%);
}

.story__item[b-5l5l0mokth] {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.story__item:last-child[b-5l5l0mokth] { margin-bottom: 0; }

.story__item-content[b-5l5l0mokth] {
    padding: clamp(20px, 3vw, 32px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 2px 12px var(--card-shadow);
    transition: box-shadow 0.4s ease, background 0.3s ease, border-color 0.3s ease;
}

.story__item-content:hover[b-5l5l0mokth] {
    box-shadow: 0 6px 28px var(--card-shadow);
}

.story__item--left .story__item-content[b-5l5l0mokth] {
    grid-column: 1;
    text-align: right;
}

.story__item--left .story__item-dot[b-5l5l0mokth] { grid-column: 2; }
.story__item--left .story__item-spacer[b-5l5l0mokth] { grid-column: 3; }

.story__item--right .story__item-spacer[b-5l5l0mokth] { grid-column: 1; }
.story__item--right .story__item-dot[b-5l5l0mokth] { grid-column: 2; }

.story__item--right .story__item-content[b-5l5l0mokth] {
    grid-column: 3;
    text-align: left;
}

.story__item-dot[b-5l5l0mokth] {
    display: flex;
    justify-content: center;
    padding-top: 24px;
}

.story__item-dot span[b-5l5l0mokth] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
    flex-shrink: 0;
    position: relative;
}

.story__item-dot span[b-5l5l0mokth]::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.story__item-year[b-5l5l0mokth] {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.story__item-title[b-5l5l0mokth] {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--heading);
    margin-bottom: 8px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.story__item-text[b-5l5l0mokth] {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    transition: color 0.3s ease;
}

@media (max-width: 900px) {
    .story__timeline[b-5l5l0mokth]::before {
        left: 20px;
    }

    .story__item[b-5l5l0mokth] {
        grid-template-columns: 40px 1fr;
    }

    .story__item--left .story__item-content[b-5l5l0mokth],
    .story__item--right .story__item-content[b-5l5l0mokth] {
        grid-column: 2;
        text-align: left;
    }

    .story__item--left .story__item-dot[b-5l5l0mokth],
    .story__item--right .story__item-dot[b-5l5l0mokth] {
        grid-column: 1;
    }

    .story__item--left .story__item-spacer[b-5l5l0mokth],
    .story__item--right .story__item-spacer[b-5l5l0mokth] {
        display: none;
    }

    /* Dot vždy první, content vždy druhý */
    .story__item--left .story__item-dot[b-5l5l0mokth] {
        order: -1;
    }

    .story__item--left .story__item-content[b-5l5l0mokth] {
        order: 1;
    }
}
/* /Components/Sections/TravelSection.razor.rz.scp.css */
.travel[b-m5le433g1j] {
    position: relative;
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow-x: clip;
    overflow-y: visible;
    transition: background 0.3s ease;
}

.travel__map-wrap[b-m5le433g1j] {
    max-width: 1060px;
    margin: 0 auto clamp(32px, 4vw, 56px);
    position: relative;
    z-index: 2;
}

.travel__map[b-m5le433g1j] {
    aspect-ratio: 16 / 9;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.travel__map iframe[b-m5le433g1j] {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.travel__map-placeholder[b-m5le433g1j] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.7;
}

.travel__grid[b-m5le433g1j] {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 36px);
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

[b-m5le433g1j] .travel-card {
    padding: clamp(28px, 4vw, 48px);
    text-align: left;
}

[b-m5le433g1j] .travel-card__header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

[b-m5le433g1j] .travel-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    opacity: 0.7;
}

[b-m5le433g1j] .travel-card__icon svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

[b-m5le433g1j] .travel-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 400;
    color: var(--heading);
    text-align: left;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

[b-m5le433g1j] .travel-card__text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

[b-m5le433g1j] .travel-card__text:last-child {
    margin-bottom: 0;
}

[b-m5le433g1j] .travel-card__sub {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 18px 0 8px;
}

[b-m5le433g1j] .travel-card__sub:first-of-type {
    margin-top: 8px;
}

[b-m5le433g1j] .travel-card__list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

[b-m5le433g1j] .travel-card__list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

[b-m5le433g1j] .travel-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}

@media (max-width: 640px) {
    .travel__map[b-m5le433g1j] {
        aspect-ratio: 4 / 3;
    }
}
/* /Components/Sections/VenuesSection.razor.rz.scp.css */
.venues[b-5v8nzw5rdy] {
    position: relative;
    background: var(--bg);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.venues__grid[b-5v8nzw5rdy] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 36px);
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

[b-5v8nzw5rdy] .venue-card {
    padding: clamp(32px, 4vw, 52px);
}

[b-5v8nzw5rdy] .venue-card__type {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

[b-5v8nzw5rdy] .venue-card__name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 400;
    color: var(--heading);
    margin-bottom: 8px;
    line-height: 1.15;
    transition: color 0.3s ease;
}

[b-5v8nzw5rdy] .venue-card__address {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.55;
    transition: color 0.3s ease;
}

[b-5v8nzw5rdy] .venue-card__time {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--accent-light);
    letter-spacing: -0.02em;
}

[b-5v8nzw5rdy] .venue-card__link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    margin-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

[b-5v8nzw5rdy] .venue-card__link:hover {
    color: var(--heading);
    border-bottom-color: var(--accent);
}

[b-5v8nzw5rdy] .venue-card__detail {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.7;
}

[b-5v8nzw5rdy] .venue-card--photo {
    padding: 0;
    overflow: hidden;
    min-height: 320px;
    display: flex;
}

[b-5v8nzw5rdy] .venue-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    flex: 1;
}

@media (max-width: 900px) {
    [b-5v8nzw5rdy] .venue-card--photo {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }
}

@media (max-width: 900px) {
    .venues__grid[b-5v8nzw5rdy] {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}
/* /Components/Sections/VoteSection.razor.rz.scp.css */
.vote[b-330tdx060c] {
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    padding: clamp(50px, 6vw, 80px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    transition: background 0.3s ease;
}

.vote__content[b-330tdx060c] {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.vote__intro[b-330tdx060c] {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: clamp(24px, 3vw, 36px);
    transition: color 0.3s ease;
}

.vote__blocks[b-330tdx060c] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 36px);
    margin-bottom: clamp(20px, 2.5vw, 32px);
}

.vote__block[b-330tdx060c] {
    padding: clamp(24px, 3vw, 32px);
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.vote__block-title[b-330tdx060c] {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 400;
    color: var(--accent);
    margin: 0 0 12px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.vote__block-text[b-330tdx060c] {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    transition: color 0.3s ease;
}

.vote__footnote[b-330tdx060c] {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    margin: 0;
    opacity: 0.75;
    transition: color 0.3s ease;
}

.vote__obvody[b-330tdx060c] {
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
}

.vote__obvody summary[b-330tdx060c] {
    cursor: pointer;
    font-weight: 500;
    color: var(--accent);
    list-style: none;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.vote__obvody summary[b-330tdx060c]::-webkit-details-marker {
    display: none;
}

.vote__obvody summary[b-330tdx060c]::before {
    content: "+";
    display: inline-block;
    width: 14px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.vote__obvody[open] summary[b-330tdx060c]::before {
    content: "−";
}

.vote__obvody summary:hover[b-330tdx060c] {
    color: var(--heading);
}

.vote__obvody p[b-330tdx060c] {
    margin: 8px 0 0;
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 720px) {
    .vote__blocks[b-330tdx060c] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/GuestMessagesBanner.razor.rz.scp.css */
.guest-toast-stack[b-7l2ovezzpi] {
    position: absolute;
    top: 88px;
    left: 24px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
    pointer-events: none;
}

.guest-toast-stack > .guest-toast[b-7l2ovezzpi] {
    pointer-events: auto;
}

.guest-toast[b-7l2ovezzpi] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px 14px 18px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    animation: toast-in-b-7l2ovezzpi 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toast-in-b-7l2ovezzpi {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.guest-toast__text[b-7l2ovezzpi] {
    flex: 1;
    color: var(--text-primary);
}

.guest-toast__close[b-7l2ovezzpi] {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: -2px;
    transition: background 0.2s ease, color 0.2s ease;
}

.guest-toast__close:hover[b-7l2ovezzpi] {
    background: rgba(0, 0, 0, 0.06);
    color: var(--heading);
}

.guest-toast--plain[b-7l2ovezzpi] {
    background: var(--surface);
    border: 1px solid var(--border);
}

.guest-toast--green[b-7l2ovezzpi] {
    background: color-mix(in srgb, var(--sage) 16%, var(--surface));
    border: 1px solid var(--sage);
}

.guest-toast--orange[b-7l2ovezzpi] {
    background: color-mix(in srgb, var(--accent) 16%, var(--surface));
    border: 1px solid var(--accent);
}

.guest-toast--red[b-7l2ovezzpi] {
    background: color-mix(in srgb, var(--rust) 14%, var(--surface));
    border: 1px solid var(--rust);
}

@media (max-width: 600px) {
    .guest-toast-stack[b-7l2ovezzpi] {
        top: 80px;
        left: 16px;
        right: 16px;
        max-width: none;
    }

    .guest-toast[b-7l2ovezzpi] {
        font-size: 14px;
    }
}
