/* =========================================================
   DESIGN SYSTEM
========================================================= */

:root {
    --bg-app: #725b45;
    --bg-sidebar: #725b45;
    --bg-topbar: #725b45;
    --bg-rightbar: 725b45;
    --bg-content: #e7d9c4;

    --card: #f3f3f3;
    --card-soft: #ffffff;
    --card-hover: #e6e6e6;

    --text-dark: #725b45;
    --text-muted: #b4b2b0;
    --text-light: #ffffff;
    --text-light-muted: #cfcfcf;

    --border-dark: #292929;
    --border-light: #d0d0d0;

    --button: #83674d;
    --button-hover: #83674d;
    --button-secondary: #967c63;
    --button-secondary-hover: #83674d;
    --danger: #8f1d1d;
    --danger-hover: #701616;

    --success-bg: #d9f3dc;
    --success-text: #185c22;
    --error-bg: #ffd8d8;
    --error-text: #7a1111;

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;

    --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.10);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.16);

    --transition-fast: 0.15s ease;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background: var(--bg-app);
    color: var(--text-light);
}

body {
    overflow: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.inline-action-form {
    display: inline;
    margin: 0;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

strong {
    font-weight: 700;
}

hr {
	max-width: 100%
}
/* Back-to-top control used by the public footer */
.go-top-button {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 2000;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 999px;
    background: var(--button);
    color: var(--text-light);
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.go-top-button:hover,
.go-top-button:focus-visible { background: var(--button-hover); }
.go-top-button.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.cookie-consent-open {
    overflow: hidden;
}

.cookie-consent-backdrop {
    position: fixed;
    inset: 0;
    z-index: 30000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.cookie-consent-backdrop[hidden] {
    display: none;
}

.cookie-consent-modal {
    width: min(580px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    overflow-y: auto;
    padding: 34px 40px;
    background: #725b45;
    color: #ffffff;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.cookie-consent-view h2 {
    margin: 0 0 14px;
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
}

.cookie-consent-view p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
    text-align: center;
}

.cookie-consent-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.cookie-consent-actions-stacked {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cookie-consent-button {
    min-height: 42px;
    border: 0;
    border-radius: 0;
    padding: 11px 14px;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    background: #8f6f52;
}

.cookie-consent-button-primary {
    background: #9f7f61;
}

.cookie-consent-button-secondary {
    background: #604a38;
}

.cookie-consent-button-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-consent-privacy a {
    color: #ffd766;
    font-weight: 800;
}

.cookie-consent-category {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cookie-consent-category h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.25;
}

.cookie-consent-category p {
    margin: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    width: 54px;
    height: 30px;
    flex: 0 0 auto;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-switch span {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.32);
    cursor: pointer;
    transition: background 0.18s ease;
}

.cookie-switch span::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.18s ease;
}

.cookie-switch input:checked + span {
    background: #11be32;
}

.cookie-switch input:checked + span::before {
    transform: translateX(24px);
}

.cookie-switch.is-disabled span {
    cursor: not-allowed;
    opacity: 0.75;
}

.landing-footer-link-button {
    display: block;
    border: 0;
    padding: 0;
    background: transparent;
    color: #cfcfcf;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

@media (max-width: 900px) {
    .cookie-consent-backdrop {
        align-items: flex-end;
        padding: 14px;
    }

    .cookie-consent-modal {
        max-height: calc(100vh - 28px);
        padding: 26px 20px;
    }

    .cookie-consent-view h2 {
        font-size: 21px;
    }

    .cookie-consent-actions,
    .cookie-consent-actions-stacked {
        grid-template-columns: 1fr;
    }

    .cookie-consent-category {
        gap: 12px;
    }
}


/* =========================================================
/* =========================================================
   PUBLIC LANDING PAGE
========================================================= */

.landing-page {
    margin: 0;
    min-height: 100vh;
    background: #050505;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.landing-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px;
    background: #725b45;
}

.landing-topbar-logo {
    display: inline-flex;
    align-items: center;
}

.landing-topbar-logo img {
    height: 30px;
    width: auto;
    display: block;
}

.landing-burger {
    display: none;
    width: 42px;
    height: 35px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.landing-burger span {
    display: block;
    width: 34px;
    height: 3px;
    margin: 7px auto;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-burger-open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.landing-burger-open span:nth-child(2) {
    opacity: 0;
}

.landing-burger-open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.landing-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.landing-nav a:hover {
    text-decoration: underline;
}

.landing-main {
    min-height: 100vh;
}

.landing-hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
	overflow: hidden;
}

.landing-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(
        to bottom,
        rgba(114, 91, 69, 0) 0%,
        #725b45 100%
    );
    pointer-events: none;
    z-index: 1;
}

.landing-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    text-align: center;
}

.landing-hero-logo {
    width: min(360px, 80vw);
    height: auto;
    display: block;
    margin: 0 auto 28px;
}

.landing-claim {
    margin: 0 0 34px;
    color: #ffffff;
    font-size: clamp(24px, 4vw, 20px);
    line-height: 1.12;
    /*font-weight: 700;*/
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.75);
}

.landing-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.landing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 14px 22px;
    border-radius: 0;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.landing-button:hover {
    transform: translateY(-2px);
}

.landing-button-primary {
    background: #967c63;
    color: #fff;
}

.landing-button-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.landing-stats {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.landing-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
}

.landing-stat-item + .landing-stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.landing-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #37c83f;
    box-shadow: 0 0 0 3px rgba(55, 200, 63, 0.25);
    flex-shrink: 0;
}

.landing-stat-online {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
	.landing-stats {
		font-size: 12px;
	}
	

}

.landing-footer {
    background: #725b45;
    color: #ffffff;
    padding: 48px 34px;
	font-size: 12px;
}

.landing-footer-grid {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.landing-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 14px;
}

.landing-footer a {
    display: block;
    margin-bottom: 9px;
    color: #cfcfcf;
    text-decoration: none;
    font-size: 13px;
}

.landing-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.landing-footer-social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-bottom: 9px;
    text-decoration: none;
    transition: opacity .2s;
	margin-right: 15px;
}

.landing-footer-social-icon img {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) invert(1);
}

