:root {

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

    --vt-border: rgba(255,255,255,0.08);

    --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(120, 140, 150, 0.12);
	 --vt-header-height: 68px;
    --vt-left-rail-width: 226px;

}

* {
    box-sizing: border-box;
}

body {

    margin: 0;
    background: var(--vt-bg);
    color: var(--vt-text);

    font-family: var(--vt-font-body);
    line-height: 1.7;
}

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

a:hover {
    opacity: 0.85;
}
/* --------------------------------------------------
   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;
}

.vt-container {

    width: 92%;
    max-width: var(--vt-content-width);
    margin: auto;
}

.vt-header {

    border-bottom: 1px solid var(--vt-border);
    background: rgba(0,0,0,0.35);

    backdrop-filter: blur(8px);
}

/*.vt-header-inner {

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

    padding: 20px 0;
}

.vt-logo {

    font-family: var(--vt-font-heading);
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.vt-nav {

    display: flex;
    gap: 24px;
}*/

.vt-main {
    padding: 60px 0;
}

.vt-section-title {

    font-family: var(--vt-font-heading);
    font-size: 2rem;
    margin-bottom: 40px;
}

.vt-category-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 24px;
}

.vt-category-card {

    background: var(--vt-bg-secondary);

    border: 1px solid var(--vt-border);

    padding: 28px;

    transition: 0.2s ease;
}

.vt-category-card:hover {

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

    transform: translateY(-2px);
}

.vt-category-symbol {

    color: var(--vt-accent);

    font-size: 1.4rem;

    margin-bottom: 14px;
}

.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-wrap {
    max-width: 520px;
    margin: 0 auto;
    background: var(--vt-bg-secondary);
    border: 1px solid var(--vt-border);
    padding: 34px;
}

.vt-form-title {
    font-family: var(--vt-font-heading);
    font-size: 1.6rem;
    margin-bottom: 24px;
}

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

.vt-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--vt-text-soft);
}

.vt-form-group input,
.vt-form-group textarea {
    width: 100%;
    background: #070a0f;
    border: 1px solid var(--vt-border);
    color: var(--vt-text);
    padding: 13px 14px;
    font-family: var(--vt-font-body);
}

.vt-form-group input:focus,
.vt-form-group textarea:focus {
    outline: none;
    border-color: rgba(209,190,160,0.5);
}

.vt-button {
    display: inline-block;
    background: var(--vt-accent);
    color: #090909;
    border: none;
    padding: 12px 20px;
    font-family: var(--vt-font-body);
    font-weight: 600;
    cursor: pointer;
}

.vt-button:hover {
    opacity: 0.9;
}

.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-category-card {
    display: block;
    color: inherit;
}

.vt-category-card:hover {
    color: inherit;
}

.vt-page-head {
    margin-bottom: 34px;
}

