/* ==================================================
   1. ROOT VARIABLES
================================================== */
:root {

    --vt-bg: #05070b;
    --vt-bg-secondary: #0b0f14;

    --vt-border: rgba(155,122,71,0.34);

    --vt-text: #f3eee7;
    --vt-text-soft: #b9b3aa;
    --vt-text-muted: #7f7c77;

    --vt-accent: #d1bea0;
	--vt-accent-light: #eee7db;
	--vt-muted: #a9a094;

    --vt-font-heading: "Cinzel", serif;
    --vt-font-body: "Inter", sans-serif;

    --vt-content-width: 1300px;
	--line: rgba(155,122,71,0.34);
	 --vt-header-height: 68px;
    --vt-left-rail-width: 226px;

}
/* ==================================================
GLOBAL RESET / BASE
================================================== */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
@keyframes vtReplyGlow {

    0% {
        background: rgba(155,122,71,0.22);
        box-shadow:
            0 0 0 rgba(155,122,71,0),
            0 0 0 rgba(155,122,71,0);
    }

    50% {
        background: rgba(155,122,71,0.12);
        box-shadow:
            0 0 18px rgba(155,122,71,0.18),
            0 0 42px rgba(155,122,71,0.08);
    }

    100% {
        background: transparent;
        box-shadow:
            0 0 0 rgba(155,122,71,0),
            0 0 0 rgba(155,122,71,0);
    }
}

.vt-reply-node.is-new-reply {
    border-radius: 16px;
    animation: vtReplyGlow 3.2s ease;
}
body {

    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(209,190,160,0.07), transparent 34%),
        radial-gradient(circle at top right, rgba(120,90,60,0.05), transparent 30%),
        linear-gradient(180deg, #030507 0%, #070a0f 45%, #030507 100%);
    color: var(--vt-text);

    font-family: var(--vt-font-body);
    line-height: 1.7;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    z-index: -1;
}

a {
    color: var(--vt-accent);
    text-decoration: none;
}

a:hover {
    opacity: 0.85;
}
/* ==================================================
LAYOUT
================================================== */
.vt-container {

    width: 92%;
    max-width: var(--vt-content-width);
    margin: auto;
}
.vt-main {
    padding: 64px 0;
    min-height: calc(100vh - 150px);
}
.vt-category-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 24px;
}
.vt-page-head {
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
    border: 1px solid var(--vt-border);
    padding: 36px;
    margin-bottom: 28px;
}
.vt-page-kicker {
    color: var(--vt-accent);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.vt-page-kicker {
    color: var(--vt-accent);
    font-weight: 600;
}
.vt-page-head,
.vt-post,
.vt-topic-list,
.vt-empty-state,
.vt-admin-box,
.vt-form-wrap {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
        rgba(5,8,12,0.92);
    border: 1px solid rgba(155,122,71,0.34);
	border-radius: 5px;
    box-shadow:
    0 0 0 1px rgba(155,122,71,0.06),
    0 10px 30px rgba(0,0,0,0.28);
}
.vt-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--vt-text-muted);
    font-size: 0.9rem;
}

.vt-breadcrumbs a {
    color: var(--vt-accent);
}

.vt-breadcrumbs span:last-child {
    color: var(--vt-text-soft);
}

/* ==================================================
   4. TYPOGRAPHY
================================================== */
.vt-section-title {
    margin-top: 18px;
    margin-bottom: 20px;
    line-height: 1.15;
}
.vt-section-title {
    letter-spacing: 0.5px;
    text-shadow: 0 0 24px rgba(209,190,160,0.08);
}
.vt-category-title {

    font-size: 1.15rem;
    margin-bottom: 10px;

    font-family: var(--vt-font-heading);
}
.vt-category-description {

    color: var(--vt-text-soft);
    font-size: 0.96rem;
}
.vt-form-title {
    font-family: var(--vt-font-heading);
    font-size: 1.6rem;
    margin-bottom: 24px;
}
.vt-page-description {
    color: var(--vt-text-soft);
    max-width: 760px;
}
.vt-icon-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 220px;
}

.vt-icon-card > *:not(.vt-card-bg-icon) {
    position: relative;
    z-index: 2;
}

.vt-card-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.03;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-card-bg-icon {
    width: 200px !important;
    height: 200px !important;
}
/* ==================================================
   5. HEADER
================================================== */
.vt-header-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.vt-header-modern,
.vt-header-inner {
    min-height: 68px;
    padding: 0;
}
.vt-header {
	position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0,0,0,0.15);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(0,0,0,0.28);
	backdrop-filter: blur(8px);
}
.vt-header-left,
.vt-header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}
.vt-logo {
    display: flex;
    align-items: center;
    line-height: 1;
}
.vt-logo img {
    display: block;
    width: auto;
    height: 48px;
    max-height: 48px;
}
.vt-logo a {
    display: flex;
    align-items: center;
}

.vt-top-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.vt-top-nav a {
    color: var(--vt-text-soft);
    font-size: 0.92rem;
    letter-spacing: 0.4px;
}

.vt-top-nav a:hover {
    color: var(--vt-accent);
}

.vt-header-search {
	position: relative;
    width: 280px;
}

.vt-header-search input {
    width: 100%;
    height: 40px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        #0b0f14;
    border: 1px solid rgba(209,190,160,0.14);
	border-radius: 7px;
    color: var(--vt-text-soft);
    padding: 0 16px;
	padding-right: 48px;
    font-family: var(--vt-font-body);
    font-size: 0.92rem;
}

.vt-header-search input::placeholder {
    color: var(--vt-text-muted);
}
.vt-header-search input:focus {
	outline:none;
    border-color: rgba(214, 195, 165, 0.58);
    box-shadow: 0 0 0 3px rgba(214, 195, 165, 0.11);
}
.vt-header-search button {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #d6c3a5;
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
    box-shadow: none;
}

.vt-header-search button [data-vt-icon] {
    width: 18px;
    height: 18px;
}
.vt-mobile-menu {
    display: none;
}
.vt-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 44px;
    padding: 0.8rem 1rem;
}
.vt-mobile-menu a [data-vt-icon] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transform: translateY(3px);
}
.vt-mobile-menu a [data-vt-icon] svg {
    width: 22px;
    height: 22px;
    display: block;
}
.vt-mobile-menu-toggle,
.vt-mobile-search-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(209,190,160,0.24);
    background: transparent;
    color: var(--vt-accent);
    font-size: 1.2rem;
    cursor: pointer;
}

.vt-shell {
    width: calc(100% - var(--vt-left-rail-width));
    max-width: none;
    margin-left: var(--vt-left-rail-width);
    margin-right: 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    padding: 0 3% 0 28px;
}

.vt-content-column {
    min-width: 0;
}

.vt-sidebar-left {
    position: fixed;
    top: var(--vt-header-height);
    left: 0;
    bottom: 0;
    transition: transform 0.05s linear;
    width: var(--vt-left-rail-width);

    overflow-y: auto;
    overflow-x: hidden;

    padding: 28px 14px;

    border-right: 1px solid rgba(155,122,71,0.34);

    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006)),
        rgba(3,5,7,0.96);

    z-index: 80;
}


.vt-side-nav {
    border: none;
    background: transparent;
    padding: 0;
}
.vt-side-nav hr {
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 8px 0;
}

.vt-side-nav a {
    display: block;
    padding: 12px 14px;
    color: var(--vt-text-soft);
    border-left: 2px solid transparent;
    font-size: 0.92rem;
    letter-spacing: 0.35px;
}

.vt-side-nav a:hover {
    color: var(--vt-accent);
    border-left-color: rgba(209,190,160,0.55);
    background: rgba(209,190,160,0.055);
}
.vt-sidebar-left::-webkit-scrollbar {
    width: 2px;
}

.vt-sidebar-left::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
}

.vt-sidebar-left::-webkit-scrollbar-thumb {
    background: rgba(209,190,160,0.28);
}

.vt-sidebar-left::-webkit-scrollbar-thumb:hover {
    background: rgba(209,190,160,0.45);
}

.vt-nav {
    align-items: center;
}

.vt-nav a {
    line-height: 1;
}

/* ==================================================
HERO
================================================== */
.vt-forum-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 34px;
    padding: 42px 42px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background:
        radial-gradient(circle at 82% 20%, rgba(209,190,160,0.13), transparent 28%),
        radial-gradient(circle at 15% 15%, rgba(255,255,255,0.045), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)),
        rgba(5,8,12,0.94);

    box-shadow:
        0 24px 70px rgba(0,0,0,0.34),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.vt-forum-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(209,190,160,0.08), transparent 38%),
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 0,
            rgba(255,255,255,0.025) 1px,
            transparent 1px,
            transparent 80px
        );
    pointer-events: none;
}

.vt-forum-hero::after {
    content: "◌";
    position: absolute;
    right: 48px;
    bottom: 24px;
    font-size: 9rem;
    line-height: 1;
    color: rgba(209,190,160,0.045);
    font-family: var(--vt-font-heading);
    pointer-events: none;
}