.landing-about-content {
    min-height: 100vh;
    padding: 62px 44px 72px;
    background:
        linear-gradient(to bottom, rgba(114, 91, 69, 0) 72%, #967c63 100%),
        #725b45;
    color: #ffffff;
}

.landing-sponsor-content {
    min-height: 52vh;
    padding: 62px 44px 72px;
    background:
        linear-gradient(to bottom, rgba(150, 124, 99, 0) 72%, #725b45 100%),
        #967c63;
    color: #ffffff;
}

.landing-content-grid {
    width: min(1220px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 48px;
}

.landing-content-grid-about {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    row-gap: clamp(72px, 7vw, 118px);
}

.landing-content-grid-sponsor {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    align-items: start;
}

.landing-content-copy {
    align-self: start;
    justify-self: start;
    max-width: 560px;
    color: #ffffff;
    text-align: left;
}

.landing-content-copy-center {
    align-self: center;
    justify-self: center;
    padding-block: clamp(18px, 2.6vw, 46px);
}

.landing-content-copy h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 700;
}

.landing-content-copy p,
.landing-content-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.55;
}

.landing-content-text p {
    margin: 0 0 14px;
}

.landing-content-text p:last-child {
    margin-bottom: 0;
}

.landing-sponsor-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.landing-content-image-tile {
    width: 100%;
    min-height: 218px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    /*background: rgba(255, 255, 255, 0.16);*/
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    text-align: center;
}

.landing-content-image-tile-large {
    min-height: 260px;
}
@media (max-width: 800px) {
    .landing-topbar {
        height: 86px;
        padding: 0 24px;
        justify-content: space-between;
    }

    .landing-topbar-logo img {
        height: 30px;
    }

    .landing-topbar-right {
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
        background: #725b45;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
	}

    .landing-topbar-right-open {
        display: flex;
    }

    .landing-burger {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 40px;
        margin-left: auto;
        order: 3;
    }

    .landing-burger span {
        width: 44px;
        height: 4px;
        margin: 4px auto;
    }

    .landing-nav {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .landing-nav-open {
        display: flex;
    }

    .landing-nav a {
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.26);
        font-size: 18px;
    }

    .landing-hero {
        padding-top: 124px;
    }

    .landing-about-content,
    .landing-sponsor-content {
        min-height: auto;
        padding: 42px 18px 54px;
    }

    .landing-content-grid,
    .landing-content-grid-about,
    .landing-content-grid-sponsor {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .landing-content-grid-about > :nth-child(1) {
        order: 1;
    }

    .landing-content-grid-about > :nth-child(2) {
        order: 2;
    }

    .landing-content-grid-about > :nth-child(3) {
        order: 4;
    }

    .landing-content-grid-about > :nth-child(4) {
        order: 3;
    }

    .landing-content-grid-about > :nth-child(5) {
        order: 5;
    }

    .landing-content-grid-about > :nth-child(6) {
        order: 6;
    }

    .landing-content-copy,
    .landing-content-copy-center {
        justify-self: start;
        align-self: start;
        max-width: 100%;
        padding-block: 0;
    }

    .landing-content-copy h2 {
        font-size: 28px;
    }

    .landing-content-copy p,
    .landing-content-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .landing-content-image-tile,
    .landing-content-image-tile-large {
        min-height: 190px;
        font-size: 16px;
    }

    .landing-footer-grid {
        grid-template-columns: 1fr 1fr;
    }




	.mobile-nav-icon {
		width: 16px;
		height: 16px;
		object-fit: contain;
		flex-shrink: 0;
		filter: brightness(0) invert(1); /* weiÃŸ */
	}

}

@media (max-width: 520px) {
    .landing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-button {
        width: 100%;
    }

    .landing-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

}

.landing-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
	margin-left: auto;
}

/* Language Dropdown */
.landing-language-dropdown {
    position: relative;
}

.landing-language-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.landing-language-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.46);
}

