/**
 * Ventaria — общая тема (главная, внутренние страницы, форум)
 */
:root {
    --l2-gold: #d4af37;
    --l2-gold-light: #f4e4a8;
    --l2-gold-dark: #8a6e1c;
    --l2-bg-dark: #050505;
    --l2-bg-elevated: #121212;
    --l2-card: rgba(18, 18, 20, 0.92);
    --glass-bg: rgba(10, 10, 12, 0.88);
    --glass-border: rgba(212, 175, 55, 0.28);
    --text-muted-vent: #c4c5cd;
    --font-display: "Cinzel", serif;
    --font-body: "Lato", system-ui, sans-serif;
}

/* ========== Base ========== */
body.vent-body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--l2-bg-dark);
    color: #eee;
    /* Bootstrap .text-muted и прочий secondary-текст — для тёмного фона */
    --bs-secondary-color: var(--text-muted-vent);
    --bs-secondary-color-rgb: 196, 197, 205;
    --bs-tertiary-color: rgba(255, 255, 255, 0.58);
    --bs-tertiary-color-rgb: 255, 255, 255;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========== Landing (index) ========== */
body.vent-home #bgvid {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

body.vent-home .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 120% 80% at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at center, rgba(28, 28, 32, 0.35) 0%, rgba(0, 0, 0, 0.92) 100%);
    z-index: -1;
    pointer-events: none;
}

body.vent-home .navbar {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: background 0.35s ease, border-color 0.35s ease;
}

body.vent-home .navbar-brand {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--l2-gold) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.5rem;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

body.vent-home .nav-link {
    font-family: var(--font-display);
    color: #ccc !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s, text-shadow 0.3s;
    position: relative;
}

body.vent-home .nav-link:hover,
body.vent-home .nav-link.active {
    color: var(--l2-gold) !important;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.55);
}

body.vent-home .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, transparent, var(--l2-gold), transparent);
    transition: width 0.3s;
    transform: translateX(-50%);
}

body.vent-home .nav-link:hover::after {
    width: 100%;
}

body.vent-home .online-badge {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #28a745;
    color: #28a745;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.2);
}

body.vent-home .online-dot {
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 8px #28a745;
    animation: vent-pulse 2s infinite;
}

@keyframes vent-pulse {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

body.vent-home .main-container {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 40px;
}

body.vent-home .hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 12px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.85), 0 0 24px rgba(212, 175, 55, 0.25);
    background: linear-gradient(180deg, #fff 0%, #e8d5a0 45%, var(--l2-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.vent-home .hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1.15rem);
    color: var(--text-muted-vent);
    margin-bottom: 1.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

body.vent-home .hero-divider {
    width: min(280px, 70vw);
    height: 1px;
    margin: 0 auto 2rem;
    background: linear-gradient(90deg, transparent, var(--glass-border), var(--l2-gold), var(--glass-border), transparent);
    opacity: 0.9;
}

body.vent-home .btn-l2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 14px 36px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid var(--l2-gold);
    min-width: 200px;
    margin: 10px;
    font-size: 0.95rem;
}

body.vent-home .btn-l2-primary {
    background: linear-gradient(145deg, var(--l2-gold-dark), var(--l2-gold));
    color: #0a0a0a;
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35);
}

body.vent-home .btn-l2-primary:hover {
    background: linear-gradient(145deg, var(--l2-gold), var(--l2-gold-light));
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    color: #0a0a0a;
    border-color: var(--l2-gold-light);
}

body.vent-home .btn-l2-outline {
    background: transparent;
    color: var(--l2-gold);
    border: 1px solid var(--l2-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

body.vent-home .btn-l2-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #fff;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

body.vent-home .modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    color: #fff;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.65);
    border-radius: 6px;
}

body.vent-home .modal-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    justify-content: center;
}

body.vent-home .modal-title {
    font-family: var(--font-display);
    color: var(--l2-gold);
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
}

body.vent-home .form-control {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 12px 14px;
    border-radius: 4px;
}

body.vent-home .form-control:focus {
    background: rgba(0, 0, 0, 0.75);
    border-color: var(--l2-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    color: #fff;
}

body.vent-home .form-label {
    color: #aaa;
    font-family: var(--font-display);
    font-size: 0.88rem;
    letter-spacing: 1px;
}

body.vent-home .alert-floating {
    position: fixed;
    top: 88px;
    right: 20px;
    z-index: 1060;
    min-width: min(320px, calc(100vw - 40px));
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-left: 4px solid;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    border-radius: 6px;
    font-family: var(--font-body);
}

body.vent-home .vent-footer {
    margin-top: auto;
    padding: 28px 20px 20px;
    width: 100%;
    max-width: 720px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

body.vent-home .vent-footer:hover {
    opacity: 1;
}

body.vent-home .vent-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-display);
}