.vt-page-kicker {
    color: var(--vt-accent);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vt-page-description {
    color: var(--vt-text-soft);
    max-width: 760px;
}

.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 {
    border: 1px solid var(--vt-border);
    background: var(--vt-bg-secondary);
    padding: 28px;
    color: var(--vt-text-soft);
}

.vt-actions {
    margin-top: 24px;
}
.vt-post {
    background: var(--vt-bg-secondary);
    border: 1px solid var(--vt-border);
    padding: 28px;
    margin-bottom: 22px;
}

.vt-reply {
    margin-left: 24px;
}

.vt-post-author {
    color: var(--vt-accent);
    font-weight: 600;
    margin-bottom: 6px;
}

.vt-post-date {
    color: var(--vt-text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.vt-post-body {
    color: var(--vt-text-soft);
    white-space: normal;
}
.vt-inline-form {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.vt-small-button {
    background: transparent;
    color: var(--vt-accent);
    border: 1px solid rgba(209,190,160,0.35);
    padding: 8px 12px;
    cursor: pointer;
    font-family: var(--vt-font-body);
}

.vt-small-button:hover {
    background: rgba(209,190,160,0.08);
}
.vt-avatar-large {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border: 1px solid var(--vt-border);
    border-radius: 50%;
}
.vt-post-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.vt-avatar-small {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--vt-border);
    background: #090d12;
}
.vt-danger-button {
    border-color: rgba(180,70,70,0.6);
    color: #d98f8f;
}
/* --------------------------------------------------
   TOPIC PAGE CLEANUP
--------------------------------------------------- */

.vt-main {
    padding: 64px 0;
    min-height: calc(100vh - 150px);
}
.vt-container {
    max-width: 1180px;
}

/* Topic header/card */
.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-section-title {
    margin-top: 18px;
    margin-bottom: 20px;
    line-height: 1.15;
}

/* Posts */
.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-reply {
    margin-left: 0;
}

.vt-post-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.vt-post-author {
    color: var(--vt-accent);
    font-weight: 600;
    margin-bottom: 4px;
}

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

.vt-post-body {
    color: var(--vt-text);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 26px;
}

/* Buttons/actions */
.vt-actions {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.vt-inline-form {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.vt-small-button,
.vt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 120px;
    background: transparent;
    color: var(--vt-accent);
    border: 1px solid rgba(209,190,160,0.45);
    padding: 12px 18px;
    font-family: var(--vt-font-body);
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.vt-button {
    background: var(--vt-accent);
    color: #090909;
    border-color: var(--vt-accent);
}

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

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

.vt-danger-button:hover {
    background: rgba(220,70,70,0.08);
}

/* Admin controls box */
.vt-post .vt-inline-form {
    align-items: center;
}

/* Avatar */
.vt-avatar-small {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(209,190,160,0.45);
    background: #090d12;
}

/* Reply heading spacing */
.vt-reply + .vt-reply {
    margin-top: 22px;
}

/* Mobile cleanup */
@media (max-width: 700px) {
    .vt-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .vt-nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .vt-page-head,
    .vt-post {
        padding: 24px;
    }

    .vt-section-title {
        font-size: 1.6rem;
    }
}
.vt-reply-count {
    margin: 42px 0 18px;
    color: var(--vt-text-soft);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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-small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 44px;
    padding: 0 18px;
    box-sizing: border-box;
    line-height: 1;
    font-size: 0.95rem;
    appearance: none;
    -webkit-appearance: none;
}
.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;
}
/* --------------------------------------------------
   HEADER TIGHTENING
--------------------------------------------------- */

.vt-header-inner {
    min-height: 68px;
    padding: 10px 0;
}

.vt-logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.vt-logo img {
    display: block;
    width: auto;
    height: 59px;
    max-height: 59px;
}

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

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

/* Mobile */
@media (max-width: 700px) {

    .vt-header-inner {
        min-height: auto;
        padding: 14px 0;
    }

    .vt-logo img {
        height: 42px;
    }

}
/* --------------------------------------------------
   PREMIUM VEIL THEORY ATMOSPHERE
--------------------------------------------------- */

body {
    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%);
}

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;
}

.vt-header {
	position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3,5,7,0.78);
    border-bottom: 1px solid rgba(209,190,160,0.12);
    box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}

.vt-section-title {
    letter-spacing: 0.5px;
    text-shadow: 0 0 24px rgba(209,190,160,0.08);
}

.vt-page-head,
.vt-post,
.vt-category-card,
.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(209,190,160,0.13);
    box-shadow:
        0 18px 46px rgba(0,0,0,0.26),
        inset 0 1px 0 rgba(255,255,255,0.035);
}

.vt-category-card {
    position: relative;
    overflow: hidden;
    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-symbol {
    font-size: 1.8rem;
    color: var(--vt-accent);
    text-shadow: 0 0 18px rgba(209,190,160,0.22);
}

.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;
}

.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-page-kicker {
    color: var(--vt-accent);
    font-weight: 600;
}

.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-avatar-small,
.vt-avatar-large {
    box-shadow: 0 0 0 3px rgba(209,190,160,0.06);
}

.vt-small-button,
.vt-button {
    letter-spacing: 0.3px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vt-small-button:hover,
.vt-button:hover {
    transform: translateY(-1px);
}
.vt-site-footer {
	position: relative;
	z-index:10;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 36px 60px 28px;
    background: rgba(2, 5, 6, 0.92);
    border-top: 1px solid var(--line);
}
.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 18px;
}

.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);
}
/* --------------------------------------------------
   FOOTER MOBILE
--------------------------------------------------- */

@media (max-width: 900px) {

    .vt-site-footer {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 38px 24px 30px;
        text-align: center;
    }

    .vt-footer-newsletter,
    .vt-footer-brand,
    .vt-footer-links {
        justify-self: center;
        width: 100%;
        max-width: 420px;
    }

    .vt-email-form {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .vt-footer-links {
        min-width: 0;
    }

    .vt-footer-link-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px 24px;
        justify-items: center;
    }

    .vt-footer-icons {
        justify-content: center;
    }
}

@media (max-width: 520px) {

    .vt-site-footer {
        padding: 34px 18px 26px;
        gap: 30px;
    }

    .vt-footer-brand img {
        width: 110px;
    }

    .vt-footer-link-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vt-email-form input {
        font-size: 12px;
        padding: 0 12px;
    }

    .vt-email-form button {
        width: 44px;
    }
}
/* --------------------------------------------------
   HOMEPAGE HERO
--------------------------------------------------- */