.landing-language-dropdown-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.landing-language-dropdown.open .landing-language-dropdown-arrow {
    transform: rotate(180deg);
}

.landing-language-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #3d2e20;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
    z-index: 2000;
    overflow: hidden;
}

.landing-language-dropdown.open .landing-language-dropdown-menu {
    display: block;
}

.landing-language-dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
    gap: 10px;
}

.landing-language-dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.landing-language-dropdown-menu li[aria-selected="true"] a {
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 800px) {
    .landing-topbar-right {
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
        background: #725b45;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
    }

    .landing-topbar-right.landing-topbar-right-open {
        display: flex;
    }

    .landing-language-dropdown {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    }

    .landing-language-dropdown-toggle {
        width: 100%;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 16px 24px;
        font-size: 18px;
        justify-content: space-between;
        gap: 0;
    }

    .landing-language-dropdown-toggle:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .landing-language-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.18);
        padding: 0;
    }

    .landing-language-dropdown-menu li a {
        padding: 12px 32px;
        font-size: 16px;
    }
}

/* Public-only additions migrated from style.css; source rules remain temporarily duplicated. */
.error-card {
    background: var(--error-bg);
    color: var(--error-text);
}

.success-card {
    position: fixed;
    top: 24px;
    left: 50%;
    z-index: 5000;
    width: max-content;
    max-width: min(90vw, 420px);
    min-width: 0;
    height: auto;
    margin: 0;
    padding: 14px 20px;
    border: 1px solid rgba(24, 92, 34, 0.12);
    border-radius: 16px;
    background: rgba(217, 243, 220, 0.96);
    color: var(--success-text);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    text-align: center;
    transform: translateX(-50%) translateY(-10px);
    animation: successToast 2.2s ease forwards;
    pointer-events: none;
}

.success-card p {
    margin: 0;
    color: var(--success-text);
    font-size: 15px;
    line-height: 1.35;
}

@keyframes successToast {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    12%,
    78% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-8px);
    }
}
.public-page {
    background: var(--bg-content);
    color: var(--text-dark);
}

.public-page-main {
    min-height: calc(100vh - 72px);
    padding: 126px 24px 56px;
    background: var(--bg-content);
}