.vt-hero-kicker {
    position: relative;
    color: var(--vt-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.82rem;
    font-weight: 600;
}

.vt-hero-title {
    position: relative;

    max-width: 620px;

    margin: 0 0 16px;

    font-family: var(--vt-font-heading);

    font-size: clamp(2rem, 4vw, 3.5rem);

    line-height: 1.02;

    letter-spacing: 0.5px;

    color: var(--vt-text);

    text-shadow: 0 0 34px rgba(209,190,160,0.1);
}

.vt-hero-text {
    position: relative;
    max-width: 620px;
    margin: 0;
    color: rgba(243,238,231,0.72);
    font-size: 1rem;
    line-height: 1.7;
}

.vt-hero-actions {
    position: relative;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.vt-section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.vt-section-heading-row .vt-section-title {
    margin-bottom: 0;
}

/* ==================================================
CATEGORY CARDS
================================================== */
.vt-category-card {
    background: var(--vt-bg-secondary);
    border: 1px solid var(--vt-border);
    border-radius: 5px;
    padding: 28px;
    transition: 0.2s ease;
}

.vt-category-card:hover {
    border-color: rgba(155,122,71,0.58);
    transform: translateY(-2px);
}

.vt-category-card {
    display: block;
    color: inherit;
}

.vt-category-card:hover {
    color: inherit;
}
.vt-category-stats {
    display: flex;
    gap: 18px;
    margin-top: 22px;
    color: var(--vt-text-muted);
    font-size: 0.88rem;
}

.vt-category-activity {
    margin-top: 12px;
    color: var(--vt-text-muted);
    font-size: 0.82rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 12px;
}
.vt-category-card {
    position: relative;
    overflow: hidden;
	isolation: isolate;
    min-height: 230px;
}

.vt-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(209,190,160,0.1), transparent 34%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.vt-category-card:hover::before {
    opacity: 1;
}
.vt-category-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}
.vt-category-card > *:not(.vt-category-bg-icon) {
    position: relative;
    z-index: 2;
}
.vt-category-card .vt-category-bg-icon [data-vt-icon] {
    width: 220px !important;
    height: 220px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}




.vt-category-title {
    font-size: 1.18rem;
    letter-spacing: 0.4px;
}

.vt-category-description {
    color: rgba(243,238,231,0.68);
}

.vt-category-stats {
    border-top: 1px solid rgba(209,190,160,0.08);
    padding-top: 16px;
}

/* ==================================================
TOPIC LISTS
================================================== */
.vt-topic-list {
    background: transparent;
    border: none;
    box-shadow: none;
}

.vt-topic-row {
    display: block;
    padding: 24px 6px;
    border-bottom: 1px solid rgba(209,190,160,0.12);
    background: transparent;
}

.vt-topic-row:last-child {
    border-bottom: none;
}

.vt-topic-row:hover {
    background: rgba(209,190,160,0.035);
    border-color: rgba(209,190,160,0.24);
    padding-left: 12px;
}

.vt-topic-title {
    font-family: var(--vt-font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.vt-topic-meta {
    color: var(--vt-text-muted);
    font-size: 0.9rem;
}

.vt-empty-state {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-left: 1px dashed var(--vt-border);
}
.vt-empty-state [data-vt-icon] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vt-actions {
    margin-top: 24px;
}
.vt-topic-row {
    position: relative;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.vt-topic-row:hover {
    padding-left: 30px;
    background: rgba(209,190,160,0.035);
}

.vt-topic-title {
    letter-spacing: 0.35px;
}
.vt-topic-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 24px;
    align-items: start;
}

.vt-topic-vote-box {
    position: sticky;
    top: 90px;
    border: 1px solid rgba(155,122,71,0.34);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
        rgba(5,8,12,0.92);
    padding: 16px 12px;
    text-align: center;
    box-shadow:
    0 0 0 1px rgba(155,122,71,0.06),
    0 10px 30px rgba(0,0,0,0.28);
}

.vt-vote-button {
    width: 48px;
    height: 44px;
    border: 1px solid rgba(209,190,160,0.35);
    background: transparent;
    color: var(--vt-accent);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.vt-vote-button:hover {
    background: rgba(209,190,160,0.08);
    border-color: rgba(209,190,160,0.55);
    transform: translateY(-1px);
}

.vt-vote-score {
    margin: 12px 0;
    color: var(--vt-text);
    font-family: var(--vt-font-heading);
    font-size: 1.45rem;
}

.vt-vote-help {
    margin-top: 12px;
    color: var(--vt-text-muted);
    font-size: 0.72rem;
    line-height: 1.4;
}
.vt-topic-list {
    background: transparent;
    border: none;
    box-shadow: none;
}

.vt-topic-row {
    display: block;
    padding: 24px 6px;
    border-bottom: 1px solid rgba(155,122,71,0.34);
    background: transparent;
}

.vt-topic-row:hover {
    background: rgba(209,190,160,0.035);
    border-color: rgba(155,122,71,0.58);
    padding-left: 12px;
}
.vt-topic-original {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
        rgba(5,8,12,0.92);

    border: 1px solid rgba(155,122,71,0.34);

    box-shadow:
    0 0 0 1px rgba(155,122,71,0.06),
    0 10px 30px rgba(0,0,0,0.28);

    padding: 34px;
    margin-bottom: 28px;
}
.vt-topic-row-modern {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.vt-topic-stats {
    display: flex;
    flex-direction: column;
	padding-left: 1.25rem;
    gap: 2px;

    color: var(--vt-text-muted);
    font-size: 0.82rem;
    padding-top: 1px;
}
.vt-topic-stat {
    white-space: nowrap;
}

.vt-topic-stats div + div {
    margin-top: none;
}

.vt-topic-stats strong {
    display: block;
    color: var(--vt-text);
    font-weight: 600;
}

.vt-topic-stats span {
    display: block;
}

.vt-topic-summary {
    min-width: 0;
}

.vt-topic-excerpt {
    color: var(--vt-text-soft);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 5px;
}

.vt-topic-author {
    grid-column: 2;
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 7px;

    margin-top: 18px;
    margin-right:20px;
    color: var(--vt-text-muted);
    font-size: 0.78rem;
    white-space: nowrap;
}

.vt-topic-author-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.vt-topic-author-avatar {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(209,190,160,0.35);
}

.vt-topic-author-name {
    color: var(--vt-accent);
    line-height: 1;
}

.vt-topic-author-date {
    color: var(--vt-text-muted);
    line-height: 1;
}
/* ----------------------------------------
   Topic Action Icons
---------------------------------------- */

.vt-topic-actions .vt-icon,
.vt-admin-tools .vt-icon {
    width: 14px;
    height: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0;
}

.vt-topic-actions .vt-icon svg,
.vt-admin-tools .vt-icon svg {
    width: 14px;
    height: 14px;
}

/* Buttons */
.vt-topic-action-btn,
.vt-admin-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    min-height: 34px;
    padding: 0 14px;

    border:none;

    text-decoration: none;
}
.vt-actions .vt-topic-action-btn .vt-icon {
    width: 32px !important;
    height: 32px !important;
    margin: 0 !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    background: transparent !important;
}

.vt-actions .vt-topic-action-btn .vt-icon svg {
    width: 28px !important;
    height: 28px !important;

    display: block;

    background: transparent !important;
    fill: none !important;
    stroke: currentColor !important;
}

.vt-actions .vt-topic-action-btn .vt-icon svg * {
    background: transparent !important;
    fill: currentColor !important;
}
/* ==================================================
POSTS / REPLIES
================================================== */
.vt-post {
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
    border: 1px solid var(--vt-border);
    padding: 34px;
    margin-bottom: 28px;
}
.vt-post-author {
    color: var(--vt-accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.vt-post-date {
    color: var(--vt-text-muted);
   /* font-size: 0.85rem;*/
    margin-bottom: 16px;
}
.vt-post-date,
.vt-topic-meta {
    color: var(--vt-text-muted);
    font-size: 0.9rem;
}

/*.vt-post-body {
    color: var(--vt-text-soft);
    white-space: normal;
}*/
.vt-post-body {
    color: var(--vt-text);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 26px;
}
.vt-post-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.vt-post {
    position: relative;
}

.vt-post::before,
.vt-page-head::before {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    background: linear-gradient(90deg, var(--vt-accent), transparent);
    margin-bottom: 22px;
}
.vt-post {
    background: transparent;
    border: 1px solid rgba(155,122,71,0.34);
	border-radius: 5px;
    box-shadow: none;
    padding: 20px
    border-bottom: 1px solid rgba(209,190,160,0.12);
}

.vt-post::before {
    display: none;
}

.vt-post-header {
    margin-bottom: 28px;
}

.vt-post-header h1 {
    margin: 0 0 8px;
    color: var(--vt-text);
    font-family: var(--vt-font-heading);
    font-size: 32px;
}

.vt-post-header p {
    margin: 0;
    color: var(--vt-text-soft);
}

.vt-post-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.vt-suggested-categories {
    padding: 20px;
    border: 1px solid rgba(209,190,160,0.14);
    border-radius: 16px;
    background: rgba(255,255,255,0.025);
}

.vt-suggested-categories h2 {
    margin: 0 0 6px;
    color: var(--vt-text);
    font-size: 20px;
}

.vt-suggested-categories p {
    margin: 0 0 16px;
    color: var(--vt-text-soft);
    font-size: 14px;
}

.vt-suggested-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vt-category-pill {
    padding: 10px 14px;
    border: 1px solid rgba(209,190,160,0.22);
    border-radius: 999px;
    background: transparent;
    color: var(--vt-text);
    cursor: pointer;
    font-size: 14px;
}

.vt-category-pill:hover,
.vt-category-pill.is-selected {
    background: rgba(209,190,160,0.14);
    border-color: rgba(209,190,160,0.5);
}

.vt-form-actions {
    display: flex;
    justify-content: flex-end;
}
/*UNIVERSAL POST FORM SUCCESS*/
.vt-success-message {
    display: flex;
    gap: 20px;

    margin-bottom: 28px;
    padding: 24px;

    border: 1px solid rgba(120,255,180,0.22);
    background: rgba(120,255,180,0.06);

    border-radius: 16px;
}

.vt-success-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(120,255,180,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #7dffb2;
}

.vt-success-content h2 {
    margin: 0 0 8px;

    font-size: 1.25rem;
    color: #e9f7ee;
}

.vt-success-content p {
    margin: 0 0 18px;

    color: rgba(255,255,255,0.72);
}

.vt-success-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vt-success-actions a {
    width: auto !important;
    flex: 0 0 auto !important;
}

.vt-button-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
}
/*REPLIES*/
.vt-reply-actions {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}
.vt-reply-stream {
    margin-top: 18px;
}

.vt-reply-node {
    position: relative;
    display: block;
    margin-left: 0;
}
/* curved arm from rail into this reply */
.vt-reply-content-wrap {
    position: relative;
    min-width: 0;
	margin-left: 54px;
}
/* don't draw the arm on top-level replies */
.vt-reply-stream > .vt-reply-node > .vt-reply-content-wrap::before {
    display: none;
}
.vt-reply-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
}
.vt-reply-main {
    flex: 1;
    min-width: 0;
}
.vt-reply-content {
    color: var(--vt-text-soft);
    font-size: 0.95rem;
    line-height: 1.58;
}
.vt-reply-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
	font-size: 0.85rem;
}

.vt-reply-avatar {
    flex: 0 0 38px;
}

.vt-reply-avatar img {
    width: 38px;
    height: 38px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}
/* Children get a small controlled indent */
.vt-reply-children {
    margin-left: 5px;
}
/* Stop deeper replies from stair-stepping too far */
.vt-depth-2 .vt-reply-children,
.vt-depth-2 .vt-reply-node {
    margin-left: -5px;
}
/* Curved connector only for nested replies */
.vt-reply-node:not(.vt-depth-0) > .vt-reply-content-wrap > .vt-reply-item::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 23px;
    width: 18px;
    height: 18px;
    border-left: 1px solid rgba(155,122,71,0.38);
    border-bottom: 1px solid rgba(155,122,71,0.38);
    border-bottom-left-radius: 12px;
}
.vt-reply-gutter {
    position: absolute;
    left: 0;
    top: 18px;
    width: 22px;
    height: 22px;
}
.vt-reply-gutter::before,
.vt-reply-content-wrap::before,
.vt-reply-children::before {
    display: none !important;
}
.vt-reply-collapse {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(155,122,71,0.55);
    background: #05070b;
    color: var(--vt-accent);
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    font-size: 0.95rem;
    cursor: pointer;
}
.vt-reply-author {
    color: var(--vt-text);
    font-weight: 600;
}

.vt-reply-role,
.vt-reply-date,
.vt-reply-dot {
    color: var(--vt-text-muted);
}
.vt-reply-count {
	font-size: 0.9rem;
}
.vt-reply-actions {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}
.vt-reply-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.vt-reply-actions form,
.vt-reply-admin-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.vt-reply-action-icon {
    width: 24px;
    height: 24px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--vt-text-muted);
    line-height: 1;
}

.vt-reply-action-icon:hover {
    color: var(--vt-accent);
}

.vt-reply-action-icon .vt-icon {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vt-reply-action-icon .vt-icon,
.vt-reply-action-icon svg {
    width: 14px !important;
    height: 14px !important;
    margin: 0 !important;
}
.vt-reply-action-icon svg {
    width: 12px;
    height: 12px;
}
.vt-mention {
    color: #d8b97b;
    font-weight: 600;
    background: rgba(216,185,123,0.10);
    padding: 1px 5px;
    border-radius: 6px;
    white-space: nowrap;
}
.vt-pinned-reply-label [data-vt-icon] {
    width: 20px !important;
    height: 20px !important;
    color: #d8b97b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	vertical-align: middle;
}

.vt-pinned-reply-label [data-vt-icon] svg {
    width: 20px !important;
    height: 20px !important;
}
/* ==================================================
FORMS
================================================== */
.vt-alert {
    border: 1px solid rgba(209,190,160,0.35);
    background: rgba(209,190,160,0.08);
    padding: 14px;
    margin-bottom: 20px;
    color: var(--vt-text-soft);
}

.vt-error {
    border-color: rgba(180,70,70,0.5);
    background: rgba(180,70,70,0.08);
}
.vt-field-help {
    margin-top: 8px;
    color: var(--vt-text-muted);
    font-size: 0.88rem;
}
.vt-form-wrap {
    max-width: 520px;
    margin: 0 auto;
    background: var(--vt-bg-secondary);
    border: 1px solid var(--vt-border);
    padding: 34px;
}


.vt-form-group {
    margin-bottom: 18px;
}

.vt-form-group label {
    display: block;
	font-weight: 600;
    margin-bottom: 8px;
    color: var(--vt-text-soft);
}
.vt-form-group input,
.vt-form-group select,
.vt-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(209,190,160,0.18);
    border-radius: 12px;
    background: rgba(0,0,0,0.25);
    color: var(--vt-text);
    font-family: inherit;
    font-size: 15px;
}

.vt-form-group textarea {
    resize: vertical;
    min-height: 220px;
}

.vt-form-group input:focus,
.vt-form-group select:focus,
.vt-form-group textarea:focus {
    outline: none;
    border-color: rgba(209,190,160,0.55);
    box-shadow: 0 0 0 3px rgba(209,190,160,0.08);
}
.vt-inline-form {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.vt-password-wrap {
    position: relative;
}

.vt-password-wrap input {
    padding-right: 90px;
}

.vt-password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--vt-accent);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.vt-password-toggle:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}
.vt-form-group select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        #0b0f14;

    color: var(--vt-text);

    border: 1px solid rgba(209,190,160,0.14);

    padding: 14px 48px 14px 16px;

    font-family: var(--vt-font-body);
    font-size: 0.96rem;
    line-height: 1.2;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;

    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--vt-accent) 50%),
        linear-gradient(135deg, var(--vt-accent) 50%, transparent 50%);

    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}