body.vent-home .vent-footer-links a {
    color: var(--text-muted-vent);
    text-decoration: none;
    transition: color 0.25s;
}

body.vent-home .vent-footer-links a:hover {
    color: var(--l2-gold);
}

body.vent-home .vent-footer-copy {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 0.75rem;
}

body.vent-home .l2top-img {
    filter: grayscale(100%) brightness(0.85);
    transition: filter 0.3s, transform 0.3s;
}

body.vent-home .l2top-img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    body.vent-home .btn-l2 {
        width: 100%;
        margin: 8px 0;
    }
    body.vent-home .navbar-brand {
        font-size: 1.2rem;
    }
}

/* ========== Inner pages: shared nav ========== */
body.vent-inner .navbar {
    background: rgba(8, 8, 10, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
}

body.vent-inner .navbar-brand {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--l2-gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

body.vent-inner .nav-link {
    color: #c8c8cc !important;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    transition: color 0.25s;
}

body.vent-inner .nav-link:hover,
body.vent-inner .nav-link.active {
    color: var(--l2-gold) !important;
}

body.vent-inner .btn-outline-warning,
body.vent-inner .btn-outline-light {
    border-radius: 4px;
    letter-spacing: 0.04em;
}

body.vent-inner .btn-gold {
    background: linear-gradient(135deg, var(--l2-gold-dark), var(--l2-gold));
    border: none;
    color: #0a0a0a;
    font-weight: 700;
    border-radius: 4px;
}

body.vent-inner .btn-gold:hover {
    filter: brightness(1.06);
    color: #0a0a0a;
}

@media (max-width: 768px) {
    body.vent-inner .navbar-brand {
        font-size: 1.12rem;
    }
}

/* ========== About ========== */
body.vent-about {
    background-color: var(--l2-bg-dark);
    color: #eee;
    overflow-x: hidden;
}

body.vent-about .page-header {
    position: relative;
    height: 56vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.vent-about .page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 5, 8, 0.12) 0%, rgba(5, 5, 8, 0.32) 100%),
        url("/images/bg.gif") no-repeat center center / cover;
    background-color: #2a2218;
    background-blend-mode: normal;
    z-index: 1;
}

body.vent-about .header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 24px;
}

body.vent-about .header-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--l2-gold);
    text-shadow: 0 0 28px rgba(212, 175, 55, 0.35);
    margin-bottom: 10px;
}

body.vent-about .header-subtitle {
    font-size: 1rem;
    color: var(--text-muted-vent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

body.vent-about .section-padding {
    padding: 56px 0 72px;
}

body.vent-about .feature-card {
    background: var(--l2-card);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
}

body.vent-about .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(212, 175, 55, 0.45);
}

body.vent-about .feature-icon {
    font-size: 2.4rem;
    color: var(--l2-gold);
    margin-bottom: 18px;
    opacity: 0.95;
}

body.vent-about .feature-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

body.vent-about .feature-text {
    color: var(--text-muted-vent);
    font-size: 0.94rem;
    line-height: 1.65;
}

body.vent-about .rates-table {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0 8px;
}

body.vent-about .rates-table td {
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

body.vent-about .rates-table tr td:first-child {
    border-radius: 8px 0 0 8px;
    font-weight: 600;
    color: #ddd;
    width: 50%;
    border-right: none;
}

body.vent-about .rates-table tr td:last-child {
    border-radius: 0 8px 8px 0;
    color: var(--l2-gold);
    font-weight: 700;
    text-align: right;
    border-left: none;
}

body.vent-about .btn-cta {
    background: linear-gradient(135deg, var(--l2-gold-dark), var(--l2-gold));
    border: none;
    color: #0a0a0a;
    padding: 14px 36px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 4px;
    transition: transform 0.25s, box-shadow 0.25s;
    display: inline-block;
    text-decoration: none;
    margin-top: 24px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

body.vent-about .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
    color: #0a0a0a;
}

body.vent-about .vent-about-footer {
    background: linear-gradient(180deg, transparent, #050508);
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    margin-top: 48px;
}

body.vent-about .vent-about-footer p {
    color: #555;
    font-size: 0.88rem;
    margin: 0;
}

/* ========== Download ========== */
body.vent-download {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #eee;
}

body.vent-download #bgvid {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.45) saturate(1.05);
}

body.vent-download .main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 64px;
}

body.vent-download .download-card {
    background: var(--l2-card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px 32px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
    text-align: center;
}

body.vent-download .download-title {
    font-family: var(--font-display);
    color: var(--l2-gold);
    margin-bottom: 28px;
    font-size: clamp(1.6rem, 4vw, 2.35rem);
    letter-spacing: 0.06em;
}

body.vent-download .download-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 16px;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 16px;
}

body.vent-download .download-item:hover {
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.35);
}