.public-page-card {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 42px;
    background: var(--card);
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.public-page-card h1 {
    margin: 0 0 20px;
    color: var(--text-dark);
    font-size: 38px;
    line-height: 1.1;
}

.public-page-lead {
    margin: 0 0 30px;
    max-width: 760px;
    color: var(--text-dark);
    font-size: 20px;
    line-height: 1.45;
}

.public-page-section {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(114, 91, 69, 0.24);
}

.public-page-section h2,
.public-info-tile h2 {
    margin: 0 0 10px;
    color: var(--text-dark);
    font-size: 23px;
    line-height: 1.2;
}

.public-page-section p,
.public-info-tile p {
    margin: 0;
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.55;
}

.public-page-card a {
    color: var(--text-dark);
}

.public-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.public-info-tile {
    padding: 22px;
    background: rgba(114, 91, 69, 0.08);
    border: 1px solid rgba(114, 91, 69, 0.20);
}

@media (max-width: 800px) {
    .landing-topbar {
        height: 86px;
        padding: 0 24px;
        justify-content: space-between;
    }

    .landing-topbar-logo img {
        height: 40px;
    }

    .landing-topbar-right {
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
        background: #725b45;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
	}

    .landing-topbar-right-open {
        display: flex;
    }

    .landing-burger {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 40px;
        margin-left: auto;
        order: 3;
    }

    .landing-burger span {
        width: 44px;
        height: 4px;
        margin: 4px auto;
    }

    .landing-nav {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .landing-nav-open {
        display: flex;
    }

    .landing-nav a {
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.26);
        font-size: 18px;
    }

    .landing-hero {
        padding-top: 124px;
    }

    .landing-about-content,
    .landing-sponsor-content {
        min-height: auto;
        padding: 42px 18px 54px;
    }

    .landing-content-grid,
    .landing-content-grid-about,
    .landing-content-grid-sponsor {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .landing-content-grid-about > :nth-child(1) {
        order: 1;
    }

    .landing-content-grid-about > :nth-child(2) {
        order: 2;
    }

    .landing-content-grid-about > :nth-child(3) {
        order: 4;
    }

    .landing-content-grid-about > :nth-child(4) {
        order: 3;
    }

    .landing-content-grid-about > :nth-child(5) {
        order: 5;
    }

    .landing-content-grid-about > :nth-child(6) {
        order: 6;
    }

    .landing-content-copy,
    .landing-content-copy-center {
        justify-self: start;
        align-self: start;
        max-width: 100%;
        padding-block: 0;
    }

    .landing-content-copy h2 {
        font-size: 28px;
    }

    .landing-content-copy p,
    .landing-content-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .landing-content-image-tile,
    .landing-content-image-tile-large {
        min-height: 190px;
        font-size: 16px;
    }

    .landing-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .public-page-main {
        padding: 126px 18px 42px;
    }

    .public-page-card {
        padding: 30px 24px;
    }

    .public-page-card h1 {
        font-size: 32px;
    }

    .public-page-lead {
        font-size: 18px;
    }
	
	.mobile-avatar-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
	}

	.mobile-nav-icon {
		width: 16px;
		height: 16px;
		object-fit: contain;
		flex-shrink: 0;
		filter: brightness(0) invert(1); /* weiÃŸ */
	}

	.mobile-avatar-menu a:hover .mobile-nav-icon {
		filter: none;
	}
}

@media (max-width: 520px) {
    .landing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-button {
        width: 100%;
    }

    .landing-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .public-page-main {
        padding: 116px 14px 34px;
    }

    .public-page-card {
        padding: 24px 18px;
    }

    .public-contact-grid {
        grid-template-columns: 1fr;
    }
}

.landing-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
	margin-left: auto;
}

/* Language Dropdown */
.landing-language-dropdown {
    position: relative;
}

.landing-language-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.landing-language-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.46);
}

.landing-language-dropdown-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.landing-language-dropdown.open .landing-language-dropdown-arrow {
    transform: rotate(180deg);
}

.landing-language-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #3d2e20;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
    z-index: 2000;
    overflow: hidden;
}

.landing-language-dropdown.open .landing-language-dropdown-menu {
    display: block;
}

.landing-language-dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
    gap: 10px;
}

.landing-language-dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.landing-language-dropdown-menu li[aria-selected="true"] a {
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 800px) {
    .landing-topbar-right {
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
        background: #725b45;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
    }

    .landing-topbar-right.landing-topbar-right-open {
        display: flex;
    }

    .landing-language-dropdown {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    }

    .landing-language-dropdown-toggle {
        width: 100%;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 16px 24px;
        font-size: 18px;
        justify-content: space-between;
        gap: 0;
    }

    .landing-language-dropdown-toggle:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .landing-language-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.18);
        padding: 0;
    }

    .landing-language-dropdown-menu li a {
        padding: 12px 32px;
        font-size: 16px;
    }
}

/* =========================================================
   PUBLIC REGISTER PAGE
========================================================= */

.register-page {
    background: var(--bg-content);
    color: var(--text-dark);
}

.register-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 15px 40px;
    background: var(--bg-content);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.register-card {
    width: 100%;
    max-width: 520px;
    background: var(--card);
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.register-card h1 {
    margin: 0 0 10px;
    color: var(--text-dark);
    font-size: 32px;
}

.prelaunch-thanks-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(36, 24, 16, 0.68);
}

.prelaunch-thanks-layer {
    position: relative;
    width: min(560px, 100%);
    padding: 34px 32px 30px;
    background: #725b45;
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.prelaunch-thanks-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 30px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.prelaunch-thanks-layer h1 {
    margin: 0 36px 22px 0;
    color: #ffd45a;
    font-size: 24px;
    line-height: 1.15;
}

.prelaunch-thanks-layer p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.55;
}