.vt-form-group select:hover {
    border-color: rgba(209,190,160,0.32);
}

.vt-form-group select:focus {
    outline: none;
    border-color: rgba(209,190,160,0.45);
    box-shadow: 0 0 0 3px rgba(209,190,160,0.08);
}

.vt-form-group select option {
    background: #0b0f14;
    color: var(--vt-text);
}

/*Reply To Reply Form*/
.vt-inline-reply-wrap {
    margin: 8px 0 14px 52px;
}

.vt-inline-reply-form {
    border: 1px solid rgba(155,122,71,0.34);
    border-radius: 18px;
    background: rgba(5,8,12,0.92);
    overflow: hidden;
}

.vt-inline-reply-form textarea {
    width: 100%;
    min-height: 74px;
    padding: 14px 16px;
    border: none;
    outline: none;
    resize: vertical;
    background: transparent;
    color: var(--vt-text);
    font-family: var(--vt-font-body);
}

.vt-inline-reply-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 12px;
}

.vt-inline-reply-cancel,
.vt-inline-reply-submit {
    border: none;
    padding: 9px 16px;
    cursor: pointer;
}

.vt-inline-reply-cancel {
    background: rgba(255,255,255,0.08);
    color: var(--vt-text);
}

.vt-inline-reply-submit {
    background: var(--vt-accent);
    color: #070b11;
    font-weight: 600;
}
/*Inline Reply to Topic Form*/
.vt-topic-inline-reply {
    margin: 24px 0 34px;
}

.vt-topic-inline-form {
    border: 1px solid rgba(155,122,71,0.38);
    border-radius: 18px;

    background:
        linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.01)),
        rgba(5,8,12,0.92);

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.vt-topic-inline-form textarea {
    width: 100%;
    min-height: 42px;
    height: 42px;

    padding: 12px 18px;

    border: none;
    outline: none;
    resize: none;

    background: transparent;
    color: var(--vt-text);

    font-family: var(--vt-font-body);
    font-size: 0.95rem;
    line-height: 1.5;
}

.vt-topic-inline-tools {
    display: none;

    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 0 12px 12px 18px;
}
.vt-topic-inline-format {
    color: var(--vt-text-soft);
    font-size: 0.9rem;
}

.vt-topic-inline-actions {
    display: flex;
    gap: 10px;
}

.vt-topic-inline-cancel,
.vt-topic-inline-submit {
    border: none;
    min-height: 36px;
    padding: 0 15px;
    cursor: pointer;
}

.vt-topic-inline-cancel {
    background: rgba(255,255,255,0.06);
    color: var(--vt-text-soft);
	border-radius: 5px;
}

.vt-topic-inline-submit {
    background: var(--vt-accent);
    color: #070b11;
    font-weight: 700;
	border-radius: 5px;
}
.vt-topic-inline-form.is-expanded {
    border-color: rgba(155,122,71,0.62);
    box-shadow: 0 14px 38px rgba(0,0,0,0.22);
}

.vt-topic-inline-form.is-expanded textarea {
    min-height: 92px;
    height: 92px;
    resize: vertical;
}

.vt-topic-inline-form.is-expanded .vt-topic-inline-tools {
    display: flex;
}
/* ==================================================
BUTTONS
================================================== */
.vt-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 92px;
    padding: 0 18px;
    border: 1px solid rgba(209,190,160,0.32);
	border-radius: 5px;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    line-height: 1;
}

.vt-header-btn-muted {
    color: var(--vt-accent);
    background: transparent;
}

.vt-header-btn-muted:hover {
    background: rgba(209,190,160,0.08);
}