.vt-forum-hero {
    position: relative;
    overflow: hidden;

    margin-bottom: 34px;

    padding: 42px 42px;

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

    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;
}

/* Mobile */
@media (max-width: 700px) {
    .vt-forum-hero {
        padding: 32px 22px;
    }

    .vt-forum-hero::after {
        font-size: 5.5rem;
        right: 24px;
        bottom: 18px;
    }

    .vt-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .vt-hero-actions .vt-button,
    .vt-hero-actions .vt-small-button {
        width: 100%;
    }
}
.vt-hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
/* --------------------------------------------------
   ADMIN USER LAYOUT
--------------------------------------------------- */

.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;
}

@media (max-width: 900px) {
    .vt-admin-user-layout {
        grid-template-columns: 1fr;
    }
}
/* --------------------------------------------------
   PASSWORD TOGGLE
--------------------------------------------------- */

.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-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);
}
.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);
}
/* --------------------------------------------------
   CUSTOM SELECT STYLING
--------------------------------------------------- */

.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);
}
.vt-pinned-icon {
    margin-right: 8px;
    opacity: 0.85;
}
/* --------------------------------------------------
   TOPIC VOTING
--------------------------------------------------- */

.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(209,190,160,0.18);
    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 18px 46px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.035);
}

.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;
}

@media (max-width: 800px) {
    .vt-topic-layout {
        grid-template-columns: 1fr;
    }

    .vt-topic-vote-box {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .vt-vote-help {
        margin-top: 0;
        max-width: 160px;
    }
}
/* --------------------------------------------------
   SITE BANNER + ADMIN TOGGLE
--------------------------------------------------- */
.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;
}

/* --------------------------------------------------
   CUSTOM ADMIN TOGGLE
--------------------------------------------------- */

.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;
}
/* --------------------------------------------------
   MODERN HEADER LAYOUT
--------------------------------------------------- */

.vt-header-modern {
    min-height: 68px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.vt-header-left,
.vt-header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.vt-logo a {
    display: flex;
    align-items: center;
}

.vt-logo img {
    display: block;
    width: auto;
    height: 48px;
    max-height: 48px;
}

.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 {
    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);
    color: var(--vt-text-soft);
    padding: 0 16px;
    font-family: var(--vt-font-body);
    font-size: 0.92rem;
}

.vt-header-search input::placeholder {
    color: var(--vt-text-muted);
}

.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);
    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);
    font-weight: 600;
}

.vt-header-btn-primary:hover {
    opacity: 0.9;
}

.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;
}

/* Tablet */
@media (max-width: 1050px) {

    .vt-header-search {
        width: 220px;
    }

    .vt-top-nav {
        gap: 16px;
    }

    .vt-top-nav a {
        font-size: 0.86rem;
    }

}

/* Mobile */
@media (max-width: 780px) {

     .vt-header-modern {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 58px !important;
        padding: 6px 0 !important;
        gap: 8px !important;
    }

    .vt-header-left {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        flex: 0 0 auto !important;
    }

	.vt-logo {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

	.vt-logo a {
        display: flex !important;
        align-items: center !important;
    }

     .vt-logo img {
        display: block !important;
        height: 34px !important;
        max-height: 34px !important;
        width: auto !important;
        margin: 0 !important;
    }

    .vt-top-nav,
    .vt-header-search {
        display: none !important;
    }

    .vt-mobile-menu-toggle,
    .vt-mobile-search-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        width: 34px !important;
        height: 34px !important;
        padding: 0 !important;
        font-size: 1rem !important;
    }

    .vt-header-right {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 6px !important;
        margin-left: auto !important;
        flex: 1 1 auto !important;
    }

    .vt-header-btn {
        height: 34px !important;
        min-width: auto !important;
        padding: 0 10px !important;
        font-size: 0.78rem !important;
        white-space: nowrap !important;
    }

}

/* Very small phones */
@media (max-width: 460px) {

    .vt-header-modern {
        gap: 8px;
    }

    .vt-logo img {
        height: 38px;
        max-height: 38px;
    }

    .vt-mobile-menu-toggle,
    .vt-mobile-search-toggle {
        width: 36px;
        height: 36px;
    }

    .vt-header-btn {
        height: 36px;
        padding: 0 10px;
        font-size: 0.78rem;
    }

}
/* --------------------------------------------------
   MOBILE HAMBURGER MENU
--------------------------------------------------- */

.vt-mobile-menu {
    display: none;
}