.prelaunch-thanks-follow {
    font-weight: 700;
}

.prelaunch-thanks-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

.prelaunch-thanks-socials a {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

.prelaunch-thanks-socials img {
    width: 30px;
    height: 30px;
    display: block;
	filter: brightness(0) invert(1);
}

@media (max-width: 600px) {
    .prelaunch-thanks-backdrop {
        align-items: flex-end;
        padding: 16px;
    }

    .prelaunch-thanks-layer {
        padding: 30px 22px 26px;
    }

    .prelaunch-thanks-layer h1 {
        font-size: 25px;
    }

    .prelaunch-thanks-layer p {
        font-size: 16px;
    }
}

.register-step-info {
    margin: 0 0 22px;
    color: var(--text-muted);
    font-size: 14px;
}

.register-step-bar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 22px;
}

.register-step-dot {
    height: 8px;
    border-radius: 999px;
    background: #c7b79f;
}

.register-step-dot-active {
    background: var(--bg-topbar);
}

.register-info-box,
.register-error-box {
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 18px;
}

.register-info-box {
    background: var(--success-bg);
    color: var(--success-text);
}

.register-error-box {
    background: var(--error-bg);
    color: var(--error-text);
}

.register-error-box ul {
    margin: 0;
    padding-left: 18px;
}

.register-field {
    margin-bottom: 16px;
}

.register-field label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: bold;
}

.register-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--card-soft);
    color: var(--text-dark);
    font-size: 16px;
}

.register-field input:focus {
    outline: none;
    border-color: var(--bg-topbar);
}

.register-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 12px 0 18px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.35;
}

.register-checkbox-row input {
    width: auto;
    margin-top: 3px;
    flex: 0 0 auto;
}

.register-checkbox-row a {
    color: var(--button);
    font-weight: 800;
    text-decoration: underline;
}

.register-hint {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 13px;
}

.register-slider-field {
    margin-bottom: 14px;
}