.vt-header-btn-primary {
    color: #090909;
    background: var(--vt-accent);
    border-color: var(--vt-accent);
	border-radius: 5px;
    font-weight: 600;
}

.vt-header-btn-primary:hover {
    opacity: 0.9;
}
.vt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 120px;
    height: 44px;

    padding: 0 20px;

    border: 1px solid var(--vt-accent);
    border-radius: 5px;
    background: var(--vt-accent);
    color: #090909;

    font-family: var(--vt-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.3px;

    text-decoration: none;
    cursor: pointer;

    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vt-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.vt-small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 120px;
    height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(209,190,160,0.45);
    border-radius: 5px;
    background: transparent;
    color: var(--vt-accent);
    font-family: var(--vt-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3px;

    text-decoration: none;
    cursor: pointer;

    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vt-small-button:hover {
    background: rgba(209,190,160,0.08);
    transform: translateY(-1px);
}

.vt-danger-button {
    border-color: rgba(220,70,70,0.65);
    color: #ff8b8b;
}

.vt-danger-button:hover {
    background: rgba(220,70,70,0.08);
}
.vt-report-button {
    color: var(--vt-text-muted);
    border-color: rgba(255,255,255,0.12);
}

.vt-report-button:hover {
    color: var(--vt-accent);
    border-color: rgba(209,190,160,0.35);
    background: rgba(209,190,160,0.06);
}
.vt-actions {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
/* ==================================================
ICONS SYSTEM
================================================== */
.vt-pinned-icon {
    margin-right: 8px;
    opacity: 0.85;
	height: 20px !important;
	width: 20px !important;
}
.vt-icon {
    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;

    color: currentColor;
}

.vt-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
/* Icon Button Only */
.vt-icon-button {
    width: 42px;
    height: 42px;
    padding: 0;
	border:none;
	background: #05070b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vt-icon-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    stroke-width: 1.8;
}

.vt-icon-button [data-vt-icon] {
    width: 32px;
    height: 32px;
    display: inline-flex;
	color: var(--vt-accent);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vt-reply-actions .vt-reply-action-icon .vt-icon {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    background: transparent !important;
}

.vt-reply-actions .vt-reply-action-icon .vt-icon svg {
    width: 18px !important;
    height: 18px !important;

    display: block;

    background: transparent !important;
    fill: none !important;
    stroke: currentColor !important;
}

.vt-reply-actions .vt-reply-action-icon .vt-icon svg * {
    background: transparent !important;
    fill: currentColor !important;
}
/* --------------------------------------------------
   ARCHIVE INFOBOX SYSTEM
--------------------------------------------------- */

.vt-widget-infobox {
    position: relative;
    overflow: hidden;

    padding: 22px 24px;

    border-top: 1px solid rgba(255,255,255,0.25);
    border-left: 1px solid rgba(0,0,0,0.06);

    box-shadow:
        0 12px 34px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.28);
}

.vt-widget-infobox::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(0,0,0,0.018) 0,
            rgba(0,0,0,0.018) 1px,
            transparent 1px,
            transparent 72px
        );

    opacity: 0.32;

    pointer-events: none;
}

.vt-widget-infobox__label {
    position: relative;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 12px;
}

.vt-widget-infobox__content {
    position: relative;

    line-height: 1.75;

    font-size: 0.95rem;
}

.vt-widget-infobox--ivory {
    background:
        linear-gradient(
            135deg,
            rgba(209,190,160,0.14),
            rgba(255,255,255,0.05)
        ),
        rgba(255,248,236,0.94);
}

.vt-widget-infobox--ivory .vt-widget-infobox__label {
    color: #6d5331;
}

.vt-widget-infobox--ivory .vt-widget-infobox__content {
    color: #3f3327;
}

.vt-widget-infobox--blue {
    background:
        linear-gradient(
            135deg,
            rgba(110,145,185,0.16),
            rgba(255,255,255,0.04)
        ),
        rgba(234,242,250,0.94);
}

.vt-widget-infobox--blue .vt-widget-infobox__label {
    color: #35536e;
}

.vt-widget-infobox--blue .vt-widget-infobox__content {
    color: #23384a;
}

.vt-widget-infobox--red {
    background:
        linear-gradient(
            135deg,
            rgba(155,92,92,0.14),
            rgba(255,255,255,0.04)
        ),
        rgba(248,238,236,0.94);
}

.vt-widget-infobox--red .vt-widget-infobox__label {
    color: #6e3535;
}

.vt-widget-infobox--red .vt-widget-infobox__content {
    color: #4b2525;
}

.vt-widget-infobox--green {
    background:
        linear-gradient(
            135deg,
            rgba(118,145,118,0.14),
            rgba(255,255,255,0.04)
        ),
        rgba(239,246,239,0.94);
}

.vt-widget-infobox--green .vt-widget-infobox__label {
    color: #476447;
}

.vt-widget-infobox--green .vt-widget-infobox__content {
    color: #304530;
}

.vt-widget-infobox--violet {
    background:
        linear-gradient(
            135deg,
            rgba(126,112,152,0.15),
            rgba(255,255,255,0.04)
        ),
        rgba(242,239,248,0.94);
}

.vt-widget-infobox--violet .vt-widget-infobox__label {
    color: #584870;
}

.vt-widget-infobox--violet .vt-widget-infobox__content {
    color: #3f3450;
}
/* ==================================================
Basic modal CSS
================================================== */
.vt-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
}

.vt-modal-backdrop[hidden] {
    display: none;
}

.vt-modal {
    width: min(520px, 100%);
    background: #111;
    border: 1px solid rgba(196, 168, 102, 0.45);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.65);
}

.vt-modal h2 {
    margin-top: 0;
}

.vt-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
/* ==================================================
COMMUNITY
================================================== */
.guide-community-hero {
    border-color: rgba(214, 195, 165, 0.38);
    background:
        linear-gradient(135deg, rgba(214, 195, 165, 0.12), transparent 45%),
        rgba(12, 14, 20, 0.94);
}

.guide-community-hero .vt-hero-kicker {
    color: #d6c3a5;
}

.guide-community-card {
    border-color: rgba(214, 195, 165, 0.24);
}

.guide-community-card:hover {
    border-color: rgba(214, 195, 165, 0.6);
}

.guide-community-card .vt-category-title::after {
    content: "Guide Community";
    display: block;
    margin-top: 0.35rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(214, 195, 165, 0.68);
}
.guide-community-head {
    border-color: rgba(214, 195, 165, 0.38);
    background:
        linear-gradient(135deg, rgba(214, 195, 165, 0.10), transparent 45%),
        rgba(12, 14, 20, 0.92);
}

.guide-community-topic-row {
    border-left: 3px solid rgba(214, 195, 165, 0.45);
}

.guide-community-topic-row:hover {
    border-left-color: rgba(214, 195, 165, 0.9);
}
.guide-community-topic-stats {
	padding-left: 3rem;
}
/* ==================================================
ADMIN
================================================== */
/* Admin controls box */
.vt-post .vt-inline-form {
    align-items: center;
}
.vt-admin-box {
    margin-top: 36px;
    padding: 28px;
    border: 1px solid var(--vt-border);
    background: var(--vt-bg-secondary);
}

.vt-admin-title {
    color: var(--vt-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-weight: 600;
}
.vt-actions,
.vt-inline-form {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.vt-actions .vt-inline-form {
    margin: 0;
    display: inline-flex;
}
.vt-admin-user-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.vt-admin-user-layout .vt-post,
.vt-admin-user-layout .vt-form-wrap {
    margin: 0;
}
.vt-site-banner {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(90deg,
            rgba(120, 78, 24, 0.92),
            rgba(168, 122, 42, 0.88)
        );

    border-bottom: 1px solid rgba(255,255,255,0.08);

    color: #fff7ea;

    padding: 14px 0;

    font-size: 0.95rem;
    line-height: 1.6;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.06);
	z-index: 90;
}

.vt-site-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.03) 0,
            rgba(255,255,255,0.03) 1px,
            transparent 1px,
            transparent 80px
        );

    pointer-events: none;
}

.vt-site-banner .vt-container {
    position: relative;
    z-index: 1;
}
.vt-toggle-row {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    color: var(--vt-text);
    user-select: none;
}

.vt-toggle-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    position: relative;

    width: 54px;
    height: 30px;

    border-radius: 999px;

    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        #121820;

    border: 1px solid rgba(209,190,160,0.16);

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.vt-toggle-row input[type="checkbox"]::before {
    content: "";

    position: absolute;

    top: 3px;
    left: 3px;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: rgba(255,255,255,0.88);

    box-shadow:
        0 2px 10px rgba(0,0,0,0.28);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.vt-toggle-row input[type="checkbox"]:checked {
    background:
        linear-gradient(90deg,
            rgba(120, 78, 24, 0.95),
            rgba(168, 122, 42, 0.92)
        );

    border-color: rgba(209,190,160,0.45);
}

.vt-toggle-row input[type="checkbox"]:checked::before {
    transform: translateX(24px);
    background: #fff7ea;
}
/* =========================================================
   Guide Admin
========================================================= */

.vt-admin-hero {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid rgba(214, 195, 165, 0.25);
    border-radius: 18px;
    background: rgba(12, 14, 20, 0.92);
    margin-bottom: 1.5rem;
}

.vt-admin-hero h1 {
    margin: 0.25rem 0 0.5rem;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.vt-admin-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.vt-admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vt-admin-stat {
    padding: 1.25rem;
    border: 1px solid rgba(214, 195, 165, 0.22);
    border-radius: 16px;
    background: rgba(12, 14, 20, 0.86);
}

.vt-admin-stat span {
    display: block;
    font-size: 0.8rem;
    color: rgba(235, 230, 218, 0.65);
    margin-bottom: 0.35rem;
}

.vt-admin-stat strong {
    display: block;
    font-size: 1.8rem;
    color: #d6c3a5;
}

.vt-admin-panel {
    padding: 1.5rem;
    border: 1px solid rgba(214, 195, 165, 0.22);
    border-radius: 18px;
    background: rgba(12, 14, 20, 0.9);
}

.vt-admin-panel-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.vt-admin-panel-header h2 {
    margin: 0 0 0.35rem;
}

.vt-admin-muted {
    color: rgba(235, 230, 218, 0.65);
    margin: 0;
}

.vt-admin-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(214, 195, 165, 0.18);
    border-radius: 14px;
}

.vt-admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.vt-admin-table th,
.vt-admin-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(214, 195, 165, 0.14);
    text-align: left;
    vertical-align: middle;
}