@media (max-width: 780px) {

    .vt-mobile-menu {
        display: none;
        border-bottom: 1px solid rgba(209,190,160,0.14);
        background:
            linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
            rgba(5,8,12,0.98);
        box-shadow: 0 18px 40px rgba(0,0,0,0.34);
    }

    .vt-mobile-menu.is-open {
        display: block;
    }

    .vt-mobile-menu a {
        display: block;
        padding: 16px 6%;
        border-top: 1px solid rgba(255,255,255,0.05);
        color: var(--vt-text-soft);
        font-size: 0.95rem;
        letter-spacing: 0.4px;
    }

    .vt-mobile-menu a:hover {
        color: var(--vt-accent);
        background: rgba(209,190,160,0.06);
    }
}
/* --------------------------------------------------
   THREE COLUMN FORUM SHELL
--------------------------------------------------- */
.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(209,190,160,0.14);

    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-right: 1px solid rgba(209,190,160,0.12);
    padding: 0;*/
    border: none;
    background: transparent;
    padding: 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-right-widget {
    position: static;
    max-height: none;
}

/* Keep older container styles from over-constraining the new layout */
.vt-main > .vt-container {
    max-width: none;
}
/* Thin custom sidebar scrollbar */
.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);
}

@media (max-width: 1180px) {
    .vt-shell {
        grid-template-columns: minmax(0, 1fr);
        padding-left: calc(var(--vt-left-rail-width) + 28px);
        padding-right: 3%;
    }

    .vt-sidebar-right {
        display: none;
    }
}

@media (max-width: 780px) {
      .vt-main {
        padding-top: 0 !important;
    }
	
    .vt-shell {
        width: 92%;
        display: block;
        padding-left: 0;
        padding-right: 0;
		padding-top: 0 !important;
        margin-top: 0 !important;
        margin: 0 auto;
    }

    .vt-sidebar-left,
    .vt-sidebar-right {
        display: none;
    }

	.vt-content-column {
        padding-top: 18px !important;
        margin-top: 0 !important;
    }

	.vt-forum-hero,
    .vt-page-head,
    .vt-breadcrumbs {
        margin-top: 0 !important;
    }
}
/* Topic lists only */
.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:hover {
    background: rgba(209,190,160,0.035);
    border-color: rgba(209,190,160,0.24);
    padding-left: 12px;
}

/* Topic/reply content only */
.vt-post {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 28px 4px;
    border-bottom: 1px solid rgba(209,190,160,0.12);
}

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

.vt-reply {
    margin-left: 0;
}
/* Original topic keeps card styling */
.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(209,190,160,0.13);

    box-shadow:
        0 18px 46px rgba(0,0,0,0.26),
        inset 0 1px 0 rgba(255,255,255,0.035);

    padding: 34px;
    margin-bottom: 28px;
}

/* Replies stay clean/separated */
.vt-reply {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 28px 4px;
    border-bottom: 1px solid rgba(209,190,160,0.12);
}
/* --------------------------------------------------
   MODERN TOPIC ROWS
--------------------------------------------------- */

.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;
    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;
}

@media (max-width: 900px) {
    .vt-topic-row-modern {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .vt-topic-author {
        grid-column: 2;
        justify-content: flex-start;
        text-align: left;
        margin-top: 8px;
    }
}
/* --------------------------------------------------
   GENERATED USERNAME DISPLAY
--------------------------------------------------- */

.vt-generated-username {
    margin-top: 18px;

    padding: 16px 18px;

    border: 1px solid rgba(53,83,110,0.18);

    background:
        linear-gradient(
            135deg,
            rgba(110,145,185,0.10),
            rgba(255,255,255,0.04)
        ),
        rgba(234,242,250,0.72);

    color: #23384a;

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

    font-size: 1.25rem;

    letter-spacing: 0.6px;

    text-align: center;
}
/*Account Subnav */
.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);
}
/* --------------------------------------------------
   BETA BANNER
--------------------------------------------------- */

.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;
  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;
}
/* --------------------------------------------------
   AVATAR MICRO BADGES
--------------------------------------------------- */

.vt-avatar-wrap {
    position: relative;
    display: inline-flex;
}

.vt-avatar-small {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.vt-avatar-badge {
    position: absolute;
    right: -2px;
    bottom: -2px;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    border: 2px solid #05070b;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 2px 10px rgba(0,0,0,0.3);
}

/* Admin */
.vt-avatar-badge-admin {
    background:
        radial-gradient(circle at 30% 30%, #ffb3b3, #b32020);
}

/* Moderator */
.vt-avatar-badge-moderator {
    background:
        radial-gradient(circle at 30% 30%, #bdd7ff, #2f6ecf);
}