.register-slider-summary {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(110px, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    background: transparent;
    color: var(--text-dark);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.register-slider-summary span {
    color: var(--button);
    font-weight: 700;
}

.register-slider-summary strong {
    color: var(--text-dark);
    font-weight: 800;
}

.register-slider-summary:hover span,
.register-slider-summary[aria-expanded="true"] span {
    color: var(--button-hover);
}

.register-slider-panel {
    padding: 10px 0 4px;
}

.register-slider-panel[hidden] {
    display: none;
}

.register-slider-panel input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    accent-color: #b59a7a;
    cursor: pointer;
}

.register-slider-panel input[type="range"]::-webkit-slider-runnable-track {
    height: 30px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
}

.register-slider-panel input[type="range"]::-webkit-slider-thumb {
    width: 68px;
    height: 30px;
    margin-top: 0;
    border: 0;
    border-radius: 999px;
    background: #b59a7a;
    -webkit-appearance: none;
    appearance: none;
}

.register-slider-panel input[type="range"]::-moz-range-track {
    height: 30px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
}

.register-slider-panel input[type="range"]::-moz-range-thumb {
    width: 68px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: #b59a7a;
}

.register-choice-field {
    position: relative;
    margin-bottom: 14px;
}

.register-choice-summary {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(110px, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    background: transparent;
    color: var(--text-dark);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.register-choice-summary span {
    color: var(--button);
    font-weight: 700;
}

.register-choice-summary strong {
    color: var(--text-dark);
    font-weight: 800;
}

.register-choice-summary:hover span,
.register-choice-summary[aria-expanded="true"] span {
    color: var(--button-hover);
}

.register-choice-native {
    position: absolute;
    width: 1px !important;
    height: 1px;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0;
    pointer-events: none;
}

.register-choice-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0 4px;
}

.register-choice-panel[hidden] {
    display: none;
}

.register-choice-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    color: var(--button);
    font-size: 15px;
    line-height: 1.15;
    cursor: pointer;
}

.register-choice-chip:hover {
    border-color: rgba(151, 124, 99, 0.45);
    background: rgba(0, 0, 0, 0.12);
}

.register-choice-chip.is-selected {
    background: #967c63;
    color: #ffffff;
}

.register-choice-chip input {
    position: absolute;
    width: 1px !important;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.register-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.register-actions a,
.register-actions button {
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.register-actions button {
    background: var(--button);
    color: var(--text-light);
    cursor: pointer;
    order: 1;
}

.register-actions a {
    order: 2;
}

.register-actions button:hover {
    background: var(--button-hover);
}

.register-button-secondary {
    background: var(--button-secondary);
    color: var(--text-light);
    text-decoration: none;
}

.register-button-secondary:hover {
    background: var(--button-secondary-hover);
}

.register-links {
    margin-top: 18px;
    color: var(--text-dark);
    text-align: center;
    font-size: 14px;
}

.register-links a {
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.register-preview-box {
    min-height: 180px;
    border: 1px dashed #9f8d77;
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
    background: var(--card-soft);
}

.register-photo-file-input {
    position: absolute;
    width: 1px !important;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.register-photo-upload-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.register-field .register-photo-upload-actions label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.register-photo-upload-actions .profile-photo-upload-add,
.register-photo-upload-actions .register-photo-upload-button {
    height: 46px;
    min-height: 46px;
    box-sizing: border-box;
    line-height: 1;
}

.register-photo-upload-actions .profile-photo-upload-add {
    width: 46px;
    padding: 0;
}

.register-photo-upload-actions .profile-photo-upload-add img {
    margin: 0;
}

.register-photo-upload-button {
    text-decoration: none;
}

.register-preview-box.has-image {
    min-height: 220px;
    padding: 0;
    overflow: hidden;
    border-style: solid;
}

.register-preview-box img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

@media (max-width: 560px) {
    .register-wrapper {
        align-items: flex-start;
        padding: 124px 14px 30px;
    }

    .register-card {
        padding: 22px;
    }

    .register-actions {
        flex-direction: column;
    }
}



/* =========================================================
   PUBLIC LOGIN PAGE
========================================================= */

.login-page {
    background: var(--bg-content);
    color: var(--text-dark);
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 15px 40px;
    background: var(--bg-content);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.login-card {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.login-card h1 {
    margin: 0 0 22px;
    color: var(--text-dark);
    font-size: 32px;
    line-height: 1.1;
}

.login-info-box,
.login-error-box {
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 18px;
}

.login-info-box {
    background: var(--success-bg);
    color: var(--success-text);
    line-height: 1.45;
}

.login-error-box {
    background: var(--error-bg);
    color: var(--error-text);
}

.login-error-box ul {
    margin: 0;
    padding-left: 18px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.login-field label {
    color: var(--text-dark);
    font-weight: bold;
}

.login-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--card-soft);
    color: var(--text-dark);
    font-size: 16px;
}

.login-field input:focus {
    outline: none;
    border-color: var(--bg-topbar);
}

.login-field-password-wrap {
    position: relative;
}

.login-field-password-wrap input {
    padding-right: 44px;
}

.login-pw-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    opacity: 0.5;
    line-height: 0;
}

.login-pw-toggle:hover {
    opacity: 1;
}

.login-pw-toggle img {
    display: block;
    filter: brightness(0) saturate(100%) invert(38%) sepia(22%) saturate(687%) hue-rotate(346deg) brightness(94%) contrast(89%);
}

.login-submit-button {
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--button);
    color: var(--text-light);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.login-submit-button:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
}

.login-links {
    margin-top: 18px;
    color: var(--text-dark);
    text-align: center;
    font-size: 14px;
}

.login-links a {
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 560px) {
    .login-wrapper {
        align-items: flex-start;
        padding: 124px 14px 30px;
    }

    .login-card {
        padding: 22px;
    }
}

/* =========================================================
   FAQ
========================================================= */

#faq-tab-free:checked ~ .faq-tab-buttons label[for="faq-tab-free"],
#faq-tab-premium:checked ~ .faq-tab-buttons label[for="faq-tab-premium"],
#faq-tab-sponsor:checked ~ .faq-tab-buttons label[for="faq-tab-sponsor"],
#faq-tab-videos:checked ~ .faq-tab-buttons label[for="faq-tab-videos"],
#faq-tab-groups:checked ~ .faq-tab-buttons label[for="faq-tab-groups"] {
    background: #725b45;
    color: #ffd45a;
}

#faq-tab-free:checked ~ .faq-tab-panel-free,
#faq-tab-premium:checked ~ .faq-tab-panel-premium,
#faq-tab-sponsor:checked ~ .faq-tab-panel-sponsor,
#faq-tab-videos:checked ~ .faq-tab-panel-videos,
#faq-tab-groups:checked ~ .faq-tab-panel-groups {
    display: block;
}

.faq-item {
    margin-bottom: 12px;

    border-radius: 12px;

    background: rgba(114, 91, 69, 0.08);
    border: 1px solid rgba(114, 91, 69, 0.18);

    overflow: hidden;
}

.faq-question {
    position: relative;

    padding: 18px 54px 18px 18px;

    color: #725b45;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";

    position: absolute;
    top: 50%;
    right: 18px;

    transform: translateY(-50%);

    font-size: 22px;
    font-weight: 400;

    color: #725b45;
}

.faq-item[open] .faq-question::after {
    content: "âˆ’";
}

.faq-answer {
    padding: 0 18px 18px;

    color: #111111;

    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .faq-tab-buttons {
        grid-template-columns: 1fr;
    }
}

.favorite-dashboard-card {
	margin-top: 25px;
}

.favorites-type-tabs,
.favorites-view-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 0;
	text-transform: uppercase;
}

.favorites-type-tabs .button-submit,
.favorites-view-tabs .button-submit {
    background: #967c63;
    font-weight: 800;
}

.favorite-videos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
	margin-top: 25px;
}