.vt-admin-table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(235, 230, 218, 0.6);
    background: rgba(255, 255, 255, 0.03);
}

.vt-admin-table tr:last-child td {
    border-bottom: 0;
}

.vt-admin-table-title {
    display: block;
    color: #f4ead8;
    margin-bottom: 0.25rem;
}

.vt-admin-table-subtext {
    font-size: 0.78rem;
    color: rgba(235, 230, 218, 0.48);
}

.vt-admin-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    border: 1px solid rgba(214, 195, 165, 0.25);
    background: rgba(214, 195, 165, 0.08);
    color: #d6c3a5;
}

.vt-admin-pill.published {
    color: #b8f5cf;
    border-color: rgba(99, 255, 157, 0.25);
    background: rgba(99, 255, 157, 0.08);
}

.vt-admin-pill.draft {
    color: #f5d28a;
    border-color: rgba(245, 210, 138, 0.25);
    background: rgba(245, 210, 138, 0.08);
}

.vt-admin-pill.archived {
    color: #b9b9c7;
    border-color: rgba(185, 185, 199, 0.22);
    background: rgba(185, 185, 199, 0.07);
}

.vt-admin-table-actions {
    white-space: nowrap;
}

.vt-admin-table-actions a {
    color: #d6c3a5;
    text-decoration: none;
    font-size: 0.9rem;
}

.vt-admin-table-actions a:hover {
    text-decoration: none;
}

.vt-admin-empty {
    padding: 2rem;
    text-align: center;
    border: 1px dashed rgba(214, 195, 165, 0.25);
    border-radius: 16px;
}

@media (max-width: 900px) {
    .vt-admin-hero,
    .vt-admin-panel-header {
        flex-direction: column;
    }

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

@media (max-width: 560px) {
    .vt-admin-stats {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   Guide Admin Forms
========================================================= */

.vt-admin-alert {
    padding: 1rem 1.25rem;
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.vt-admin-alert ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.vt-admin-alert-error {
    border: 1px solid rgba(255, 98, 98, 0.35);
    background: rgba(255, 98, 98, 0.08);
    color: #ffd1d1;
}

.vt-admin-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.5rem;
}

.vt-admin-form-main,
.vt-admin-form-side {
    min-width: 0;
}

.vt-admin-form-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vt-admin-field {
    margin-bottom: 1rem;
}

.vt-admin-field label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    color: #e8dfcf;
}

.vt-admin-field input,
.vt-admin-field select,
.vt-admin-field textarea {
    width: 100%;
    border: 1px solid rgba(214, 195, 165, 0.25);
    border-radius: 12px;
    background: rgba(5, 7, 11, 0.72);
    color: #f4ead8;
    padding: 0.8rem 0.9rem;
    font: inherit;
    box-sizing: border-box;
}

.vt-admin-field textarea {
    resize: vertical;
}

.vt-admin-field input:focus,
.vt-admin-field select:focus,
.vt-admin-field textarea:focus {
    outline: none;
    border-color: rgba(214, 195, 165, 0.7);
    box-shadow: 0 0 0 3px rgba(214, 195, 165, 0.08);
}

.vt-admin-field small {
    display: block;
    margin-top: 0.4rem;
    color: rgba(235, 230, 218, 0.55);
}

.vt-admin-check {
    display: flex;
    align-items: center;
    min-height: 54px;
    gap: 0.6rem;
    align-items: center;
    padding: 0.85rem;
    border: 1px solid rgba(214, 195, 165, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.vt-admin-check input {
    width: auto;
}
.vt-admin-field input[type="number"] {
    min-height: 42px;
}
.vt-admin-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(209,190,160,0.45);
  border-radius: 5px;
  background: transparent;
  color: var(--vt-accent);
  font-family: var(--vt-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.vt-admin-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
/* TinyMCE dark integration */
.tox-tinymce {
    border: 1px solid rgba(214, 195, 165, 0.25) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

@media (max-width: 900px) {
    .vt-admin-form-grid {
        grid-template-columns: 1fr;
    }
}
/* ==================================================
ACCOUNT
================================================== */
.vt-avatar-frame {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vt-avatar-frame img {
    display: block;
}
.vt-avatar-small {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(155,122,71,0.34);
    background: #090d12;
}
.vt-avatar-large {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border: 1px solid var(--vt-border);
    border-radius: 50%;
}
.vt-avatar-small,
.vt-avatar-large {
    box-shadow: 0 0 0 3px rgba(209,190,160,0.06);
}
.vt-side-nav a.vt-account-nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    white-space: nowrap;
}

.vt-side-nav a.vt-account-nav-link .vt-account-nav-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    line-height: 0 !important;
}

.vt-side-nav a.vt-account-nav-link .vt-account-nav-icon [data-vt-icon] {
    width: 24px !important;
    height: 24px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    line-height: 0 !important;
}

.vt-side-nav a.vt-account-nav-link .vt-account-nav-icon svg {
    width: 24px !important;
    height: 24px !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    stroke: currentColor !important;
}
.vt-icon-button.vt-message-icon {
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vt-message-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7a1f1f;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1;
    border: 1px solid rgba(218, 181, 96, 0.7);
}

.vt-side-nav a.vt-account-nav-link .vt-account-nav-text {
    display: block;
    line-height: 1 !important;
}
.vt-right-widget {
    position: static;
    max-height: none;
}
.vt-account-menu {
    position: relative;
}

.vt-account-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    padding-top: 8px;
    right: 0;
    min-width: 220px;
    z-index: 200;

    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
        rgba(5,8,12,0.98);

    border: 1px solid rgba(209,190,160,0.16);

    box-shadow:
        0 18px 46px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.035);
}
.vt-account-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.vt-account-menu:hover .vt-account-dropdown,
.vt-account-menu:focus-within .vt-account-dropdown {
    display: block;
}

.vt-account-dropdown a {
    display: block;
    padding: 13px 16px;
    color: var(--vt-text-soft);
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vt-account-dropdown a:last-child {
    border-bottom: none;
}

.vt-account-dropdown a:hover {
    color: var(--vt-accent);
    background: rgba(209,190,160,0.06);
}
.vt-avatar-wrap {
    position: relative;
    display: inline-flex;
	bottom: 15px;
}

.vt-avatar-small {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}
/* =========================
   MODERN DM WORKSPACE
========================= */

.vt-dm-workspace {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 24px;
}

.vt-dm-workspace-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}
.vt-dm-icon-placeholder {
	width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #dab560;
    font-weight: 800;
}

.vt-dm-workspace-head h1 {
    margin: 0;
    font-size: 2rem;
    line-height: 1;
}

.vt-dm-new-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 8px;
    border: 1px solid rgba(218, 181, 96, 0.45);
    color: #dab560;
    text-decoration: none;
    background: rgba(218, 181, 96, 0.07);
    font-weight: 700;
}

.vt-dm-new-btn:hover {
    background: rgba(218, 181, 96, 0.13);
}

/* Main shell */

.vt-dm-shell {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 14px;
    min-height: 680px;
}

/* Left inbox */

.vt-dm-inbox-panel,
.vt-dm-chat-panel {
    border: 1px solid rgba(218, 181, 96, 0.22);
    border-radius: 10px;
    background:
        linear-gradient(
            180deg,
            rgba(8, 10, 14, 0.9),
            rgba(4, 6, 10, 0.94)
        );
    overflow: hidden;
}

.vt-dm-inbox-panel {
    padding: 12px;
}

.vt-dm-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid rgba(218, 181, 96, 0.22);
    background: rgba(0, 0, 0, 0.24);
}

.vt-dm-search-box span {
    color: #dab560;
    flex: 0 0 auto;
}

.vt-dm-search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #f4f4f4;
    font: inherit;
    font-size: 0.9rem;
}

.vt-dm-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.vt-dm-conversation-list {
    display: flex;
    flex-direction: column;
}

.vt-dm-conversation-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 12px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(218, 181, 96, 0.1);
    transition: background 0.18s ease, border-color 0.18s ease;
}

.vt-dm-conversation-item:last-child {
    border-bottom: 0;
}

.vt-dm-conversation-item:hover {
    background: rgba(218, 181, 96, 0.06);
}

.vt-dm-conversation-item.is-unread {
    background:
        linear-gradient(
            90deg,
            rgba(218, 181, 96, 0.14),
            rgba(218, 181, 96, 0.03)
        );
}

.vt-dm-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #dab560;
    font-weight: 800;
    background: rgba(218, 181, 96, 0.12);
    border: 1px solid rgba(218, 181, 96, 0.32);
}

.vt-dm-avatar.is-large {
    width: 54px;
    height: 54px;
}