body.vent-download .item-info h4 {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}

body.vent-download .item-info p {
    margin: 6px 0 0;
    color: var(--text-muted-vent);
    font-size: 0.88rem;
}

body.vent-download .btn-download {
    background: linear-gradient(135deg, var(--l2-gold-dark), var(--l2-gold));
    border: none;
    color: #0a0a0a;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s;
    white-space: nowrap;
    margin-right: 8px;
}

body.vent-download .btn-download:hover {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    color: #0a0a0a;
    transform: translateY(-1px);
}

body.vent-download .btn-instruction {
    background: transparent;
    border: 1px solid var(--l2-gold);
    color: var(--l2-gold);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 4px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    white-space: nowrap;
}

body.vent-download .btn-instruction:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

body.vent-download .btn-register-block {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

body.vent-download .modal-content {
    background: #141418;
    color: #eee;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

body.vent-download .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.vent-download .modal-title {
    color: var(--l2-gold) !important;
    font-family: var(--font-display);
}

body.vent-download .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--l2-gold);
    color: #0a0a0a;
    border-radius: 50%;
    font-weight: 800;
    margin-right: 12px;
    flex-shrink: 0;
}

body.vent-download .instruction-step {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 768px) {
    body.vent-download .download-item {
        flex-direction: column;
        text-align: center;
    }
    body.vent-download .btn-download,
    body.vent-download .btn-instruction {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

/* ========== Dashboard ========== */
body.vent-dashboard {
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
        var(--l2-bg-elevated);
    color: #e4e4e8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.vent-dashboard .container-main {
    flex: 1;
    padding-top: 100px;
    padding-bottom: 56px;
}

body.vent-dashboard .card-custom {
    background: var(--l2-card);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    margin-bottom: 20px;
    overflow: hidden;
}

body.vent-dashboard .card-header {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(20, 20, 24, 0.98) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    font-family: var(--font-display);
    color: var(--l2-gold);
    padding: 16px 20px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body.vent-dashboard .char-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 14px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

body.vent-dashboard .char-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

body.vent-dashboard .char-card.online {
    border-left: 4px solid #28a745;
}

body.vent-dashboard .char-card.offline {
    border-left: 4px solid #5c5c64;
}

body.vent-dashboard .char-level {
    color: var(--l2-gold);
}

body.vent-dashboard .btn-gold {
    background: linear-gradient(135deg, var(--l2-gold-dark), var(--l2-gold));
    border: none;
    color: #0a0a0a;
    font-weight: 700;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

body.vent-dashboard .btn-gold:hover {
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

body.vent-dashboard .form-control {
    background-color: rgba(0, 0, 0, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px;
}

body.vent-dashboard .form-control:focus {
    border-color: var(--l2-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}

body.vent-dashboard .modal-content {
    background: #16161a !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 8px;
}

/* ========== Forum ========== */
body.vent-forum {
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 42%),
        var(--l2-bg-elevated);
    color: #e4e4e8;
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.vent-forum .container-main {
    flex: 1;
    padding-top: 100px;
    padding-bottom: 56px;
}

body.vent-forum .card-forum {
    background: var(--l2-card);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

body.vent-forum .card-forum .card-header {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(22, 22, 26, 0.98) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    font-family: var(--font-display);
    color: var(--l2-gold);
}

body.vent-forum .table-forum {
    --bs-table-bg: transparent;
    --bs-table-color: #e4e4e8;
}

body.vent-forum .table-forum thead {
    color: var(--text-muted-vent);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body.vent-forum .table-forum tbody tr {
    border-color: rgba(255, 255, 255, 0.06);
}

body.vent-forum .table-forum a {
    color: var(--l2-gold);
    text-decoration: none;
}

body.vent-forum .table-forum a:hover {
    text-decoration: underline;
    color: var(--l2-gold-light);
}

body.vent-forum .post-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1rem;
}

body.vent-forum .form-control {
    background: rgba(0, 0, 0, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px;
}

body.vent-forum .form-control:focus {
    border-color: var(--l2-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}

body.vent-forum .text-muted-forum {
    color: var(--text-muted-vent) !important;
}