.favorite-video-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    background: #83674d;
    color: var(--text-dark);
    padding: 14px;
    box-shadow: var(--shadow-soft);
}

.favorite-video-title {
    margin: 0;
    color: #e7d9c4;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.favorite-video-media-link {
    display: block;
    text-decoration: none;
}

.favorite-video-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background: #111111;
    overflow: hidden;
}

.favorite-video-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.favorite-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 46px;
    height: 46px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
}

.favorite-video-play::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 13px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #ffffff;
}

.favorite-video-excerpt {
    margin: 0;
    color: #e7d9c4;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.favorite-video-card .home-feed-video-actions {
    margin-top: auto;
}

.favorite-video-card .home-feed-video-action {
    color: #e7d9c4;
}

.favorite-video-card .home-feed-video-action img {
    filter: brightness(0) saturate(100%) invert(91%) sepia(15%) saturate(510%) hue-rotate(345deg) brightness(96%) contrast(88%);
}

.favorite-video-card .home-feed-video-action-like.is-active img {
    filter: brightness(0) saturate(100%) invert(91%) sepia(15%) saturate(510%) hue-rotate(345deg) brightness(96%) contrast(88%);
}

.favorite-video-card .home-feed-video-action-share.is-active img,
.favorite-video-card .home-feed-video-action-favorite.is-active img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(23%) saturate(439%) hue-rotate(91deg) brightness(90%) contrast(300%);
}

.video-premium-locked-media {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #725b45;
}

.member-modal-video-thumb-wrap.video-premium-locked-media,
.favorite-video-media.video-premium-locked-media {
    height: auto;
}