.vt-dm-conversation-body {
    min-width: 0;
    flex: 1;
}

.vt-dm-conversation-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 5px;
}

.vt-dm-conversation-top strong {
    color: #f4f4f4;
    font-size: 0.95rem;
}

.vt-dm-conversation-top span {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.74rem;
    white-space: nowrap;
}

.vt-dm-conversation-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.84rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.vt-dm-conversation-item.is-unread .vt-dm-conversation-top strong,
.vt-dm-conversation-item.is-unread .vt-dm-conversation-body p {
    color: #dab560;
}

.vt-dm-unread-dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #b88a2b;
    color: #111;
    font-size: 0.72rem;
    font-weight: 900;
    flex: 0 0 auto;
}

/* Right chat panel */

.vt-dm-chat-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.vt-dm-chat-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(218, 181, 96, 0.22);
}

.vt-dm-chat-person {
    display: flex;
    align-items: center;
    gap: 14px;
	flex: 1;
    min-width: 0;
}

.vt-dm-chat-person h2 {
    margin: 0 0 4px;
    font-size: 1.2rem;
}

.vt-dm-chat-person p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.85rem;
}

.vt-dm-chat-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 30px;
    gap: 14px; /* space between icon, heading, and text */
}
.vt-dm-chat-empty svg {
	height: 50px;
	width: 50px;
}

.vt-dm-chat-empty span {
    display: block;
    font-size: 3rem;
    color: #dab560;
    margin-bottom: 8px;
}

.vt-dm-chat-empty h3 {
    margin: 0;
    color: #f4f4f4;
    font-size: 1.4rem;
}

.vt-dm-chat-empty p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    max-width: 400px;
}

.vt-dm-reply-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(218, 181, 96, 0.22);
    background: rgba(0, 0, 0, 0.28);
}

.vt-dm-reply-bar > span {
    color: #dab560;
}
.vt-dm-reply-bar > span svg {
	height: 28px;
	width: 28px;
}

.vt-dm-reply-bar input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font: inherit;
}

.vt-dm-reply-bar button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #b88a2b;
    color: #111;
    opacity: 0.55;
}
.vt-dm-reply-bar button svg {
	width: 28px;
	height: 28px;
}

/* Empty inbox */

.vt-dm-mini-empty {
    padding: 26px 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
}

/* Mobile */

@media (max-width: 980px) {
    .vt-dm-shell {
        grid-template-columns: 1fr;
    }

    .vt-dm-chat-panel {
        min-height: 460px;
    }
}

@media (max-width: 640px) {
    .vt-dm-workspace {
        padding: 16px;
    }

    .vt-dm-workspace-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .vt-dm-shell {
        min-height: auto;
    }
}

/* =========================
   MESSAGE ROWS
========================= */

.vt-message-row {
    position: relative;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 18px 22px;

    text-decoration: none;
    color: inherit;

    border-bottom: 1px solid rgba(218,181,96,0.10);

    transition:
        background 0.18s ease,
        transform 0.18s ease;
}

.vt-message-row:hover {
    background: rgba(218,181,96,0.04);
	transform: translateX(2px);
}

.vt-message-row.is-unread {
    background:
        linear-gradient(
            90deg,
            rgba(218, 181, 96, 0.14),
            rgba(218, 181, 96, 0.03)
        );

    border-left: 3px solid rgba(218, 181, 96, 0.75);
}

.vt-message-avatar {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1rem;
    font-weight: 800;

    color: #dab560;

    background:
        radial-gradient(
            circle at top,
            rgba(218,181,96,0.22),
            rgba(218,181,96,0.06)
        );

    border: 1px solid rgba(218,181,96,0.30);

    flex-shrink: 0;
}

.vt-message-info {
    flex: 1;
    min-width: 0;
}

.vt-message-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.vt-message-topline h2 {
    margin: 0;
    font-size: 1rem;
    color: #f3f3f3;
}

.vt-message-topline span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
}

.vt-message-info p {
    margin: 6px 0 0;

    color: rgba(255,255,255,0.62);

    font-size: 0.92rem;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vt-message-unread-count {
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7a5a1f;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:none;
}
.vt-message-row.is-unread .vt-message-info p {
    color: rgba(255,255,255,0.84);
}
/* =========================
   DM FORM
========================= */

.vt-dm-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.vt-dm-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vt-dm-field label {
    color: #f2f2f2;
    font-weight: 700;
    font-size: 0.95rem;
}

.vt-dm-field input,
.vt-dm-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(218, 181, 96, 0.28);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.28);
    color: #f4f4f4;
    padding: 13px 14px;
    font: inherit;
    outline: none;
}

.vt-dm-field textarea {
    resize: vertical;
    min-height: 160px;
}

.vt-dm-field input:focus,
.vt-dm-field textarea:focus {
    border-color: rgba(218, 181, 96, 0.72);
    box-shadow: 0 0 0 2px rgba(218, 181, 96, 0.12);
}

.vt-dm-field small {
    color: rgba(255,255,255,0.52);
    font-size: 0.82rem;
}

.vt-dm-form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.vt-dm-cancel {
    color: rgba(218, 181, 96, 0.9);
    text-decoration: none;
}

.vt-dm-cancel:hover {
    text-decoration: underline;
}
/* =========================
   DM BUTTONS
========================= */

.vt-dm-form .vt-btn,
.vt-conversation-reply-form .vt-btn,
.vt-dm-action  {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 18px;

    border-radius: 6px;

    border: 1px solid rgba(218, 181, 96, 0.34);

    background:
        linear-gradient(
            180deg,
            rgba(218, 181, 96, 0.14),
            rgba(218, 181, 96, 0.06)
        );

    color: #dab560;

    text-decoration: none;

    font-size: 0.92rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.vt-dm-form .vt-btn:hover,
.vt-conversation-reply-form .vt-btn:hover,
.vt-dm-action:hover  {
    background:
        linear-gradient(
            180deg,
            rgba(218, 181, 96, 0.22),
            rgba(218, 181, 96, 0.10)
        );

    border-color: rgba(218, 181, 96, 0.52);

    transform: translateY(-1px);
}

.vt-dm-form .vt-btn:active,
.vt-conversation-reply-form .vt-btn:active,
.vt-dm-action:active  {
    transform: translateY(0);
}

.vt-dm-cancel {
    color: rgba(218, 181, 96, 0.88);
    text-decoration: none;
    font-size: 0.92rem;
}

.vt-dm-cancel:hover {
    text-decoration: underline;
}
/* =========================
   Compose Panel
========================= */
.vt-dm-compose-panel {
    flex: 1;
    padding: 28px;
}

.vt-dm-compose-form {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.vt-dm-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vt-dm-field label {
    color: #f4f4f4;
    font-weight: 700;
}

.vt-dm-field input,
.vt-dm-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(218, 181, 96, 0.28);
    border-radius: 8px;
    background: rgba(0,0,0,0.28);
    color: #f4f4f4;
    padding: 13px 14px;
    font: inherit;
    outline: none;
}

.vt-dm-field textarea {
    resize: vertical;
    min-height: 180px;
}

.vt-dm-field input:focus,
.vt-dm-field textarea:focus {
    border-color: rgba(218, 181, 96, 0.72);
    box-shadow: 0 0 0 2px rgba(218, 181, 96, 0.12);
}

.vt-dm-compose-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.vt-dm-send-btn {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid rgba(218, 181, 96, 0.45);
    background: rgba(218, 181, 96, 0.12);
    color: #dab560;
    font-weight: 800;
    cursor: pointer;
}

.vt-dm-send-btn:hover {
    background: rgba(218, 181, 96, 0.2);
}

.vt-dm-cancel {
    color: rgba(218, 181, 96, 0.88);
    text-decoration: none;
}

.vt-dm-cancel:hover {
    text-decoration: underline;
}
/* =========================
   USER SEARCH
========================= */

.vt-dm-user-search {
    position: relative;
	z-index: 100;
}

.vt-user-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;

    display: none;

    background: rgba(8, 10, 14, 0.98);

    border: 1px solid rgba(218, 181, 96, 0.24);

    border-radius: 8px;

    overflow: hidden;

    z-index: 9999;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.45);
}

.vt-user-result-item {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 12px 14px;

    background: transparent;

    border: none;

    color: #f4f4f4;

    text-align: left;

    cursor: pointer;

    font: inherit;

    transition: background 0.15s ease;
}

.vt-user-result-item:hover {
    background: rgba(218, 181, 96, 0.08);
}
/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .vt-dm-empty {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .vt-message-row {
        padding: 16px;
    }

    .vt-message-topline {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

}
.vt-dm-conversation-item.is-active {
    background: rgba(218, 181, 96, 0.12);
    border: 1px solid rgba(218, 181, 96, 0.38);
    border-radius: 8px;
}

/* =========================
   DM CHAT BUBBLES
========================= */

.vt-dm-chat-thread {
    flex: 1;
    padding: 28px 34px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vt-dm-bubble-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.vt-dm-bubble-row.is-mine {
    justify-content: flex-end;
}

.vt-dm-bubble-row.is-theirs {
    justify-content: flex-start;
}

.vt-dm-message-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    border: 1px solid rgba(218, 181, 96, 0.28);
    background: rgba(218, 181, 96, 0.08);
}

.vt-dm-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*.vt-dm-bubble-row.is-mine {
    justify-content: flex-end;
}

.vt-dm-bubble-row.is-theirs {
    justify-content: flex-start;
}*/

.vt-dm-bubble-row.is-mine {
    flex-direction: row-reverse;
}

.vt-dm-bubble {
    position: relative;
    width: min(68%, 620px);
    padding: 18px 18px 14px 18px;
    background:
        linear-gradient(
            180deg,
            rgba(18, 20, 24, 0.94),
            rgba(10, 12, 16, 0.96)
        )
    box-shadow: 0 10px 26px rgba(0,0,0,0.24);
    overflow: hidden;
}

/* Subtle quote/icon watermark */
.vt-dm-bubble::before {
    content: "“";
    position: absolute;
    top: 2px;
    left: 8px;
    font-size: 4.2rem;
    line-height: 1;
    color: rgba(218, 181, 96, 0.11);
    font-family: Georgia, serif;
    font-weight: 700;
    pointer-events: none;
    user-select: none;
}

.vt-dm-bubble-row.is-mine .vt-dm-bubble {
	border: 1px solid rgba(218, 181, 96, 0.16);
	border-right: 3px solid rgba(218, 181, 96, 0.95);
    border-radius: 0 14px 0 14px;
}

.vt-dm-bubble-row.is-theirs .vt-dm-bubble {
	border: 1px solid rgba(218, 181, 96, 0.16);
	border-left: 3px solid rgba(120, 132, 150, 0.95);
	border-radius: 14px 0 14px 0;
}

.vt-dm-bubble p {
    position: relative;
    z-index: 1;
    margin: 8px 0 0 25px;
    color: rgba(255,255,255,0.9);
    line-height: 1.58;
    font-size: 0.96rem;
}

.vt-dm-bubble span {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.74rem;
}

.vt-dm-bubble-row.is-mine .vt-dm-bubble span {
    color: rgba(218, 181, 96, 0.7);
}

@media (max-width: 768px) {
    .vt-dm-chat-thread {
        padding: 20px;
    }

    .vt-dm-bubble {
        width: 82%;
    }

    .vt-dm-message-avatar {
        width: 30px;
        height: 30px;
    }
}
.vt-dm-avatar {
    overflow: hidden;
}

.vt-dm-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vt-message-info {
    min-width: 0;
}
.vt-message-info p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vt-confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(5px);
}

.vt-confirm-overlay[hidden] {
    display: none;
}

.vt-confirm-box {
    width: min(100%, 440px);

    padding: 28px;

    border-radius: 12px;

    background:
        linear-gradient(
            180deg,
            rgba(12, 14, 20, 0.98),
            rgba(5, 7, 10, 0.98)
        );

    border: 1px solid rgba(218, 181, 96, 0.35);

    box-shadow:
        0 25px 80px rgba(0,0,0,0.65),
        0 0 0 1px rgba(0,0,0,0.5);
}

.vt-confirm-box h2 {
    margin: 0 0 10px;
    color: #f4f4f4;
    font-size: 1.45rem;
}

.vt-confirm-box p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
}

.vt-confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;

    margin-top: 24px;
}

.vt-confirm-cancel,
.vt-confirm-delete {
    min-height: 40px;
    padding: 0 16px;

    border-radius: 6px;

    font: inherit;
    font-weight: 700;

    cursor: pointer;
}

.vt-confirm-cancel {
    background: transparent;
    color: rgba(218, 181, 96, 0.9);
    border: 1px solid rgba(218, 181, 96, 0.24);
}

.vt-confirm-cancel:hover {
    background: rgba(218, 181, 96, 0.07);
}

.vt-confirm-delete {
    background: rgba(122, 31, 31, 0.92);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
}

.vt-confirm-delete:hover {
    background: rgba(150, 38, 38, 0.96);
}

body.vt-modal-open {
    overflow: hidden;
}
/*new delete css*/
.vt-dm-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(218, 181, 96, 0.22);
}
.vt-dm-chat-header svg:hover {
	color: rgba(218,181,96,.50);
}
.vt-dm-chat-actions {
    margin-left: auto;
    flex: 0 0 auto;
}

.vt-dm-delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    min-height: 38px;
    padding: 0 14px;

    border:none;

    background: transparent;
    color: #dab560;

    cursor: pointer;
}

/* =========================
   ACCOUNT MESSAGE PREVIEW
========================= */

.vt-account-panel-link {
    color: rgba(218, 181, 96, 0.9);
    font-size: 0.85rem;
    text-decoration: none;
}

.vt-account-panel-link:hover {
    text-decoration: underline;
}

.vt-account-message-preview-list {
    margin-top: 14px;
}

.vt-account-message-preview {
    display: block;
    padding: 12px 0;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    border-top: 1px solid rgba(218, 181, 96, 0.22);
}

.vt-account-message-preview:first-child {
    border-top: none;
    padding-top: 0;
}

.vt-account-message-preview-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 5px;
}

.vt-account-message-preview-top strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.vt-account-message-preview-top span {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    white-space: nowrap;
}

.vt-account-message-preview p {
    margin: 0;
    color: rgba(255,255,255,0.58);
    font-size: 0.86rem;
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vt-account-message-preview p span {
    font-weight: 700;
}

.vt-account-message-preview.is-unread strong,
.vt-account-message-preview.is-unread p {
    color: #dab560;
}

.vt-account-message-preview.is-read strong {
    color: rgba(255,255,255,0.82);
}
/* USER BADGES---------------------------------------*/
.vt-user-mini-badge {
    display: inline-flex;
    align-items: center;
	justify-content: center;
    position: relative;
    padding: 3px 7px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    margin-left: 6px;
}

.vt-user-mini-badge-admin {
    color: #ff6b6b;
}

.vt-user-mini-badge-moderator {
    color: #6fa8ff;
}
.vt-user-mini-badge {
    width: 18px;
    height: 18px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vt-user-mini-badge [data-vt-icon],
.vt-user-mini-badge [data-vt-icon] svg {
    width: 18px !important;
    height: 18px !important;
    display: block;
}
.vt-topic-mini-badges {
    display: inline-flex;
    align-items: center;
	justify-content: center;
    gap: 10px;
    margin-left: 10px;
}

.vt-topic-mini-badge {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}

.vt-topic-mini-badge [data-vt-icon],
.vt-topic-mini-badge [data-vt-icon] svg {
    width: 28px !important;
    height: 28px !important;
	display: block;
}

.vt-topic-mini-badge-admin {
    color: #ff6b6b;
}

.vt-topic-mini-badge-moderator {
    color: #6fa8ff;
}

.vt-topic-mini-badge-trusted_member {
    color: #d6b86a;
}

.vt-topic-mini-badge-community_reviewer {
    color: #6ccf9f;
}
/* -----------------------------------
     Settings Page Css
---------------------------------------*/
.vt-settings-page {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 32px 24px 80px;
}

.vt-settings-hero {
    margin-bottom: 28px;
}

.vt-settings-hero h1 {
    margin: 0 0 10px;
    font-size: 2.2rem;
}

.vt-settings-hero p {
    margin: 0;
    max-width: 680px;
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
}

.vt-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.vt-settings-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(218,181,96,0.22);
    background: linear-gradient(180deg, rgba(12,14,18,0.88), rgba(5,7,10,0.94));
    color: inherit;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.vt-settings-card svg {
	height: 28px;
	width: 28px;
}

.vt-settings-card:hover {
    transform: translateY(-2px);
    border-color: rgba(218,181,96,0.45);
    background: rgba(218,181,96,0.07);
}

.vt-settings-card > span {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #dab560;
    background: rgba(218,181,96,0.10);
    border: 1px solid rgba(218,181,96,0.25);
    flex: 0 0 auto;
}

.vt-settings-card h2 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.vt-settings-card p {
    margin: 0;
    color: rgba(255,255,255,0.62);
    line-height: 1.5;
    font-size: .92rem;
}

@media (max-width: 760px) {
    .vt-settings-grid {
        grid-template-columns: 1fr;
    }
}

.vt-settings-section {
    border: 1px solid rgba(218,181,96,.22);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(12,14,18,.88), rgba(5,7,10,.94));
    overflow: hidden;
}

.vt-settings-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 22px;
    border-bottom: 1px solid rgba(218,181,96,.14);
}

.vt-settings-row:last-child {
    border-bottom: none;
}

.vt-settings-row-main h2 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.vt-settings-row-main p {
    margin: 0;
    color: rgba(255,255,255,.62);
    line-height: 1.5;
}

.vt-settings-row-side {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.vt-settings-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(218,181,96,.35);
}

.vt-settings-link {
    color: #dab560;
    text-decoration: none;
    font-weight: 700;
}

.vt-settings-link:hover {
    text-decoration: underline;
}

.vt-settings-status {
    color: #dab560;
    font-size: .85rem;
}

.vt-settings-status.is-warning {
    color: #d78d5a;
}

.vt-settings-select {
    min-width: 240px;
    border: 1px solid rgba(218,181,96,.28);
    border-radius: 8px;
    background: rgba(0,0,0,.32);
    color: #f4f4f4;
    padding: 11px 12px;
    font: inherit;
}

.vt-settings-button {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid rgba(218,181,96,.42);
    background: rgba(218,181,96,.12);
    color: #dab560;
    font-weight: 800;
    cursor: pointer;
}

.vt-settings-button:hover {
    background: rgba(218,181,96,.2);
}

.vt-settings-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(218,181,96,.28);
    background: rgba(218,181,96,.08);
    color: #dab560;
}

@media (max-width: 760px) {
    .vt-settings-row {
        flex-direction: column;
    }

    .vt-settings-row-side {
        justify-content: flex-start;
    }

    .vt-settings-select {
        width: 100%;
    }
}
/* --------------------------------------------------
   USERNAME GENERATOR
--------------------------------------------------- */