.video-premium-locked-thumb {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-premium-lock-overlay {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    border: 0;
    background: rgba(32, 24, 18, 0.36);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.video-premium-lock-overlay strong {
    font-size: 18px;
    line-height: 1.15;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

.video-premium-lock-overlay span {
    max-width: 280px;
    font-size: 13px;
    line-height: 1.35;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

.video-reel-premium-locked {
    position: absolute;
    inset: 0;
}

.video-feed-card-overlay .video-premium-lock-overlay,
.videos-index-card .video-premium-lock-overlay,
.favorite-video-media .video-premium-lock-overlay,
.video-reel-premium-locked .video-premium-lock-overlay {
    z-index: 4;
}

.member-modal-video-card-locked {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    color: inherit;
    font: inherit;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.member-modal-video-card-locked .video-premium-lock-overlay strong {
    font-size: 14px;
}

.favorite-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
	margin-top: 20px;
}

.favorite-image-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: #725b45;
    color: #ffffff;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
}

.favorite-image-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.favorite-image-card span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px 9px 9px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.member-modal-photo-review .group-media-review-image {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
}

.member-modal-photo-review .group-media-review-label {
    padding: 5px 7px;
    font-size: 10px;
    line-height: 1.1;
}

.favorite-image-card.group-media-review-wrap {
    cursor: default;
}

.favorite-image-card .group-media-review-label {
    right: auto;
    bottom: auto;
    left: 50%;
    padding: 10px 16px;
    background: rgba(114, 91, 69, 0.88);
    transform: translate(-50%, -50%);
    line-height: 1.2;
    text-align: center;
    white-space: normal;
}

.image-favorite-overlay-button {
    position: fixed;
    right: 76px;
    top: 22px;
    z-index: 10002;
    width: 46px;
    height: 46px;
    border: 0;
    /*background-color: rgba(114, 91, 69, 0.88);*/
    cursor: pointer;
    -webkit-mask-image: url('/img/nav/bookmark.png');
    mask-image: url('/img/nav/bookmark.png');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 30px 30px;
    mask-size: 30px 30px;
}

.image-favorite-overlay-button.is-active {
    background-color: #11be32;
}

.image-favorite-overlay-button[hidden] {
    display: none;
}

@media (max-width: 900px) {
    .favorites-type-tabs,
    .favorites-view-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
		text-align: center;
    }

    .favorites-view-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .favorite-videos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .favorite-images-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4px;
    }

    .image-favorite-overlay-button {
        top: 18px;
        right: 64px;
        width: 42px;
        height: 42px;
    }

    .chat-image-overlay {
        padding: 18px;
    }

    .chat-image-overlay-image {
        max-width: 96vw;
        max-height: 84vh;
        border-radius: 0;
    }

    .chat-image-overlay-nav {
        width: 54px;
        height: 86px;
        font-size: 64px;
        background: rgba(0, 0, 0, 0.08);
    }

    .chat-image-overlay-prev {
        left: 0;
    }

    .chat-image-overlay-next {
        right: 0;
    }
}

@media (max-width: 600px) {
    .favorite-videos-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* =========================================================
   TURDR ERROR PAGES
========================================================= */

.turdr-error-page {
    position: relative;
    min-height: 100vh;
    margin: 0;
    background: #17110c;
    color: #ffffff;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.turdr-error-page::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.turdr-error-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.turdr-error-page::after {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(23, 17, 12, 0.74) 0%, rgba(61, 46, 32, 0.44) 42%, rgba(23, 17, 12, 0.14) 100%),
        linear-gradient(0deg, rgba(23, 17, 12, 0.50) 0%, rgba(23, 17, 12, 0.08) 55%, rgba(23, 17, 12, 0.42) 100%);
}

.turdr-error-page .turdr-error-image-wrap,
.turdr-error-page .turdr-error-image-wrap img {
    display: none !important;
}

.turdr-error-shell {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 18px;
    overflow: hidden;
}

.turdr-error-card {
    position: relative;
    z-index: 1;
    width: min(1060px, 100%);
    padding: 34px;
    background: transparent;
}

.turdr-error-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 28px;
}

.turdr-error-logo img {
    width: min(170px, 42vw);
    height: auto;
    display: block;
}

.turdr-error-code {
    margin: 0 0 8px;
    color: #ffda57;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.turdr-error-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    color: #ffffff;
}

.turdr-error-copy p {
    margin: 0 0 22px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.5;
}

.turdr-error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.turdr-error-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: 1px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.turdr-error-button-primary {
    background: #ffffff;
    color: #3d2e20;
}

.turdr-error-button-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

@media (max-width: 800px) {
    .turdr-error-shell {
        align-items: flex-end;
        padding: 14px;
    }

    .turdr-error-card {
        padding: 22px 10px 34px;
    }

    .turdr-error-copy p {
        font-size: 16px;
    }

    .turdr-error-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PUBLIC FAQ TILES
========================================================= */

.faq-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.faq-tile {
    display: flex;
    min-height: 158px;
    padding: 18px 14px 16px;
    background: #725b45;
    color: #ffffff;
    text-decoration: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 1px;
    transition: background 160ms ease, transform 160ms ease;
}

.faq-tile:hover,
.faq-tile:focus-visible {
    background: #80664e;
    transform: translateY(-1px);
}

.faq-tile-image {
    width: min(118px, 54%);
    max-height: 82px;
    object-fit: contain;
    display: block;
}

.faq-tile-label {
    color: #f3eadc;
    font-size: 17px;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 900px) {
    .faq-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 20px;
    }

    .faq-tile {
        min-height: 128px;
        padding: 14px 10px;
        gap: 10px;
    }

    .faq-tile-image {
        width: min(94px, 56%);
        max-height: 66px;
    }

    .faq-tile-label {
        font-size: 15px;
    }
}

.faq-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.faq-back-button {
    display: inline-flex;
    min-width: 112px;
    min-height: 40px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    background: #725b45;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 1px;
    white-space: nowrap;
}

.faq-detail-list {
    display: block;
}

.faq-section-title {
    margin: 26px 0 12px;
    color: #725b45;
    font-size: 22px;
    line-height: 1.2;
}

.faq-section-title:first-child {
    margin-top: 0;
}

@media (max-width: 700px) {
    .faq-detail-header {
        display: grid;
        grid-template-columns: 1fr;
    }

    .faq-back-button {
        width: 100%;
    }
}