.vt-username-generator {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 10px;
    align-items: center;
}

.vt-username-refresh {
    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(209,190,160,0.35);

    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
        rgba(5,8,12,0.92);

    color: var(--vt-accent);

    font-size: 1.25rem;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.vt-username-refresh:hover {
    background: rgba(209,190,160,0.08);
    border-color: rgba(209,190,160,0.55);
    transform: translateY(-1px);
}

.vt-username-refresh:disabled {
    opacity: 0.5;
    cursor: wait;
}
/* --------------------------------------------------
   BIRTHDATE WHEEL PICKER
--------------------------------------------------- */

.vt-birth-wheel {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 0.9fr;
    gap: 12px;
}

.vt-wheel-column {
    position: relative;
}

.vt-wheel-label {
    margin-bottom: 7px;
    color: var(--vt-text-muted);
    font-size: 0.76rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vt-wheel-select {
    width: 100%;
    height: 48px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
        #070a0f;

    border: 1px solid rgba(209,190,160,0.18);

    color: var(--vt-text);

    padding: 0 14px;

    font-family: var(--vt-font-body);
    font-size: 0.95rem;

    cursor: pointer;
}

.vt-wheel-select:focus {
    outline: none;
    border-color: rgba(209,190,160,0.5);
    box-shadow: 0 0 0 3px rgba(209,190,160,0.08);
}

.vt-wheel-select option {
    background: #070a0f;
    color: var(--vt-text);
}
/* --------------------------------------------------
   GENERATED USERNAME PANEL
--------------------------------------------------- */

.vt-generated-identity {
    position: relative;
    margin-top: 28px;
    padding: 34px 28px;
    border-top: 1px solid rgba(209,190,160,0.28);
    border-bottom: 1px solid rgba(209,190,160,0.08);
    background:
        radial-gradient(circle at top right, rgba(209,190,160,0.08), transparent 32%),
        linear-gradient(
            135deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        ),
        rgba(5,8,12,0.92);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.vt-generated-identity-label {
    color: rgba(243,238,231,0.55);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
	overflow-wrap: anywhere;
    word-break: break-word;
}

.vt-generated-identity-name {
    color: var(--vt-accent);

    font-family: var(--vt-font-heading);

    font-size: clamp(1.6rem, 3vw, 2.4rem);

    letter-spacing: 1px;

    text-shadow:
        0 0 24px rgba(209,190,160,0.10);
}

.vt-generated-identity-subtext {
    margin-top: 20px;

    color: rgba(243,238,231,0.58);

    font-size: 0.92rem;
    line-height: 1.7;
}

.vt-header-user-menu {
    position: relative;
}

.vt-header-user-trigger {
    height: 44px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 0 10px 0 4px;

    border: none;

    background: transparent;

    color: var(--vt-text-soft);

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.vt-header-user-trigger:hover {
    background: transparent;

    color: var(--vt-accent);
}

.vt-header-user-avatar {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    object-fit: cover;

    display: block;

    border: 1px solid rgba(155,122,71,0.18);
}

.vt-header-user-name {
    color: var(--vt-text);

    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2px;

    white-space: nowrap;
}

.vt-header-user-menu:hover .vt-header-user-dropdown {
    display: block;
}

.vt-header-user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 190px;
    z-index: 50;
}
/* Idle Warning*/
.vt-session-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(3, 5, 8, 0.76);
    backdrop-filter: blur(8px);
}

.vt-session-modal.is-visible {
    display: flex;
}

.vt-session-modal__box {
    width: min(100%, 460px);

    padding: 34px 30px;

    border: 1px solid rgba(155,122,71,0.48);

    background:
        radial-gradient(circle at top right, rgba(155,122,71,0.12), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        #06090d;

    box-shadow:
        0 30px 90px rgba(0,0,0,0.55),
        inset 0 0 0 1px rgba(255,255,255,0.025);

    text-align: center;
}

.vt-session-modal__label {
    margin-bottom: 12px;

    color: #d8b97b;

    font-size: 0.76rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.vt-session-modal__box h2 {
    margin: 0 0 14px;

    color: var(--vt-text);
    font-family: var(--vt-font-heading);
    font-size: 1.6rem;
    font-weight: 500;
}

.vt-session-modal__box p {
    margin: 0;

    color: var(--vt-text-soft);
    line-height: 1.7;
}

.vt-session-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: center;

    margin-top: 26px;
}

.vt-session-modal__btn {
    min-height: 42px;

    padding: 0 18px;

    border: 1px solid rgba(155,122,71,0.42);

    cursor: pointer;
}

.vt-session-modal__btn--muted {
    background: transparent;
    color: var(--vt-text-soft);
}

.vt-session-modal__btn--primary {
    background: #d8b97b;
    color: #070b11;
}
/* =========================================================
   TinyMCE Layout Fix
========================================================= */

.vt-admin-form-main {
    min-width: 0;
}

.vt-admin-field {
    min-width: 0;
}

.tox-tinymce {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 14px !important;
    overflow: hidden !important;
}

.tox-editor-container,
.tox-edit-area,
.tox-edit-area iframe {
    width: 100% !important;
}

.tox .tox-toolbar,
.tox .tox-toolbar__primary,
.tox .tox-menubar {
    background: #11151c !important;
}

.tox .tox-edit-area__iframe {
    background: #0b0d12 !important;
}

.tox .tox-statusbar {
    background: #11151c !important;
    border-top: 1px solid rgba(214, 195, 165, 0.12) !important;
}
/* ==================================================
FOOTER
================================================== */
.vt-site-footer {
	position: relative;
	z-index:90;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 36px 60px 28px;
    background-image:
        linear-gradient(
            180deg,
            rgba(5,7,11,0.82),
            rgba(5,7,11,0.90)
        ),
        url("/assets/img/footer-bg.png");
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid var(--line);
	overflow: hidden;
}
.vt-footer-newsletter,
.vt-footer-brand,
.vt-footer-links {
    background: transparent;
    position: relative;
    z-index: 1;
}
.vt-site-footer > * {
    position: relative;
    z-index: 1;
}
.vt-project-desc {
	font-size: 10px;
	color: #bbbbbb;
	margin-bottom:15px;
}
.vt-site-footer p{
  margin: 0;
  color: var(--vt-muted);
  font-size: 14px;
  line-height: 1.65;
}
.vt-footer-newsletter h3 {
	color: var(--vt-accent-light);
}
.vt-footer-brand {
    text-align: center;
}

.vt-footer-brand img {
    width: 135px;
    margin: 0 auto -5px;
}

.vt-footer-icons {
    display: flex;
    gap: 17px;
    justify-content: center;
    margin-bottom: 18px;
	color: var(--vt-accent);
}

.vt-footer-links {
    justify-self: end;
    min-width: 280px;
}

.vt-footer-links  h3 {
    color: var(--vt-accent-light);
} 

.vt-footer-links a {
	color: var(--vt-muted);
}

.vt-footer-link-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 42px;
    font-size: 14px;
}
.vt-email-form {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 18px;
    max-width: 320px;
    background:
        linear-gradient(
            135deg,
            rgba(228,216,197,.08),
            rgba(255,255,255,.02)
        ),
        rgba(2, 6, 7, .9);
    border: 1px solid rgba(120, 105, 85, .28);
    box-shadow:
        0 0 24px rgba(228, 216, 197, .04),
        inset 0 0 18px rgba(255,255,255,.02);
    overflow: hidden;
}

.vt-email-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(228, 216, 197, .08),
        transparent
    );
    opacity: .35;
    pointer-events: none;
}

.vt-email-form input {
    flex: 1;
    height: 44px;

    padding: 0 16px;

    background: transparent;
    border: 0;
    outline: none;

    color: var(--text);

    font-size: 13px;
    letter-spacing: .03em;
}

.vt-email-form input::placeholder {
    color: rgba(238, 231, 219, .45);
}

.vt-email-form button {
    width: 48px;
    height: 44px;

    border: 0;
    border-left: 1px solid rgba(228,216,197,.14);

    background:
        linear-gradient(
            180deg,
            #e4d8c5,
            #b8aa94
        );

    color: #060807;

    font-size: 18px;
    cursor: pointer;

    transition:
        transform .25s ease,
        filter .25s ease;
}

.vt-email-form button:hover {
    filter: brightness(1.12);
}

.vt-email-form button:active {
    transform: scale(.96);
}

/* ==================================================
MISC
================================================== */
.vt-hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.vt-beta-banner {
    position: relative;

    padding: 12px 20px;

    border-top: 1px solid rgba(209,190,160,0.18);
    border-bottom: 1px solid rgba(209,190,160,0.12);

    background:
        linear-gradient(
            90deg,
            rgba(209,190,160,0.10),
            rgba(255,255,255,0.02),
            rgba(209,190,160,0.10)
        ),
        rgba(10,12,16,0.96);

    color: rgba(243,238,231,0.72);

    text-align: center;

    font-size: 0.84rem;
    letter-spacing: 0.3px;

    z-index: 40;
}
.beta-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #fef3c7; /* Soft amber/yellow alert background */
  border-bottom: 1px solid #fde68a;
  border-radius: 5px;
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
}

.beta-pill {
  background-color: #d97706; /* Dark amber for contrast */
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 12px; /* Rounded pill style */
}

.beta-text {
  margin: 0;
  color: #78350f; /* Matching dark amber text color */
  font-size: 14px;
  font-family: sans-serif;
}

.beta-text a {
  color: #b45309;
  font-weight: 600;
  text-decoration: underline;
}

.beta-text a:hover {
  color: #78350f;
}