/* ============================= */
/*   General Reset & Font        */
/* ============================= */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Chakra Petch', sans-serif;
    background: #171a21;
    color: #e0e0e0;
    transition: background 0.3s, color 0.3s;
}



/* ============================= */
/*   Dark/Light Mode             */
/* ============================= */
:root[data-theme='dark'] {
    --bg-primary: #171a21;
    --bg-secondary: #1f222d;
    --color-text: #e0e0e0;
    --border-color: rgba(39, 44, 53, 0.63);
}

:root[data-theme='light'] {
    --bg-primary: #f0f0f0;
    --bg-secondary: #ffffff;
    --color-text: #1a1a1a;
    --border-color: rgba(200, 200, 200, 0.8);
}

body {
    background: var(--bg-primary);
    color: var(--color-text);
}

/* ============================= */
/*   Containers & Elements       */
/* ============================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    transition: background 0.3s, border 0.3s;
}

a {
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #63b3ed;
}




.textrobotel {
    display: block;
    left: 1.5%;
    width: 58px;
    z-index: 1 !important;
    height: 20px;
    bottom: 7.9%;
    -webkit-user-select: none;
    margin: auto;
    transition: background-color 300ms;
    position: fixed;
    text-align: center;
    border: 2px solid #01b3ff;
    border-top: 6px solid #00a1ff;
    border-left: 6px solid #191414;
    border-right: 6px solid #191414;
    border-bottom: 6px solid #00a1ff;
    animation: bell 10.5s ease-out infinite;
    border-radius: 9999px !important;
    border-style: double;
}


.text-shine {
    background: transparent url(https://upload.wtfcs.ro/images/69606467032231032627.gif);
}





/* ============================= */
/*   Member Profile                     */
/* ============================= */

.mpf-wrapper {
    width: 100%;
    margin: 20px auto;
    font-family: "Chakra Petch", sans-serif;
    color: var(--color-text);
}

/* User Banner */
.mpf-userbanner {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background-size: cover;
    background-position: center;
}

.mpf-useravatar {
    flex-shrink: 0;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    overflow: hidden;
    /* width: 100px; */
    /* height: 100px; */
}

.mpf-userbasicinfo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mpf-username {
    font-size: 24px;
    font-weight: bold;
}

.mpf-usertitle {
    font-size: 14px;
    color: var(--color-text-light);
}

.mpf-usergroup {
    display: flex;
    gap: 5px;
}

/* Status */
.mpf-userstatus {
    margin-top: 10px;
    padding: 10px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

/* Tabs */
.mpf-tabs {
    margin-top: 20px;
}

.mpf-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.mpf-tab-button {
    padding: 8px 15px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

.mpf-tab-button.active {
    background: var(--bg-primary);
    color: var(--color-text);
}

.mpf-tab-content {
    display: none;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 15px;
}

.mpf-tab-content.active {
    display: block;
}

/* User info rows */
.mpf-userinfo .mpf-info-row {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
}

.mpf-userinfo .mpf-info-row:last-child {
    border-bottom: none;
}

/* Extras blocks */
.mpf-blocks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mpf-userblocks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .mpf-userbanner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mpf-useravatar {
        width: 80px;
        height: 80px;
    }

    .mpf-tab-buttons {
        flex-direction: column;
    }

    .mpf-userblocks {
        flex-direction: column;
    }
}


/* ============================= */
/*   Postbit                     */
/* ============================= */

.post {
    display: flex;
    gap: 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.post:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* LEFT COLUMN - User Info */
.post_author {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.post_author .avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.author_details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author_name {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.author_name .online_status {
    font-size: 0.85rem;
    color: green; /* poate fi schimbat cu icon online/offline */
}

.author_title {
    font-size: 0.85rem;
    color: var(--color-text);
}

.author_groupstars {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.author_statistics {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 5px;
}

/* RIGHT COLUMN - Post Content */
.post_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 15px;
}

.post_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    gap: 10px;
}

.post_subject {
    font-weight: 600;
}

.post_date {
    font-size: 0.8rem;
    color: #888;
}

.post_body {
    font-size: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.post_meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #aaa;
}

/* POST CONTROLS */
.post_controls {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.postbit_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.postbit_buttons button, .postbit_buttons a {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--color-text);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.postbit_buttons button:hover, .postbit_buttons a:hover {
    background: var(--bg-secondary);
}

/* Responsive */
@media (max-width: 992px) {
    .post {
        flex-direction: column;
    }

    .post_author {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        text-align: left;
        flex: none;
    }

    .post_content {
        padding: 10px;
    }
}

/* Postbit Clasic Modern */
.post.classic {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.3s ease;
}

.post.classic:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Author section */
.post_author {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.post_author .avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.author_information {
    flex: 1;
}

.author_information .largetext {
    font-size: 1.1rem;
    font-weight: 600;
}

.author_statistics {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 5px;
}

/* Post content */
.post_content {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    gap: 5px;
}

.post_date {
    font-size: 0.8rem;
    color: #888;
}

.post_body {
    font-size: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
}

/* Meta & controls */
.post_meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #aaa;
}

.post_controls {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.postbit_buttons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.postbit_buttons button, .postbit_buttons a {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--color-text);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.postbit_buttons button:hover, .postbit_buttons a:hover {
    background: var(--bg-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .post_author {
        flex-direction: column;
        align-items: flex-start;
    }

    .post_head {
        flex-direction: column;
        align-items: flex-start;
    }

    .post_controls {
        flex-direction: column;
        align-items: flex-start;
    }
}





















/* ============================= */
/*   Sidebar                     */
/* ============================= */
#sidebar {
    width: 250px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 20px;
    transition: all 0.3s;
}

#sidebar.hidden {
    transform: translateX(-260px);
}

#sidebar-toggle {
    cursor: pointer;
    background: var(--bg-secondary);
    color: var(--color-text);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
	transition: background 0.3s ease, transform 0.3s ease;
    border-radius: 5px;
    font-size: 14px;
}

/* ============================= */
/*   Back to Top Button           */
/* ============================= */
#backToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--bg-secondary);
    color: var(--color-text);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 9999;
    transition: background 0.3s, color 0.3s;
}

#backToTop:hover {
    background: #1e90ff;
    color: #fff;
}
/* ============================= */
/*  showteam.php          */
/* ============================= */

/* =========================
   SHOWTEAM – LAYOUT
========================= */

.showteam-wrapper {
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Header */
.showteam-header {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 20px;
    text-align: center;
}

.showteam-header h1 {
    margin: 0;
    font-size: 26px;
    color: var(--color-text);
}

.showteam-header h1 i {
    margin-right: 8px;
}

.showteam-desc {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.8;
}

/* =========================
   GROUP LIST (din MyBB)
========================= */

.showteam-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Fiecare grup */
.showteam-content .group {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 15px;
}

/* Titlu grup */
.showteam-content .group .group-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

/* Membrii */
.showteam-content .group-members {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Card membru */
.showteam-content .group-member {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 calc(33.333% - 15px);
}

/* Avatar */
.showteam-content .group-member img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

/* Info user */
.showteam-content .member-info {
    display: flex;
    flex-direction: column;
}

.showteam-content .member-info a {
    color: var(--color-text);
    font-weight: 600;
    text-decoration: none;
}

.showteam-content .member-info span {
    font-size: 12px;
    opacity: 0.8;
}

/* ==============*

/* =========================
   SHOWTEAM – MODERATORS
========================= */

.showteam-group {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

/* Group title */
.showteam-group-header {
    background: var(--bg-secondary);
    padding: 12px 15px;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--color-text);
}

/* Header row */
.showteam-row {
    display: flex;
    align-items: center;
    padding: 10px 15px;
}

.showteam-head {
    background: var(--bg-secondary);
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

/* Body */
.showteam-body {
    display: flex;
    flex-direction: column;
}

/* Moderator row */
.showteam-body .showteam-row {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.showteam-body .showteam-row:last-child {
    border-bottom: none;
}

/* Columns */
.showteam-row .col {
    padding: 5px;
    color: var(--color-text);
    font-size: 14px;
}

/* Column widths */
.col.username {
    flex: 2;
}

.col.scope {
    flex: 2;
}

.col.lastvisit {
    flex: 1.5;
}

.col.email,
.col.pm {
    flex: 0.8;
    text-align: center;
}

/* Links */
.showteam-row a {
    color: var(--color-text);
    text-decoration: none;
}

.showteam-row a:hover {
    opacity: 0.85;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .col.scope {
        display: none;
    }
}

@media (max-width: 576px) {
    .showteam-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .showteam-head {
        display: none;
    }

    .showteam-row .col {
        width: 100%;
        display: flex;
        justify-content: space-between;
        font-size: 13px;
    }

    .showteam-row .col::before {
        content: attr(data-label);
        font-weight: 600;
        opacity: 0.7;
    }
}


/* Moderator row */
.moderator-row {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

/* Status icon */
.user-status {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Username cell */
.moderator-row .username {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Buttons (email / pm) */
.moderator-row .email,
.moderator-row .pm {
    text-align: center;
}

/* Responsive behavior */
@media (max-width: 576px) {
    .moderator-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .moderator-row .col {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .moderator-row .col::before {
        content: attr(data-label);
        font-weight: 600;
        opacity: 0.7;
    }
}

/* Usergroup wrapper */
.showteam-group {
    width: 100%;
    margin: 0 auto 25px auto;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

/* Group title */
.showteam-group-title {
    padding: 14px 18px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

/* Header */
.showteam-header {
    display: none;
    padding: 10px 18px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 13px;
    justify-content: space-between;
}

/* Columns */
.showteam-header .col,
.showteam-row .col {
    flex: 1;
}

.showteam-header .username { flex: 2; }

/* Body */
.showteam-body {
    display: flex;
    flex-direction: column;
}

/* Row */
.showteam-row {
    display: flex;
    padding: 12px 18px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.showteam-row:last-child {
    border-bottom: none;
}

/* Actions */
.showteam-row .email,
.showteam-row .pm {
    text-align: center;
}

/* =========================
   Responsive
========================= */
@media (max-width: 600px) {

    .showteam-header {
        display: none;
    }

    .showteam-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .showteam-row .col {
        width: 100%;
        display: flex;
        justify-content: space-between;
        font-size: 13px;
    }

    .showteam-row .col::before {
        content: attr(data-label);
        font-weight: 600;
        opacity: 0.7;
    }
}


.contact-page {
    width: 100%;
    margin: 40px auto;
}

.contact-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
}

.contact-header {
    margin-bottom: 25px;
}

.contact-header h2 {
    margin: 0;
    font-size: 20px;
}

.contact-form {
    width: 100%;
}

.contact-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-row label {
    width: 30%;
    font-size: 14px;
}

.contact-row label span {
    display: block;
    font-size: 12px;
    opacity: 0.7;
    margin-top: 4px;
}

.contact-row input,
.contact-row textarea {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--color-text);
    padding: 10px;
    border-radius: 6px;
}

.contact-actions {
    text-align: center;
    margin-top: 25px;
}

/* ===================== */
/* ? RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

    .contact-page {
        width: 95%;
    }

    .contact-row {
        flex-direction: column;
    }

    .contact-row label,
    .contact-row input,
    .contact-row textarea {
        width: 100%;
    }

}

.wrapper {
    width: 80%;
    margin: 0 auto;
}

.syndication-note {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--color-text);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Form card */
.syndication-form .form-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 15px;
    color: var(--color-text);
}

/* Header */
.syndication-form .form-header {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Form groups */
.syndication-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.syndication-form .form-group label {
    font-weight: bold;
}

.syndication-form .form-group .smalltext {
    font-size: 12px;
    color: var(--color-text-light);
}

/* Inputs */
.syndication-form .form-input {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.syndication-form .form-input input.textbox {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-secondary);
    color: var(--color-text);
}

/* Radio buttons */
.version-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

/* Submit button */
.submit-group {
    display: flex;
    justify-content: center;
}

.submit-group .button {
    padding: 8px 15px;
    background: #1e90ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 576px) {
    .syndication-form .form-input {
        flex-direction: column;
    }

    .version-options label {
        width: 100%;
    }
}

/* Container principal */
.syndication-block {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--color-text);
    padding: 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Bloc URL */
.syndication-url-block {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 5px;
    margin: 0;
}

.syndication-url {
    color: var(--color-text);
    word-break: break-all; /* sparge URL lung */
    font-family: "Chakra Petch", sans-serif;
    font-size: 14px;
}

/* Responsive */
@media screen and (max-width: 576px) {
    .wrapper {
        width: 95%;
    }

    .syndication-block {
        padding: 10px;
    }

    .syndication-url-block {
        padding: 8px;
        font-size: 13px;
    }
}
































/* =======================
   STATS PAGE
======================= */

.stats-page
 {
    width: 100%;
    /* max-width: 1200px; */
    margin: 30px auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header */
.stats-header {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
}

.stats-header h1 {
    margin: 0;
    font-size: 20px;
    color: var(--color-text);
}

/* Grid */
.stats-grid {
    display: flex;
    gap: 20px;
}

.stats-grid.two-columns > * {
    flex: 1;
}

/* Card */
.stats-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Card title */
.stats-card h2 {
    margin: 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    color: var(--color-text);
}

/* Stats list */
.stats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 10px;
    flex: 1 1 calc(50% - 10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text);
}

.stat-item.full {
    flex: 1 1 100%;
}

.stat-item span {
    font-size: 13px;
    opacity: 0.9;
}

.stat-item strong {
    font-size: 14px;
}

/* Content blocks (most replies / views) */
.stats-content {
    font-size: 14px;
    line-height: 1.6;
}

/* =======================
   RESPONSIVE
======================= */

@media (max-width: 992px) {
    .stats-grid {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .stat-item {
        flex: 1 1 100%;
    }

    .stats-header h1 {
        font-size: 18px;
    }

    .stats-card h2 {
        font-size: 15px;
    }
}













/* ============================= */
/*   INDEX Tabs               */
/* ============================= */

.content-bg {
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    gap: 20px;
}

.container-tabs {
    /* max-width: 800px; */
    margin-bottom: 20px;
    /* font-family: sans-serif; */
}


.container-tabs {
    /* max-width: 800px; */
    margin-bottom: 20px;
    /* font-family: sans-serif; */
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
    margin: auto;
}

.button-expand-x {
    flex: 1;
    cursor: pointer;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    /* border-radius: 4px; */
    text-align: center;
    transition: background-color 0.3s ease;
    color: var(--color-text);
    padding: 15px;
}

.button-expand-x.active {
    background: var(--bg-secondary);
    color: var(--color-text);
    font-weight: bold;
}

.tab-content {
    min-height: 200px;
    /* padding: 20px; */
    /* border: 1px solid #141414; */
    display: none;
    animation: fadeIn 0.4s ease;
    /* border-radius: 4px; */
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.serverlist-table {
    background: var(--bg-primary);
    /* padding: 10px; */
    margin: 10px 0px;
    border: 1px solid var(--border-color);
    /* border-radius: 4px; */
    width: 100%;
    margin: auto;
    margin-top: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.serverlisthead {
    background: var(--bg-secondary);
    font-size: 16.0px;
    font-weight: bold;
    padding: 15px;
    /* border: 1px solid var(--border-color); */
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.serverlist-content {
    padding: 15px;
}




.faheads
 {
    font-weight: bold;
    margin-right: 14px;
    font-size: 14px;
    background: var(--bg-primary);
    /* width: 34px; */
    /* height: 34px; */
    border-radius: 42px;
    line-height: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--border-color);
    color: var(--color-text);
    padding: 10px;
}



.servers-row {
    padding: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-secondary);
    border-radius: 7px;
}

.serverhead1 {
    display: flex;
    align-items: center;
    width: 16%;
}

.servermiddle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 25%;
}
.serverendbtn {
    display: flex;
    align-items: center;
}

.actions {
    display: flex;
}

.action-icon {
    padding: 10px 12px;
    background: var(--bg-primary);
    margin-right: 10px;
    border-radius: 4px;
}


.servlightonoff {
    background-color: #60AF20;
    box-shadow: 0 0 20px rgba(96, 175, 32, 0.7), 0 0 0 4px rgba(96, 175, 32, 0.2);
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 64px;
    margin-left: 11px;
    margin-right: 15px;
}


.servicon {
    margin-left: 0px;
    width: 16px;
    height: 19px !important;
    margin-right: 20px;
}

.servmode {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    /* text-shadow: 0 0 #000000; */
}

.servplaybtn
 {
    background-color: rgb(54 64 80);
    display: block;
    /* width: 28px; */
    /* height: 28px; */
    text-align: center;
    /* line-height: 12px; */
    border-radius: var(--sp-10);
    transition: all 0.2s linear;
    vertical-align: middle;
    border-radius: 50px;
    padding: 10px 9px 10px 11px;
    /* margin-right: 15px; */
}

.servdns {
    font-size: 15px;
    font-weight: 700;
    color: #808080;
    margin-right: 20px;
}

.servip {
    font-size: 15px;
    font-weight: 700;
    color: #808080;
    margin-left: 20px;
}


.servbtnrows {
    display: flex;
    align-items: center;
    margin-left: 25px;
}


.servimgx {
    margin-right: 20px;
}




/* General */
.hosting-wrapper {
    font-family: 'Segoe UI', sans-serif;
    padding: 0rem;
    max-width: 1600px;
    margin: auto;
    color: inherit;
}

.header-image img {
  width: 100%;
  max-height: 400px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 2rem;
}

.cards-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-x: auto;
    /* gap: 1.5rem; */
    margin-bottom: 3rem;
    padding: 20px;
}

.hosting-card {
       background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.5rem;
    min-width: 230px;
    max-width: 232px;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.card1:hover { box-shadow: 0 0 20px #00ff88; }
.card2:hover { box-shadow: 0 0 20px #00cfff; }
.card3:hover { box-shadow: 0 0 20px #ffaa00; }
.card4:hover { box-shadow: 0 0 20px #ff00aa; }
.card5:hover { box-shadow: 0 0 20px #ff5555; }

.card-top {
  text-align: center;
}

.card-top h3 {
  margin-top: 0.5rem;
}

.avatar {
    width: 224px;
    height: 129px;
    border-radius: 4px;
    border: 2px solid var(--border-color);
    object-fit: cover;
}

ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

ul li.svinfo {
    display: flex;
    align-items: center;
    padding: 7px;
    gap: 0.5rem;
    text-align: center;
    justify-content: flex-start;
 background: var(--bg-secondary);
    margin-bottom: 5px;
    border-radius: 5px;
}

ul li i {
    /* color: #00ff88; */
}

.extra-content {
  display: none;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.toggle-btn, .buy-btn {
  padding: 0.5rem 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.toggle-btn {
  background: #e0e0e0;
  color: #333;
}

.buy-btn {
  background: #00ff88;
  color: #000;
}

.promo, .announcement, .changelog {
       background: var(--bg-primary);
    padding: 1rem 2rem;
    margin: 2rem 0;
    border-left: 6px solid var(--border-color) !important;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.promo h2, .announcement h2, .changelog h3 {
  margin-bottom: 0.5rem;
}

.changelog ul {
  padding-left: 1rem;
  list-style-type: none;
}

.changelog ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0.5rem;
    color: var(--color-text);
}

.profiiconlogo {
    justify-self: center;
}


.imgribbonserver {
    width: 33px;
    margin-left: -9px;
    margin-top: -10px;
    /* border-top: 0px solid #141519; */
}

.ribbonservers {
    position: absolute;
    /* margin-right: 20px; */
    /* width: 50px; */
}


.wtflogoservers {
    position: absolute;
}

.imgwtflogo {
    margin-right: 134px;
    margin-top: 0px;
    position: relative;
    right: -200%;
    /* border: 1px solid; */
}

.header-image {
    margin: 20px auto;
    width: 100%;
}

.tabelwtfcserv {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--bg-primary);
    padding: 10px;
    border-radius: 4px;
    color: #ddd;
    margin: 20px auto;
    border: 1px solid var(--border-color);
    width: 79%;
}

.tabelwtfcserv .tabel-col {
    flex: 1 1 25%;
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 5px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); */
    /* border: 1px solid var(--border-color); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tabelwtfcserv .tabel-col:hover {
 /*  transform: translateY(-5px); */
  /* box-shadow: 0 0 20px rgba(0,0,0,0.6); */
}


.tabelwtfcserv .tabel-col h3 {
  font-weight: 600;
  font-size: 20px;
    color: var(--color-text);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tabelwtfcserv .tabel-col p {
  line-height: 1.6;
  margin-bottom: 12px;
    color: var(--color-text);
}

.tabelwtfcserv .tabel-col p strong {
    color: var(--color-text);
}

.tabelwtfcserv .tabel-col a {
    color: var(--color-text);
  text-decoration: underline dotted;
  transition: color 0.2s ease;
}

.tabelwtfcserv .tabel-col a:hover {
    color: var(--color-text);
}


/* ============================= */
/*   FOOTER              */
/* ============================= */


/* FOOTER BASE */
#footer {
    margin-top: 40px;
    color: var(--color-text);
    font-size: 13px;
}

/* MAIN FOOTER */
.footer-main {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

/* WRAPPER */
.footer-wrapper {
    width: 80%;
    margin: 0 auto;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    align-items: start;
    justify-items: center;
}

/* COLUMNS */
.footer-col h4 {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--color-text);
    text-decoration: none;
    opacity: 0.85;
}

.footer-col a:hover {
    opacity: 1;
}

/* LOGO CENTER */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
}

/* FOOTER BAR */
.footer-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: 30px;
}

.footer-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.footer-left select {
    background: var(--bg-primary);
    color: var(--color-text);
    border: 1px solid var(--border-color);
    padding: 4px 6px;
}

.footer-right {
    font-size: 12px;
}

.footer-right a {
    color: var(--color-text);
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }

    .footer-logo {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bar-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}





















/* ============================= */
/*   Dropdown Menu               */
/* ============================= */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    margin-top: 15px;
    left: 0px;
    background: var(--bg-secondary);
    min-width: 160px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.2s ease-in-out;
}

.dropdown-content a {
    padding: 10px 15px;
    display: block;
    color: var(--color-text);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
    background: #1e90ff;
    color: #fff;
}

/* ============================= */
/*   Eliminăm complet hover-ul   */
/* ============================= */
/* Nu include nicio regulă de tipul .dropdown:hover .dropdown-content */

span#login-button1:hover {
    opacity: 0.8;
}

span#login-button1 {
    color: #fff;
    padding: 10px 15px;
    /* background: #121a2a; */
    border-radius: 3px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
}

.headmenuwelcomeblock {
    display: flex;
    align-items: center;
}

a.register {
    color: #ffffffd9 !important;
    background: #8d3030;
    padding: 10px 15px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    /* box-shadow: 1px -2px 0px 0px #8d3030; */
}







/* ============================= */
/*   Sidebarblock                     */
/* ============================= */

/* CONTAINER */



.announcements-box {
    /* background: var(--bg-secondary); */
    border-radius: 14px;
    padding: 12px;
    color: var(--color-text);
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
    border: 1px solid var(--border-color);
}



/* HEADER */
.announcements-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.ann-icon {
    width: 36px;
    height: 36px;
 background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
}

/* ITEMS */
.announcement-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px 12px 16px;
    margin-bottom: 8px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

/* LEFT BORDER */
.announcement-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 4px;
    transition: filter 0.25s ease;
}

/* ICON */
.item-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--color-text);
    flex-shrink: 0;
    transition: box-shadow 0.25s ease;
}

.item-text {
    flex: 1;
}

/* TYPES */
.neutral {
       background: var(--bg-primary);
		border: 1px solid var(--border-color);
}
.neutral::before {
       background: var(--bg-secondary);

}
.neutral .item-icon {
    background: #374151;
}

.danger {
    background: linear-gradient(135deg, #7f1d1d, #991b1b);
}
.danger::before {
    background: #ef4444;
}
.danger .item-icon {
    background: #ef4444;
}

.info {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
}
.info::before {
    background: #3b82f6;
}
.info .item-icon {
    background: #3b82f6;
}

/* ? HOVER MAI APRINS */
.announcement-item:hover .item-icon {
    /* box-shadow: 0 0 10px currentColor; */
}

.announcement-item:hover::before {
    filter: brightness(2.5);
}

.announcement-item:hover .item-icon {
    /* box-shadow: 0 0 10px currentColor; */
}

.neutral:hover {
       background: var(--bg-secondary);
	    border: 1px solid var(--border-color);

}

.danger:hover {
    background: linear-gradient(135deg, #991b1b, #dc2626);
    box-shadow:
        0 0 0 1px rgba(239,68,68,0.45),
        0 0 22px rgba(239,68,68,0.4);
}

.info:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    box-shadow:
        0 0 0 1px rgba(59,130,246,0.45),
        0 0 22px rgba(59,130,246,0.4);
}

/* ? RESPONSIVE */
@media (max-width: 768px) {
    .announcements-box {
        padding: 10px;
    }

    .announcements-header {
        font-size: 15px;
    }

    .announcement-item {
        padding: 10px 10px 10px 14px;
        font-size: 12.5px;
    }

    .item-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .announcements-header {
        font-size: 14px;
    }

    .announcement-item {
        gap: 10px;
    }

    .item-text {
        line-height: 1.35;
    }
}

.imgsidebarx {
    width: 100%;
    max-width: -webkit-fill-available;
    border-radius: 4px;
}



.statsbfootx {
    text-align: start;
    border-bottom: 1px solid var(--border-color);
    padding: 10px;
}

/* ============================= */
/*   Buttons                     */
/* ============================= */
.button {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s;
}

.button:hover {
    background: #1e90ff;
    color: #fff;
}

/* ============================= */
/*   Responsive Design           */
/* ============================= */
@media screen and (max-width: 992px) {
    #sidebar {
        position: fixed;
        height: 100%;
        z-index: 999;
        left: 0;
        top: 0;
        transform: translateX(-260px);
    }

    #sidebar.hidden {
        transform: translateX(-260px);
    }

    .container {
        padding: 15px;
    }
}

@media screen and (max-width: 576px) {
    #sidebar {
        width: 200px;
    }

    #sidebar-toggle {
        font-size: 12px;
        padding: 6px 10px;
    }
}

a:link {
	color: #0072BC;
	text-decoration: none;
}

a:visited {
	color: #0072BC;
	text-decoration: none;
}

a:hover,
a:active {
	color: #0072BC;
	text-decoration: none;
}

#container {
	color: #333;
	text-align: left;
	line-height: 1.4;
	margin: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 13px;
	min-width: 990px;
}




.wrapper
 {
    /* width: 85%; */
    /* min-width: 970px; */
    /* max-width: 1500px; */
    /* margin: auto auto; */
}


#logo {
	background: #fff;
	padding: 10px 0;
	border-bottom: 1px solid #263c30;
}

#content {
	background: #fff;
	width: auto !important;
	padding: 20px 10px;
	overflow: hidden;
}

#header ul.menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

#header ul.menu li {
	margin: 0 7px;
	display: inline;
}

#header ul.menu li a {
	padding-left: 20px;
	background-image: url(../../../images/headerlinks_sprite.png);
	background-repeat: no-repeat;
	display: inline-block;
	line-height: 16px;
}

#logo ul.top_links {
	font-weight: bold;
	text-align: right;
	margin: -10px 5px 0 0;
}

#logo ul.top_links a.search {
	background-position: 0 0;
}

#logo ul.top_links a.memberlist {
	background-position: 0 -20px;
}

#logo ul.top_links a.calendar {
	background-position: 0 -40px;
}

#logo ul.top_links a.help {
	background-position: 0 -60px;
}

#logo ul.top_links a.portal {
	background-position: 0 -180px;
}

#panel .upper a.logout {
	font-weight: bold;
	background: url(../../../images/headerlinks_sprite.png) right -80px no-repeat;
	padding-right: 20px;
	margin-left: 10px;
}

#panel .upper a.login,
#panel .upper a.lost_password {
	background: url(../../../images/headerlinks_sprite.png) 0 -100px no-repeat;
	padding-left: 20px;
	margin-left: 10px;
	font-weight: bold;
}

#panel .upper a.register {
	background: url(../../../images/headerlinks_sprite.png) right -80px no-repeat;
	padding-right: 20px;
	margin-left: 10px;
	font-weight: bold;
}

#panel .lower ul.panel_links {
	float: left;
}

#panel .lower ul.panel_links a.usercp {
	background-position: 0 -120px;
}

#panel .lower ul.panel_links a.modcp {
	background-position: 0 -140px;
}

#panel .lower ul.panel_links a.admincp {
	background-position: 0 -160px;
}

#panel .lower ul.user_links {
	float: right;
}

#panel .lower ul.user_links li a {
	padding: 0;
	background-image: none;
}

#panel .upper {
	background: #0f0f0f url(../../../images/tcat.png) repeat-x;
	color: #fff;
	border-top: 1px solid #444;
	border-bottom: 1px solid #000;
	padding: 7px;
	clear: both;
}

#panel .upper a:link,
#panel .upper a:visited,
#panel .upper a:hover,
#panel .upper a:active {
	color: #fff;
}

#panel .lower {
	background: #efefef;
	color: #999;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #ccc;
	padding: 5px;
}

#panel .lower a:link,
#panel .lower a:visited,
#panel .lower a:hover,
#panel .lower a:active {
	color: #666;
}

#search {
	border: 0;
	padding: 0;
	margin: 0;
	float: right;
	vertical-align: middle;
}

#search input.button,
#search input.textbox {
	border-color: #000;
}

#search input.button {
	background: #0066a2 url(../../../images/thead.png) top left repeat-x;
	color: #fff;
}

#search input {
	margin: -3px 0;
}

#quick_login .remember_me input {
	vertical-align: middle;
	margin: -3px 0 0 5px;
}

#footer {
	clear: both;
}

#footer ul.menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

#footer ul.menu li {
	margin: 0 5px;
	display: inline;
}

#footer .upper {
	background: #efefef;
	border-top: 1px solid #bbb;
	border-bottom: 1px solid #bbb;
	padding: 6px;
	font-size: 12px;
	overflow: hidden;
}

#footer a:link,
#footer a:visited,
#footer a:hover,
#footer a:active {
	color: #777;
}

#footer .upper .language {
	float: right;
	margin: -1px;
	margin-left: 15px;
}

#footer .upper .language select {
	border-color: #ccc;
}

#footer .upper .theme {
	float: right;
	margin: -1px;
	margin-left: 15px;
}

#footer .upper .theme select {
	border-color: #ccc;
}

#footer .upper ul.bottom_links {
	float: left;
	margin: 4px 0 0 0;
}

#footer .lower {
	color: #666;
	padding: 6px 6px 12px 6px;
	overflow: hidden;
	font-size: 11px;
}

#footer .lower a:link,
#footer .lower a:visited {
	color: #444;
	font-weight: bold;
}

#footer .lower a:hover,
#footer .lower a:active {
	color: #333;
	text-decoration: none;
	font-weight: bold;
}

#footer .lower #current_time {
	float: right;
	color: #888;
}

#debug {
	float: right;
	text-align: right;
	margin-top: 20px;
	font-size: 11px;
}

.scaleimages img {
	max-width: 100%;
}



.forum_status {
    height: 55px;
    width: 60px;
    display: inline-block;
}

.forum_on {
    background: url(../../../images/zaket/on.png) no-repeat 0 0;
}

.forum_off {
    background: url(../../../images/zaket/off.png) no-repeat 0 0;
}

.forum_offclose {
    background: url(../../../images/zaket/offclose.png) no-repeat 0 0;
}

.forum_offlink {
    background: url(../../../images/zaket/offlink.png) no-repeat 0 0;
}


.icon-forums {
    margin-right: 5px;
    margin-left: 5px;
}


.subforumicon {
	height: 10px;
	width: 10px;
	display: inline-block;
	margin: 0 5px;
	background: url(../../../images/mini_status_sprite.png) no-repeat 0 0;
}

.subforum_minion {
	background-position: 0 0;
}

.subforum_minioff {
	background-position: 0 -10px;
}

.subforum_minioffclose {
	background-position: 0 -20px;
}

.subforum_miniofflink {
	background-position: 0 -30px;
}

table {
	color: #333;
	font-size: 13px;
}

.tborder {
	background: #fff;
	width: 100%;
	margin: auto auto;
	border: 1px solid #ccc;
	padding: 1px;
}

.tfixed {
	table-layout: fixed;
	word-wrap: break-word;
}

.thead {
	background: #0066a2 url(../../../images/thead.png) top left repeat-x;
	color: #ffffff;
	border-bottom: 1px solid #263c30;
	padding: 8px;
}

.thead a:link {
	color: #ffffff;
	text-decoration: none;
}

.thead a:visited {
	color: #ffffff;
	text-decoration: none;
}

.thead a:hover,
.thead a:active {
	color: #ffffff;
	text-decoration: underline;
}

.tcat {
	background: #0f0f0f url(../../../images/tcat.png) repeat-x;
	color: #fff;
	border-top: 1px solid #444;
	border-bottom: 1px solid #000;
	padding: 6px;
	font-size: 12px;
}

.tcat a:link {
	color: #fff;
}

.tcat a:visited {
	color: #fff;
}

.tcat a:hover,
.tcat a:active {
	color: #fff;
}

.trow1 {
	background: #f5f5f5;
	border: 1px solid;
	border-color: #fff #ddd #ddd #fff;
}

.trow2 {
	background: #efefef;
	border: 1px solid;
	border-color: #fff #ddd #ddd #fff;
}

.trow_shaded {
	background: #ffdde0;
	border: 1px solid;
	border-color: #fff #ffb8be #ffb8be #fff;
}

.no_bottom_border {
	border-bottom: 0;
}

.post.unapproved_post {
	background: #ffdde0;
}

.thread_start_datetime {
	color: #999;
}

.post.unapproved_post .post_author {
	border-bottom-color: #ffb8be;
}

.post.classic.unapproved_post .post_author {
	border-color: #ffb8be;
}

.post.unapproved_post .post_controls {
	border-top-color: #ffb8be;
}

.trow_deleted,
.post.deleted_post {
	background: #E8DEFF;
}

.trow_selected,
tr.trow_selected td {
	background: #FFFBD9;
	color: #333;
	border-right-color: #F7E86A;
	border-bottom-color: #F7E86A;
}

.trow_selected a:link,
.trow_selected a:visited,
.trow_selected a:hover,
.trow_selected a:active {
	color: #333;
}

.trow_sep {
	background: #ddd;
	color: #333;
	border-bottom: 1px solid #c5c5c5;
	padding: 6px;
	font-size: 12px;
	font-weight: bold;
}

.tfoot {
	border-top: 1px solid #fff;
	padding: 6px;
	background: #ddd;
	color: #666;
}

.tfoot a:link {
	color: #444;
	text-decoration: none;
}

.tfoot a:visited {
	color: #444;
	text-decoration: none;
}

.tfoot a:hover,
.tfoot a:active {
	color: #444;
	text-decoration: underline;
}

.thead input.textbox,
.thead select {
	border: 1px solid #263c30;
}

.bottommenu {
	background: #efefef;
	color: #333;
	border: 1px solid #4874a3;
	padding: 10px;
}






.navigation {
    font-size: 12px;
    border: 1px solid var(--border-color);
    color: var(--color-text);
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}



.navigation a:link {
	text-decoration: none;
}

.navigation a:visited {
	text-decoration: none;
}

.navigation a:hover,
.navigation a:active {
	text-decoration: none;
}

.navigation .active {
    font-weight: 500;
    color: var(--color-text);
}

.largetext {
	font-size: 16px;
	font-weight: bold;
}

fieldset {
	padding: 12px;
	border: 1px solid #ddd;
	margin: 0;
}

fieldset.trow1,
fieldset.trow2 {
	border-color: #bbb;
}

fieldset.align_right {
	text-align: right;
}

input.textbox {
	background: #ffffff;
	color: #333;
	border: 1px solid #ccc;
	padding: 3px;
	outline: 0;
	font-size: 13px;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
}

input.textbox.portal_search {
    width: 68%;
}

textarea {
    background: #ffffff;
    color: #333;
    border: 1px solid #ccc;
    padding: 2px;
    line-height: 1.4;
    outline: 0;
    font-family: Tahoma, Verdana, Arial, Sans-Serif;
    font-size: 13px;
    width: 98% !important;
}
select {
	background: #ffffff;
	padding: 3px;
	border: 1px solid #ccc;
	outline: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 13px;
}


button, input.button {
    display: inline-block;
    padding: 9px 10px;
    margin: 5px 2px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--color-text);
    cursor: pointer;
}

button:hover,
input.button:hover {
    border: 1px solid var(--border-color);
}

form {
	margin: 0;
	padding: 0;
}

input.error, textarea.error, select.error {
	border: 1px solid #f30;
	color: #f30;
}

input.valid, textarea.valid, select.valid {
	border: 1px solid #0c0;
}

label.error {
	color: #f30;
	margin: 5px;
	padding: 0px;
	display: block;
	font-weight: bold;
	font-size: 11px;
}

form #message {
	width: 500px;
}

.editor {
	background: #f1f1f1;
	border: 1px solid #ccc;
}

.editor_control_bar {
	background: #fff;
	border: 1px solid #ccc;
}

.post .editor_control_bar {
	background: #f5f5f5;
}

.popup_menu {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}




.popup_menu .popup_item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--color-text);
}




.popup_menu .popup_item:hover {
	background: #0072BC;
	color: #fff;
}

.trow_reputation_positive {
	background: #ccffcc;
}

.trow_reputation_negative {
	background: #ffcccc;
}

.reputation_positive {
	color: green;
}

.reputation_neutral {
	color: #444;
}

.reputation_negative {
	color: red;
}

.repbox {
	font-size:16px;
	font-weight: bold;
	padding:5px 7px 5px 7px;
}

._neutral {
	background-color:#FAFAFA;
	color: #999999;
	border:1px solid #CCCCCC;
}

._minus {
	background-color: #FDD2D1;
	color: #CB0200;
	border:1px solid #980201;
}

._plus {
	background-color:#E8FCDC;
	color: #008800;
	border:1px solid #008800;
}

img {
	border: none;
}

img.attachment {
	border: 1px solid #E9E5D7;
	padding: 2px;
}

hr {
	background-color: #000000;
	color: #000000;
	height: 1px;
	border: 0px;
}

.clear {
	clear: both;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

.hidden {
	display: none;
	float: none;
	width: 1%;
}

.hiddenrow {
	display: none;
}

.selectall {
	background: #FFFBD9;
	border-bottom: 1px solid #F7E86A;
	color: #333;
	text-align: center;
}

.expcolimage {
	float: right;
	width: auto;
	vertical-align: middle;
	margin-top: 3px;
}

.tcat_menu > .expcolimage {
	margin-top: 0;
}

blockquote {
	border: 1px solid #ccc;
	margin: 0;
	background: #fff;
	padding: 10px;
}

blockquote cite {
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	font-style: normal;
	display: block;
	padding-bottom: 3px;
	margin: 0 0 10px 0;
}

blockquote cite > span {
	float: right;
	font-weight: normal;
	font-size: 12px;
	color: #666;
}

blockquote cite span.highlight {
	float: none;
	font-weight: bold;
	padding-bottom: 0;
}

.codeblock {
	background: #fff;
	border: 1px solid #ccc;
	padding: 10px;
}

.codeblock .title {
	border-bottom: 1px solid #ccc;
	font-weight: bold;
	padding-bottom: 3px;
	margin: 0 0 10px 0;
}

.codeblock code {
	overflow: auto;
	height: auto;
	max-height: 200px;
	display: block;
	font-family: Monaco, Consolas, Courier, monospace;
	font-size: 13px;
}

.smilie {
	vertical-align: middle;
}

.smilie_pointer {
	cursor: pointer;
}

.separator {
	margin: 5px;
	padding: 0;
	height: 0px;
	font-size: 1px;
	list-style-type: none;
}

.popup_menu .popup_item_container {
	margin: 1px;
	text-align: left;
}

.popup_menu .popup_item {
	display: block;
	padding: 4px;
	white-space: nowrap;
	text-decoration: none;
}

.popup_menu a.popup_item:hover {
	text-decoration: none;
}

.subject_new {
	font-weight: bold;
}

.highlight {
	background: #FFFFCC;
	padding-top: 3px;
	padding-bottom: 3px;
}

.pm_alert {
	background: #FFF6BF;
	border: 1px solid #FFD324;
	text-align: center;
	padding: 5px 20px;
	margin-bottom: 15px;
	font-size: 11px;
}

.red_alert {
	background: #FBE3E4;
	border: 1px solid #A5161A;
	color: #A5161A;
	text-align: center;
	padding: 5px 20px;
	margin-bottom: 15px;
	font-size: 11px;
	word-wrap: break-word;
}

.red_alert a:link,
.red_alert a:visited,
.red_alert a:hover,
.red_alert a:active {
	color: #A5161A;
}

.high_warning {
	color: #CC0000;
}

.moderate_warning {
	color: #F3611B;
}

.low_warning {
	color: #AE5700;
}

.imminent_banned {
	color: #880000;
}

.high_banned {
	color: #FF0000;
}

.moderate_banned {
	color: #FF6600;
}

.low_banned {
	color: #008000;
}

.online {
	color: #15A018;
}

.offline {
	color: #C7C7C7;
}

div.error {
	padding: 5px 10px;
	border: 2px solid #FFD324;
	background: #FFF6BF;
	font-size: 12px;
}

div.error p {
	margin: 0;
	color: #333;
	font-weight: normal;
}

div.error p em {
	font-style: normal;
	font-weight: bold;
	padding-left: 24px;
	display: block;
	color: #C00;
	background: url(../../../images/error.png) no-repeat 0;
}

div.error ul {
	margin-left: 24px;
}

.pagination {
	font-size: 11px;
	padding-top: 10px;
	margin-bottom: 5px;
}

.tfoot .pagination,
.tcat .pagination {
	padding-top: 0;
}

.pagination .pages {
	font-weight: bold;
}

.pagination .pagination_current,
.pagination a {
	padding: 3px 6px;
	margin-bottom: 3px;
}

.pagination a {
	background: #f5f5f5;
	border: 1px solid #ccc;
}

.pagination .pagination_current {
	background: none;
	color: #333;
	border: none;
	font-weight: bold;
}

.pagination a:hover {
	background: #0072BC;
	color: #fff;
	border-color: #263c30;
	text-decoration: none;
}

.pagination .go_page img {
	margin-bottom: -4px;
}

.drop_go_page {
	background: #f5f5f5;
	padding: 4px;
}

.pagination_breadcrumb {
	background-color: #efefef;
	border: 1px solid #fff;
	outline: 1px solid #ccc;
	padding: 5px;
	margin-top: 5px;
	font-weight: normal;
}

.pagination_breadcrumb_link {
	vertical-align: middle;
	cursor: pointer;
}

.thread_legend,
.thread_legend dd {
	margin: 0;
	padding: 0;
}

.thread_legend dd {
	padding-bottom: 4px;
	margin-right: 15px;
}

.thread_legend img {
	margin-right: 4px;
	vertical-align: bottom;
}

.forum_legend,
.forum_legend dt,
.forum_legend dd {
	margin: 0;
	padding: 0;
}

.forum_legend dd {
	float: left;
	margin-right: 10px;
	margin-top: 7px;
}

.forum_legend dt {
	margin-right: 10px;
	float: left;
}

.success_message {
	color: #00b200;
	font-weight: bold;
	font-size: 10px;
	margin-bottom: 10px;
}

.error_message {
	color: #C00;
	font-weight: bold;
	font-size: 10px;
	margin-bottom: 10px;
}

#posts_container {
	padding: 0;
}

.ignored_post {
	border-top: 3px solid #333;
	padding: 15px;
}

.ignored_post .show_ignored_post {
	margin-top: -15px;
}

.ignored_post .show_ignored_post a.button span {
	background-position: 0 -400px;
}

.deleted_post_hidden {
	border-top: 2px solid #ccc;
	padding: 15px;
}

.deleted_post_collapsed {
	border-top: 3px solid #333;
	padding: 15px;
}

.deleted_post_collapsed .show_deleted_post {
	margin-top: -15px;
}

.deleted_post_collapsed .show_deleted_post a.button span {
	background-position: 0 -400px;
}

.post {
	overflow: hidden;
}

.post.classic {
	padding-top: 15px;
}











.post .post_author .buddy_status {
	vertical-align: middle;
	margin-top: -4px;
}









.post.classic .post_author div.author_avatar {
	float: none;
	text-align: center;
	margin-bottom: 8px;
}

.post .post_author div.author_information {
	float: left;
	padding: 6px 8px;
}

.post.classic .post_author div.author_information {
	float: none;
	padding: 0;
	text-align: center;
}









.post .post_head {
	font-size: 11px;
	padding-bottom: 4px;
	border-bottom: 1px dotted #ddd;
	margin-bottom: 4px;
}

.post .post_head span.post_date {
	color: #666;
}

.post .post_head span.edited_post {
	font-size: 10px;
	color: #999;
}

.post .post_head span.edited_post a {
	color: #666;
}

.post_body {
	font-size: 14px;
	padding: 12px 0;
}

.post.classic .post_content {
	float: left;
	width: 79%;
	padding: 0 1% 5px 1%;
}

.post_content {
	padding: 9px 10px 5px 10px;
}

.post_content .signature {
	margin-top: 5px;
	border-top: 1px dotted #ddd;
	padding: 10px 0 4px 0;
}

.post .post_meta {
	margin: 4px 0;
	font-size: 11px;
	color: #999;
}

.post .post_meta a:link,
.post .post_meta a:visited {
	color: #777;
}

.post .post_meta a:hover,
.post .post_meta a:active {
	color: #777;
}

.post_controls {
	clear: both;
	background: #f5f5f5;
	border-bottom: 1px solid #ccc;
	padding: 5px;
	overflow: hidden;
}

.postbit_buttons > a:link,
.postbit_buttons > a:hover,
.postbit_buttons > a:visited,
.postbit_buttons > a:active {
	display: inline-block;
	padding: 2px 5px;
	margin: 2px;
	font-size: 11px;
	background: #eee url(../../../images/buttons_bg.png) repeat-x;
	border: 1px solid #ccc;
	color: #555;
}

.postbit_buttons > a:hover {
	border-color: #bbb;
}

.postbit_buttons a span {
	padding-left: 20px;
	display: inline-block;
	height: 16px;
	background-image: url(../../../images/buttons_sprite.png);
	background-repeat: no-repeat;
}

.postbit_buttons a.postbit_find span {
	background-position: 0 0;
}

.postbit_buttons a.postbit_reputation_add span {
	background-position: 0 -20px;
}

.postbit_buttons a.postbit_email span {
	background-position: 0 -40px;
}

.postbit_buttons a.postbit_website span {
	background-position: 0 -60px;
}

.postbit_buttons a.postbit_pm span {
	background-position: 0 -80px;
}

.postbit_buttons a.postbit_quote span {
	background-position: 0 -100px;
}

.postbit_buttons a.postbit_multiquote span {
	background-position: 0 -120px;
}

.postbit_buttons a.postbit_multiquote_on span {
	background-position: 0 -140px;
}

.postbit_buttons a.postbit_edit span {
	background-position: 0 -160px;
}

.postbit_buttons a.postbit_qdelete span {
	background-position: 0 -180px;
}

.postbit_buttons a.postbit_qrestore span {
	background-position: 0 -200px;
}

.postbit_buttons a.postbit_report span {
	background-position: 0 -220px;
}

.postbit_buttons a.postbit_warn span {
	background-position: 0 -240px;
}

.postbit_buttons a.postbit_purgespammer span {
	background-position: 0 -540px;
}

.postbit_buttons a.postbit_reply_pm span {
	background-position: 0 -260px;
}

.postbit_buttons a.postbit_reply_all span {
	background-position: 0 -280px;
}

.postbit_buttons a.postbit_forward_pm span {
	background-position: 0 -300px;
}

.postbit_buttons a.postbit_delete_pm span {
	background-position: 0 -320px;
}

.post:not(.deleted_post) .postbit_qrestore,
.post:not(.deleted_post) .status_type,
.post.deleted_post .postbit_mirage {
    display: none;
}





a.button:link, a.button:visited, a.button:active {
    background: var(--bg-primary);
    color: var(--color-text);
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 3px;
    margin: 10px 0px;
    font-weight: 800;

}














a.button.small_button {
	font-size: 13px;
	margin: 0;
	padding: 3px 6px;
}

a.button span {
	padding-left: 20px;
	display: inline-block;
	background-image: url(../../../images/buttons_sprite.png);
	background-repeat: no-repeat;
}

a.button.new_thread_button span {
	background-position: 0 -340px;
}

a.button.new_reply_button span {
	background-position: 0 -360px;
}

a.button.closed_button span {
	background-position: 0 -380px;
}

a.button.rate_user_button span {
	background-position: 0 -400px;
}

a.button.add_buddy_button span {
	background-position: 0 -440px;
}

a.button.remove_buddy_button span {
	background-position: 0 -480px;
}

a.button.add_ignore_button span {
	background-position: 0 -460px;
}

a.button.remove_ignore_button span {
	background-position: 0 -500px;
}

a.button.report_user_button span {
	background-position: 0 -520px;
}

.quick_jump {
	background: url(../../../images/jump.png) no-repeat 0;
	width: 13px;
	height: 13px;
	padding-left: 13px; /* amount of padding needed for image to fully show */
	margin-top: -3px;
	border: none;
}

.pollbar {
	background: url(../../../images/pollbar.png) top left repeat-x;
	border: 1px solid #3f3f3f;
	height: 10px;
}

.pollbar .percent {
	display: none;
}

.poll_votedfor {
	background: #efefef;
	border: 1px solid;
	border-color: #fff #ddd #ddd #fff;
}

.posticons_label {
	white-space: nowrap;
}

/** jGrowl Start **/

/** Special IE6 Style Positioning **/
.ie6 {
	position: absolute;
}

.ie6.top-right {
	right: auto;
	bottom: auto;
	left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

.ie6.top-left {
	left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

.ie6.bottom-right {
	left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

.ie6.bottom-left {
	left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

.ie6.center {
	left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
	width: 100%;
}

/** jGrowl Styling **/
.jGrowl {
	z-index: 9999;
	color: #ffffff;
	font-size: 12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	position: fixed;
}
.jGrowl.top-left {
	left: 0px;
	top: 0px;
}
.jGrowl.top-right {
	right: 0px;
	top: 0px;
}
.jGrowl.bottom-left {
	left: 0px;
	bottom: 0px;
}
.jGrowl.bottom-right {
	right: 0px;
	bottom: 0px;
}
.jGrowl.center {
	top: 0px;
	width: 50%;
	left: 25%;
}

/** Cross Browser Styling **/

.jGrowl.center .jGrowl-notification,
.jGrowl.center .jGrowl-closer {
	margin-left: auto;
	margin-right: auto;
}
.jGrowl-notification {
	background-color: transparent;
	opacity: 0.9;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=(0.9*100));
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=(0.9*100));
	transform: scale(1);
	width: 250px;
	padding: 10px;
	margin: 10px;
	text-align: left;
	display: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	word-break: break-all;
}
.jGrowl .jGrowl-notification {
	min-height: 40px;
}
.jGrowl-notification .ui-state-highlight,
.jGrowl-notification .ui-widget-content .ui-state-highlight,
.jGrowl-notification .ui-widget-header .ui-state-highlight {
	border: 1px solid #000;
	background: #000;
	color: #fff;
}
.jGrowl-notification .jGrowl-header {
	font-weight: bold;
	font-size: .85em;
}
.jGrowl-notification .jGrowl-close {
	background-color: transparent;
	color: inherit;
	border: none;
	z-index: 99;
	float: right;
	font-weight: bold;
	font-size: 1em;
	cursor: pointer;
}
.jGrowl-closer {
	background-color: #000000;
	opacity: 0.9;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=(0.9*100));
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=(0.9*100));
	transform: scale(1);
	width: 250px;
	padding: 10px;
	margin: 10px;
	text-align: left;
	display: none;
	border-radius: 5px;
	word-break: break-all;
	padding-top: 4px;
	padding-bottom: 4px;
	cursor: pointer;
	font-size: .9em;
	font-weight: bold;
	text-align: center;
}
.jGrowl-closer .ui-state-highlight,
.jGrowl-closer .ui-widget-content .ui-state-highlight,
.jGrowl-closer .ui-widget-header .ui-state-highlight {
	border: 1px solid #000;
	background: #000;
	color: #fff;
}

.jGrowl .jGrowl-notification.jgrowl_success {
    background: lightgreen;
    border: 1px solid lightgreen;
    color: #333;
}

.jGrowl .jGrowl-notification.jgrowl_error {
    background: red;
    border: 1px solid red;
    color: #333;
}

.jGrowl .jGrowl-notification.jgrowl_process, .jGrowl .jGrowl-closer {
    background: yellow;
    border: 1px solid yellow;
	color: #333;
}

/** Hide jGrowl when printing **/
@media print {
	.jGrowl {
		display: none;
	}
}

/** jGrowl End **/

/** Modal Start **/

.blocker {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 9999;
	padding: 20px;
	box-sizing: border-box;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.75);
	text-align: center;
}

.blocker:before{
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.05em;
}

.blocker.behind {
	background-color: transparent;
}

.modal {
	width: 400px;
	text-align: left;
	background: #fff;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 2;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 10px #000;
	-moz-box-shadow: 0 0 10px #000;
	-o-box-shadow: 0 0 10px #000;
	-ms-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
}

.modal a.close-modal {
	position: absolute;
	top: -12.5px;
	right: -12.5px;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background: url(../../../images/close.png) no-repeat 0 0;
	z-index: 2;
}

.modal-spinner {
	display: none;
	width: 64px;
	height: 64px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-right: -32px;
	margin-top: -32px;
	background: url(../../../images/spinner_big.gif) no-repeat center center;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
}

/** Modal End **/

/** Impromptu Start **/

/*! jQuery-Impromptu - v6.2.3 - 2016-04-23
* http://trentrichardson.com/Impromptu
* Copyright (c) 2016 Trent Richardson; Licensed MIT */

.jqifade{
	position: absolute;
	background-color: #777777;
}
iframe.jqifade{
	display:block;
	z-index:-1;
}
div.jqi{
	width: 400px;
	max-width:90%;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	position: absolute;
	background-color: #ffffff;
	font-size: 11px;
	text-align: left;
	border: solid 1px #eeeeee;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	padding: 7px;
}
div.jqi .jqicontainer{
}
div.jqi .jqiclose{
	position: absolute;
	top: 4px; right: -2px;
	width: 18px;
	cursor: default;
	color: #bbbbbb;
	font-weight: bold;
}
div.jqi .jqistate{
	background-color: #fff;
}
div.jqi .jqititle{
	padding: 5px 10px;
	font-size: 16px;
	line-height: 20px;
	border-bottom: solid 1px #eeeeee;
}
div.jqi .jqimessage{
	padding: 10px;
	line-height: 20px;
	color: #444444;
	overflow: auto;
}
div.jqi .jqibuttonshide{
	display: none;
}
div.jqi .jqibuttons{
	text-align: right;
	margin: 0 -7px -7px -7px;
	border-top: solid 1px #e4e4e4;
	background-color: #f4f4f4;
	border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	-webkit-border-radius: 0 0 6px 6px;
}
div.jqi .jqibuttons button{
	margin: 0;
	padding: 15px 20px;
	background-color: transparent;
	font-weight: normal;
	border: none;
	border-left: solid 1px #e4e4e4;
	color: #777;
	font-weight: bold;
	font-size: 12px;
}
div.jqi .jqibuttons button.jqidefaultbutton{
	color: #489afe;
}
div.jqi .jqibuttons button:hover,
div.jqi .jqibuttons button:focus{
	color: #287ade;
	outline: none;
}
div.jqi .jqibuttons button[disabled]{
	color: #aaa;
}
.jqiwarning .jqi .jqibuttons{
	background-color: #b95656;
}

/* sub states */
div.jqi .jqiparentstate::after{
	background-color: #777;
	opacity: 0.6;
	filter: alpha(opacity=60);
	content: '';
	position: absolute;
	top:0;left:0;bottom:0;right:0;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}
div.jqi .jqisubstate{
	position: absolute;
	top:0;
	left: 20%;
	width: 60%;
	padding: 7px;
	border: solid 1px #eeeeee;
	border-top: none;
	border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	-webkit-border-radius: 0 0 6px 6px;
}
div.jqi .jqisubstate .jqibuttons button{
	padding: 10px 18px;
}

/* arrows for tooltips/tours */
.jqi .jqiarrow{ position: absolute; height: 0; width:0; line-height: 0; font-size: 0; border: solid 10px transparent;}

.jqi .jqiarrowtl{ left: 10px; top: -20px; border-bottom-color: #ffffff; }
.jqi .jqiarrowtc{ left: 50%; top: -20px; border-bottom-color: #ffffff; margin-left: -10px; }
.jqi .jqiarrowtr{ right: 10px; top: -20px; border-bottom-color: #ffffff; }

.jqi .jqiarrowbl{ left: 10px; bottom: -20px; border-top-color: #ffffff; }
.jqi .jqiarrowbc{ left: 50%; bottom: -20px; border-top-color: #ffffff; margin-left: -10px; }
.jqi .jqiarrowbr{ right: 10px; bottom: -20px; border-top-color: #ffffff; }

.jqi .jqiarrowlt{ left: -20px; top: 10px; border-right-color: #ffffff; }
.jqi .jqiarrowlm{ left: -20px; top: 50%; border-right-color: #ffffff; margin-top: -10px; }
.jqi .jqiarrowlb{ left: -20px; bottom: 10px; border-right-color: #ffffff; }

.jqi .jqiarrowrt{ right: -20px; top: 10px; border-left-color: #ffffff; }
.jqi .jqiarrowrm{ right: -20px; top: 50%; border-left-color: #ffffff; margin-top: -10px; }
.jqi .jqiarrowrb{ right: -20px; bottom: 10px; border-left-color: #ffffff; }

/** Impromptu End */



/* ============================= */
/*   Navbar Fixed & Layout       */
/* ============================= */

.headmenlogo {
    display: flex;
    align-items: center;
    font-family: "Chakra Petch", sans-serif;
    margin-right: 20px;
    font-size: 29px;
    font-weight: 600;
}

span.cslogotext {
    color: #00b8ff;
}

.navmenulinkx {
    color: var(--color-text) !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    /* text-shadow: 0 0 0.5px black; */
}





.underheadbar
{
   border-top: 1px solid var(--border-color);
    /* background: var(--bg-secondary); */
    color: var(--color-text);
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}





.bottomnavv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.left-bottomnav {
    display: flex;
    gap: 10px;
    height: 50px;
    align-items: center;
    justify-content: flex-start;
    /* padding-left: 20px; */
}

.right-bottomnav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}











.left-bottomnav a {
    padding: 14px 10px;
    text-transform: uppercase;
    font-size: 12px;
    text-shadow: none;
     color: var(--color-text);
    font-weight: bold;
    letter-spacing: 0;
}

a.icon-sociale {
    color: #fff !important;
    padding: 6px 6px;
    box-sizing: border-box;
    max-width: 30px;
    min-width: 27px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    font-size: 13px;
}

a.icon-sociale.fb {
    padding: 6px 8px;
}

.fb {
    background: #0073ff;
}
.steam {
    background: #1c1c1c;
}
.yt {
    background: #ff0000;
}



/* ============================= */
/* Overhead Bar (static)         */
/* ============================= */
.overheadbar {
    padding: 10px 20px;
    background: #8d3030;
    color: white;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    z-index: 999;
}

.imgforxmasx {
    height: 20px;
    background-image: url(https://i.imgur.com/Na4VzuG.png);
    background-repeat: repeat-x;
    background-size: 600px auto;
}

#animate-area {
    background-image: url(https://i.imgur.com/bk5HCvE.jpeg);
    background-repeat: repeat-x;
    animation: animatedBackground 30s linear infinite alternate;
}
.slider-top {
    /* background: url(../../../images/zaket/Nnzw3On.png); */
    /* background-repeat: no-repeat; */
    /* background-position: bottom right; */
    max-width: -webkit-fill-available;
    background-size: cover;
    /* background-position-y: 21%; */
    /* mix-blend-mode: difference; */
    border-bottom: 1px solid #1c1b1b;
    height: 265px;
}
@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}



/* ============================= */
/* subforums                 */
/* ============================= */


.columns {
    list-style: none;
    margin: 0;
    padding: 0;
}

.coloredwh
 {
    color: #b7b7b7 !important;
}


.columns li {
    width: 33%;
    float: left;
}


.spacer5 {
    margin-right: 5px;
}






























/* ============================= */
/*Forumdisplay                  */
/* ============================= */


.forumdisplay-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
}

.forumdisplay-container {
	width: 100%;
	display: flex;
	gap: 20px;
}

.forumdisplay-main {
	flex: 1;
	min-width: 0;
}

/* ============================= */
/* forumdisplay_announcement_rating */
/* ============================= */

/* css.normal */
.forumdisplay-announcement-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 100%;
    font-size: 14px;
    color: var(--color-text);
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-announcement-rating {
        min-width: 40px;
        font-size: 12px;
    }
}

/* ============================= */
/* forumdisplay_announcements */
/* ============================= */

/* css.normal */
.forumdisplay-announcements {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.forumdisplay-announcements .announcements-title {
    font-weight: bold;
    background: var(--bg-secondary);
    color: var(--color-text);
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px 4px 0 0;
}

.forumdisplay-announcements .announcements-list {
    border: 1px solid var(--border-color);
    border-top: none;
    padding: 10px 12px;
    background: var(--bg-primary);
}

/* css.responsive */
@media screen and (max-width: 576px) {
    .forumdisplay-announcements .announcements-title {
        font-size: 14px;
        padding: 6px 8px;
    }

    .forumdisplay-announcements .announcements-list {
        padding: 8px 10px;
    }
}

/* ============================= */
/* forumdisplay_announcements_announcement */
/* ============================= */

/* css.normal */
.forumdisplay-announcement-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 10px;
    background: var(--bg-primary);
    color: var(--color-text);
    flex-wrap: wrap;
}

.forumdisplay-announcement-item > div {
    padding: 0 6px;
    font-size: 14px;
}

.announcement-status, .announcement-icon {
    width: 2%;
    text-align: center;
}

.announcement-content {
    flex: 2 1 50%;
}

.announcement-posts,
.announcement-threads,
.announcement-rating {
    width: 5%;
    text-align: center;
}

.announcement-date {
    flex: 1 1 15%;
    text-align: right;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-announcement-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .announcement-status,
    .announcement-icon,
    .announcement-posts,
    .announcement-threads,
    .announcement-rating,
    .announcement-date {
        width: 100%;
        text-align: left;
        margin-top: 4px;
    }

    .announcement-content {
        flex: 1 1 100%;
    }
}


/* ============================= */
/* forumdisplay_subforums */
/* ============================= */

/* css.normal */
.forumdisplay-subforums {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--bg-secondary);
    margin-bottom: 15px;
    overflow: hidden;
}

.subforums-title {
    text-align: center;
    padding: 8px 10px;
    background: var(--bg-primary);
    font-weight: bold;
    border-bottom: 1px solid var(--border-color);
    color: var(--color-text);
}

.subforums-header {
    display: flex;
    padding: 6px 10px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.subforum-col {
    padding: 0 6px;
    display: flex;
    align-items: center;
}

.subforum-col.status { width: 2%; }
.subforum-col.forum-name { flex: 2 1 59%; }
.subforum-col.threads { width: 7%; text-align: center; }
.subforum-col.posts { width: 7%; text-align: center; }
.subforum-col.lastpost { width: 15%; text-align: center; }

.subforums-list > * {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--color-text);
    flex-wrap: wrap;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .subforums-header, 
    .subforums-list > * {
        flex-direction: column;
        align-items: flex-start;
    }

    .subforum-col {
        width: 100% !important;
        text-align: left !important;
        padding: 4px 0;
    }

    .subforum-col.forum-name {
        flex: 1 1 100%;
    }
}


/* ============================= */
/* forumdisplay_thread */
/* ============================= */

/* css.normal */
.forumdisplay-thread {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 10px;
    background: var(--bg-primary);
    color: var(--color-text);
    flex-wrap: wrap;
}

.forumdisplay-thread > div {
    padding: 0 6px;
    font-size: 14px;
}

.thread-status, .thread-icon {
    width: 2%;
    text-align: center;
}

.thread-content {
    flex: 2 1 50%;
}

.thread-replies,
.thread-views,
.thread-rating {
    width: 5%;
    text-align: center;
}

.thread-lastpost {
    flex: 1 1 15%;
    text-align: right;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-thread {
        flex-direction: column;
        align-items: flex-start;
    }

    .thread-status,
    .thread-icon,
    .thread-replies,
    .thread-views,
    .thread-rating,
    .thread-lastpost {
        width: 100% !important;
        text-align: left !important;
        margin-top: 4px;
    }

    .thread-content {
        flex: 1 1 100%;
    }
}


/* ============================= */
/* forumdisplay_threadlist */
/* ============================= */

/* css.normal */
.forumdisplay-threadlist {
    width: 100%;
    margin-bottom: 15px;
    color: var(--color-text);
    font-size: 14px;
}

.threadlist-topbar, .threadlist-bottombar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.threadlist-topbar .float-left,
.threadlist-bottombar .float-left {
    text-align: left;
}

.threadlist-topbar .float-right,
.threadlist-bottombar .float-right {
    text-align: right;
}

.threadlist-table {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.threadlist-header {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    font-weight: bold;
}

.threadlist-subheader {
    display: flex;
    padding: 6px 10px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.subheader-col {
    padding: 0 6px;
}

.threadlist-body > * {
    padding: 6px 10px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.threadlist-legend {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
}

.threadlist-legend dl {
    margin: 0 10px 0 0;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .threadlist-topbar, .threadlist-bottombar {
        flex-direction: column;
        align-items: flex-start;
    }

    .threadlist-header, .threadlist-subheader {
        flex-direction: column;
        align-items: flex-start;
    }

    .subheader-col {
        width: 100% !important;
        text-align: left !important;
        margin: 3px 0;
    }

    .threadlist-legend {
        flex-direction: column;
    }

    .threadlist-legend .float-left, .threadlist-legend .float-right {
        width: 100%;
        margin-bottom: 5px;
    }
}



/* ============================= */
/* forumdisplay_announcements_announcement_modbit */
/* ============================= */

/* css.normal */
.forumdisplay-announcement-modbit {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 100%;
    font-size: 14px;
    color: var(--color-text);
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-announcement-modbit {
        width: 100%;
        text-align: left;
        margin-top: 4px;
        font-size: 12px;
    }
}


/* ============================= */
/* forumdisplay_forumsort */
/* ============================= */

/* css.normal */
.forumdisplay-forumsort {
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.forumdisplay-forumsort form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.forumdisplay-forumsort select {
    padding: 4px 6px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background: var(--bg-primary);
    color: var(--color-text);
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-forumsort {
        justify-content: flex-start;
    }

    .forumdisplay-forumsort form {
        flex-direction: column;
        align-items: flex-start;
    }

    .forumdisplay-forumsort select {
        width: 100%;
        margin-bottom: 4px;
    }
}

/* ============================= */
/* forumdisplay_inlinemoderation */
/* ============================= */

/* css.normal */
.forumdisplay-inlinemoderation {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    padding: 10px;
    border-radius: 5px;
}

.inlinemod-header {
    font-size: 14px;
    color: var(--color-text);
}

.inlinemod-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inlinemod-controls select {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-primary);
    color: var(--color-text);
}

.inlinemod-controls .button {
    padding: 6px 12px;
    background: #1e90ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* css.responsive */
@media screen and (max-width: 576px) {
    .inlinemod-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .inlinemod-controls select,
    .inlinemod-controls .button {
        width: 100%;
    }
}

/* ============================= */
/* forumdisplay_inlinemoderation */
/* ============================= */

/* css.normal */
.forumdisplay-inlinemoderation {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--bg-secondary);
    padding: 10px;
    margin-bottom: 15px;
}

.inlinemod-header {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
}

.inlinemod-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}

.inlinemod-controls select,
.inlinemod-controls .button {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-primary);
    color: var(--color-text);
    font-size: 14px;
    cursor: pointer;
}

.inlinemod-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* css.responsive */
@media screen and (max-width: 576px) {
    .inlinemod-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .inlinemod-controls select,
    .inlinemod-controls .button {
        width: 100%;
    }
}

/* ============================= */
/* forumdisplay_inlinemoderation_col */
/* ============================= */

/* css.normal */
.forumdisplay-inlinemoderation-col {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    padding: 4px;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-inlinemoderation-col {
        width: 100%;
        justify-content: flex-start;
        margin-top: 4px;
    }
}


/* ============================= */
/* forumdisplay_nothreads */
/* ============================= */

/* css.normal */
.forumdisplay-nothreads {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-primary);
    color: var(--color-text);
    text-align: center;
    font-size: 14px;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-nothreads {
        font-size: 13px;
        padding: 8px;
    }
}


/* ============================= */
/* forumdisplay_thread_deleted */
/* ============================= */

/* css.normal */
.forumdisplay-thread-deleted {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 10px;
    background: var(--bg-primary);
    color: var(--color-text);
    flex-wrap: wrap;
}

.forumdisplay-thread-deleted > div {
    padding: 0 6px;
    font-size: 14px;
}

.thread-status, .thread-icon {
    width: 2%;
    text-align: center;
}

.thread-content {
    flex: 2 1 50%;
    font-style: italic;
}

.thread-replies,
.thread-views,
.thread-rating {
    width: 5%;
    text-align: center;
}

.thread-lastpost {
    flex: 1 1 15%;
    text-align: right;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-thread-deleted {
        flex-direction: column;
        align-items: flex-start;
    }

    .thread-status,
    .thread-icon,
    .thread-replies,
    .thread-views,
    .thread-rating,
    .thread-lastpost {
        width: 100% !important;
        text-align: left !important;
        margin-top: 4px;
    }

    .thread-content {
        flex: 1 1 100%;
    }
}


/* ============================= */
/* forumdisplay_thread_modbit */
/* ============================= */

/* css.normal */
.forumdisplay-thread-modbit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    padding: 4px;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-thread-modbit {
        width: 100%;
        justify-content: flex-start;
        margin-top: 4px;
    }
}


/* ============================= */
/* forumdisplay_thread_rating */
/* ============================= */

/* css.normal */
.forumdisplay-thread-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    padding: 4px;
}

.forumdisplay-thread-rating .star_rating {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--bg-secondary);
    border-radius: 4px;
    position: relative;
    height: 16px;
    width: 80px;
}

.forumdisplay-thread-rating .star_rating li.current_rating {
    background: #f1c40f;
    height: 100%;
    display: block;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-thread-rating {
        width: 100%;
        justify-content: flex-start;
        margin-top: 4px;
    }

    .forumdisplay-thread-rating .star_rating {
        width: 100%;
        height: 14px;
    }
}


/* ============================= */
/* forumdisplay_thread_rating_moved */
/* ============================= */

/* css.normal */
.forumdisplay-thread-rating-moved {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 6px;
    min-width: 40px;
    color: var(--color-text);
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-thread-rating-moved {
        width: 100%;
        text-align: left;
        margin-top: 4px;
    }
}

/* ============================= */
/* forumdisplay_threadlist_rating */
/* ============================= */

/* css.normal */
.forumdisplay-threadlist-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    padding: 4px 6px;
    font-size: 14px;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-threadlist-rating {
        width: 100%;
        justify-content: flex-start;
        margin-top: 4px;
        font-size: 13px;
    }
}

/* ============================= */
/* forumdisplay_threads_sep */
/* ============================= */

/* css.normal */
.forumdisplay-threads-sep {
    width: 100%;
    padding: 8px 10px;
    background: var(--bg-secondary);
    color: var(--color-text-light);
    font-weight: bold;
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-threads-sep {
        padding: 6px 8px;
        font-size: 12px;
    }
}

/* ============================= */
/* forumdisplay_usersbrowsing */
/* ============================= */

/* css.normal */
.forumdisplay-usersbrowsing {
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.4;
}

/* css.responsive */
@media screen and (max-width: 768px) {
    .forumdisplay-usersbrowsing {
        padding: 4px 8px;
        font-size: 12px;
    }
}




/* ============================= */
/* footer                        */
/* ============================= */

/* css.normal */
#footer {
    background: var(--bg-secondary);
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.5;
}










#footer .upper, #footer .lower {
    padding: 10px 0;
}

#footer .bottom_links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

#footer .bottom_links li a {
    color: var(--color-text);
    text-decoration: none;
}

#footer #current_time {
    float: left;
}

#footer #copyright {
    float: right;
}

#footer a {
    color: var(--color-text);
}

/* css.responsive */
@media screen and (max-width: 768px) {
    #footer .wrapper {
        width: 95%;
    }

    #footer .bottom_links {
        flex-direction: column;
        gap: 5px;
    }

    #footer #current_time, #footer #copyright {
        float: none;
        display: block;
        text-align: center;
        margin: 3px 0;
    }
}





/* ===============================
   Boardstats
================================ */

/* ===== CLEAN GAMING STATS ===== */

.index-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
  border-radius: 6px; /* doar cardul */
  margin-bottom: 15px;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden; /* important pt header radius */
}

.index-box-header {
    background: var(--bg-secondary);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: bold;
  border-bottom: 1px solid var(--border-color);
  border-radius: 6px 6px 0 0; /* DOAR sus */
}

.index-box-content {
    background: var(--bg-primary);
    /* padding: 10px; */
    /* box-shadow: 0 0 11px 0px #171a21; */
}

/* ===== TABLE-LIKE GRID ===== */
.stats-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #272c35;
  border-radius: 4px; /* colČuri externe */
  overflow: hidden;   /* pÄstreazÄ forma de tabel */
}

.stats-row {
  display: contents;
}

.stats-cell {
  padding: 8px 10px;
  background: #171a21;
  font-size: 12px;
  color: #c3cad6;
  border-bottom: 1px solid #272c35;
  border-right: 1px solid #272c35;
}

.stats-cell:nth-child(2n) {
  border-right: none;
  text-align: right;
  color: #e0e6f0;
  font-weight: bold;
}

/* eliminÄm border jos pe ultimul rĂ˘nd */
.stats-table .stats-cell:last-child,
.stats-table .stats-cell:nth-last-child(2) {
  border-bottom: none;
}

/* ===== ONLINE USERS ===== */
.index-online {
    background: var(--bg-primary);
    border-bottom:  1px solid var(--border-color);
    /* border-radius: 4px; */
    padding: 8px;
    font-size: 12px;
    color: var(--color-text);
	line-height: 1.8;
}

.index-online a {
    color: var(--color-text);
	text-decoration: none;
}

.index-online a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.index-footer {
  text-align: right;
  padding-top: 8px;
  font-size: 11px;
}

.index-footer a {
  color: #9aa4b8;
  text-decoration: none;
  margin-left: 10px;
}

.index-footer a:hover {
  text-decoration: underline;
}

/* ===== INDEX STATS â LEFT | LOGO | RIGHT ===== */

.stats-flex {
    display: flex;
    border-bottom: 3px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-primary);
    border-top: none;
}

/* coloane stats */
.stats-col {
  flex: 1;
 background: var(--bg-primary);
}

/* separator vertical */
.stats-col + .stats-logo-col,
.stats-logo-col + .stats-col {
  border-left: 1px solid var(--border-color);
}

/* rand statistic */
.stats-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 12px;
  border-bottom: 1px solid var(--border-color);
}

.stats-item:last-child {
  border-bottom: none;
}

.stats-value {
  font-weight: bold;
  color: #e0e6f0;
}

/* coloana logo */
.stats-logo-col {
    /* width: 220px; */
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
}


.stats-logo-col img {
  max-width: 85%;
  height: auto;
}



.stats-logo-col2 {
    /* width: 220px; */
     /*background: #171a21;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
  .stats-flex {
    flex-direction: column;
  }

  .stats-logo-col {
    border-left: none;
    border-top: 1px solid #272c35;
    border-bottom: 1px solid #272c35;
    padding: 10px 0;
  }
}

.statsbfoot {
    text-align: start;
    /* background: #101010; */
    padding: 10px;
}

.smalltext {
    font-size: 0.85em;
    color: var(--color-text);
}















/* ===============================
   RANKS
================================ */


.admsins {
    background: linear-gradient(to right,rgb(19, 27, 40) 0%,rgba(220, 89, 89, 0.81) 50%,rgb(20, 28, 40) 100%);
    width: 208px;
    opacity: 0.8;
    padding: 7px 0px;
    margin: auto;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'Trebuchet MS';
    text-shadow: 1px 1px 1px #333;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 800ms cubic-bezier(0.390,0.500,0.150,1.360);
}


.visp {
    background: linear-gradient(to right, rgba(211,183,31,1) 0%,rgba(217,196,85,1) 50%,rgba(211,183,31,1) 100%);
    width: 208px;
	opacity: 0.8;
    padding: 4px 0px;
    margin: auto;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'Trebuchet MS';
    text-shadow: 1px 1px 1px #333;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2.5px solid #aa9317;
    transition: all 800ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
}



.smosd {
    background: linear-gradient(to right,rgb(20, 28, 41) 0%,rgba(159, 58, 216, 0.69) 50%,rgb(20, 28, 41) 100%);
    width: 208px;
    opacity: 0.8;
    padding: 7px 0px;
    margin: auto;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'Trebuchet MS';
    text-shadow: 1px 1px 1px #333;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 800ms cubic-bezier(0.390,0.500,0.150,1.360);
}


.uydse {
    background: linear-gradient(to right,rgb(20, 28, 41) 0%,rgba(144, 154, 177, 0.29) 50%,rgb(20, 28, 41) 100%);
    width: 208px;
    opacity: 0.8;
    padding: 7px 0px;
    margin: auto;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'Trebuchet MS';
    text-shadow: 1px 1px 1px #333;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* border-bottom: 2.5px solid #2f3644; */
    transition: all 800ms cubic-bezier(0.390,0.500,0.150,1.360)
}



.mossd {
    background: linear-gradient(to right, rgba(0,131,222,1) 0%,rgba(69,162,227,1) 50%,rgba(0,131,222,1) 100%);
    width: 208px;
	opacity: 0.8;
    padding: 4px 0px;
    margin: auto;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'Trebuchet MS';
    text-shadow: 1px 1px 1px #333;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2.5px solid #0d74bb;
    transition: all 800ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
}



.grafikesr {
    background: linear-gradient(to right, rgba(225,72,141,1) 0%,rgba(243,115,173,1) 50%,rgba(225,72,141,1) 100%);
    width: 208px;
	opacity: 0.8;
    padding: 4px 0px;
    margin: auto;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'Trebuchet MS';
    text-shadow: 1px 1px 1px #333;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2.5px solid #cb407f;
    transition: all 800ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
}


.dmossd {
    background: linear-gradient(to right, rgba(53,98,58,1) 0%,rgba(72,130,79,1) 50%,rgba(53,98,58,1) 100%);
    width: 208px;
	opacity: 0.8;
    padding: 4px 0px;
    margin: auto;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'Trebuchet MS';
    text-shadow: 1px 1px 1px #333;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2.5px solid #35623a;
    transition: all 800ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
}

.yonetisci {
    background: linear-gradient(to right, rgba(242,95,56,1) 0%,rgba(249,126,93,1) 50%,rgba(242,95,56,1) 100%);
    width: 208px;
	opacity: 0.8;
    padding: 4px 0px;
    margin: auto;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'Trebuchet MS';
    text-shadow: 1px 1px 1px #333;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2.5px solid #c64d33;
    transition: all 800ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
}
		
		
	


.membru {
    background-image: linear-gradient(0deg, #ffffff85 0%, #ffffff 100%);
    -webkit-background-clip: text;
    font-weight: 600;
    -webkit-text-fill-color: transparent;
    font-size: 10px;
}







.banned {
    background-image: linear-gradient( 
180deg, #2424244f 0%, #878686 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
        font-size: 10px;
}




.gamemanager2 {
    background-image: linear-gradient( 359deg, #2bb100 0%, #002f76 100%);
    -webkit-background-clip: text;
   font-weight: 600;
     -webkit-text-fill-color: transparent;
        font-size: 10px;
}



.gamemanager {
    background-image: linear-gradient( 180deg, #007178 0%, #00c396 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
       font-size: 10px;
}



.premium {
    background-image: -webkit-linear-gradient(#ffeb00, #f9840b);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
       font-size: 10px;
}






.globalmod {
    background-image: linear-gradient( 0deg, #04ff008a 0%, #0cff00 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
        font-size: 10px;
}




.supervizor {
    background-image: linear-gradient( 180deg, #d1300096 0%, #ef8a0c 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
        font-size: 10px;
}




.managercom {
    background-image: -webkit-linear-gradient(39deg, #600000 10%, #ff0000);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
        font-size: 10px;
}



.founder {
    background-image: linear-gradient( 180deg, #420000d4 0%, #ff0000 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
        font-size: 10px;
}










.small10px {
  font-size: 10px; 
}








.ae__breadcrumb-social a {
    margin: 0 10px !important;
    display: inline-block  !important;
}







.sidebar {
       float: right;
    width: 19.7%;
}




.forumsed {
       float: left;
    width: 100%;
}


.card.mb-3 {
    margin-bottom: 30px !important;
}

.card {
    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    border-width: 0;
    transition: all .2s;
}
.text-white {
    color: #fff !important;
}
.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}
.bg-primary {
    background-color: #3f6ad8 !important;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #1e1e1e;
    background-clip: border-box;
    border: 1px solid rgba(26,54,126,0.125);
    border-radius: 0.25rem;
}


.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card.text-dark.text-white .card-footer, .card.text-dark.text-white .card-header, .card.text-white .card-footer, .card.text-white .card-header {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}
.card .card-footer {
    display: flex;
    align-items: center;
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: #282828;
    border-top: 1px solid rgba(26,54,126,0.125);
}


.card.text-dark.text-white .card-footer, .card.text-dark.text-white .card-header, .card.text-white .card-footer, .card.text-white .card-header {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}
.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header {
    display: flex;
    align-items: center;
    border-bottom-width: 1px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0.625rem;
    height: 3.5rem;
}
.card-header, .card-title {
    text-transform: uppercase;
    color: rgb(255 255 255 / 70%);
    font-weight: bold;
    font-size: .88rem;
}
.card-header {
    /* padding: 0.75rem 1.25rem; */
    margin-bottom: 0;
    color: inherit;
    background-color: #191818;
    border-bottom: 1px solid rgba(26,54,126,0.125);
}
.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    color: inherit;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.smalltext12 {
    font-size: 12px;
}



.vipsplash {
    color: #f9ca24;
    background: url(https://i.imgur.com/7NUSuHY.gif);
}

















.scrollingmemb {
    overflow-y: scroll;
    max-height: 220px;
    margin-right: 15px;
}








.banned {
    background-image: linear-gradient( 
180deg, #2424244f 0%, #878686 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
    font-size: 10px;}





.girls {
    background-image: linear-gradient( 180deg, #ff149361 0%, #ff1493 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
    font-size: 10px;}


.staffgaming {
    background-image: linear-gradient( 
180deg, #8104047a 0%, #ff6634 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
    font-size: 10px;}







.designer {
    background-image: linear-gradient( 180deg, #610093b5 0%, #720acb 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
    font-size: 10px;}


.moderator {
    background-image: linear-gradient( 16deg, #00a1ff 0%, #003b7c 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
    font-size: 10px;}





.supervizor {
    background-image: linear-gradient( 180deg, #d1300096 0%, #ef8a0c 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
    font-size: 10px;}










.founder {
    background-image: linear-gradient( 
180deg, #ff0000d4 0%, #ff0000 100%);
    -webkit-background-clip: text;
   font-weight: 600;
    -webkit-text-fill-color: transparent;
    font-size: 10px;}











.small10px {
  font-size: 10px; 
}








.ae__breadcrumb-social a {
    margin: 0 10px !important;
    display: inline-block  !important;
}







.sidebar {
       float: right;
    width: 19.7%;
}




.forumsed {
       float: left;
    width: 80%;
}


.card.mb-3 {
    margin-bottom: 30px !important;
}

.card {
    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    border-width: 0;
    transition: all .2s;
}
.text-white {
    color: #fff !important;
}
.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}
.bg-primary {
    background-color: #3f6ad8 !important;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #1e1e1e;
    background-clip: border-box;
    border: 1px solid rgba(26,54,126,0.125);
    border-radius: 0.25rem;
}


.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card.text-dark.text-white .card-footer, .card.text-dark.text-white .card-header, .card.text-white .card-footer, .card.text-white .card-header {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}
.card .card-footer {
    display: flex;
    align-items: center;
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: #282828;
    border-top: 1px solid rgba(26,54,126,0.125);
}


.card.text-dark.text-white .card-footer, .card.text-dark.text-white .card-header, .card.text-white .card-footer, .card.text-white .card-header {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}
.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header {
    display: flex;
    align-items: center;
    border-bottom-width: 1px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0.625rem;
    height: 3.5rem;
}
.card-header, .card-title {
    text-transform: uppercase;
    color: rgb(255 255 255 / 70%);
    font-weight: bold;
    font-size: .88rem;
}
.card-header {
    /* padding: 0.75rem 1.25rem; */
    margin-bottom: 0;
    color: inherit;
    background-color: #191818;
    border-bottom: 1px solid rgba(26,54,126,0.125);
}
.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    color: inherit;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}



	
		
		
		


/* ===============================
   RIGHT SIDE
================================ */



/* ===============================
   RESPONSIVE
================================ */


































































































































































/* ============================= */
/* Navbar fixat                  */
/* ============================= */
/* Wrapper pentru navbar */
.navbar-wrapper {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar fixat */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 20px;
    z-index: 1000;
    font-family: 'Chakra Petch', sans-serif;
    transition: background 0.3s, color 0.3s;
}



/* Pentru a nu suprapune conținutul paginii, adaugă padding-top pe body egal cu înălțimea navbar-ului */
body {
    padding-top: 80px;
}

/* Shadow când pagina scroll-ează (opțional) */
.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


.navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

/* ============================= */
/*   Menu Items & Dropdown       */
/* ============================= */

.headmenuwelcomeblock {
    display: flex;
    align-items: center;
}

a.icon-topnav {
    padding: 10px;
    color: var(--color-text);
	font-size: 13px;
    font-weight: 500;
}

.head-topbuttons {
    padding: 5px 10px;
    border-left: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color);
    margin-right: 10px;
}

a.icon-topnav {
    padding: 10px;
    color: var(--color-text);
	font-size: 13px;
    font-weight: 500;
}

.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
}

img.enmenu-img {
    width: 37px;
    height: 37px;
    border-radius: 3000px;
    object-fit: cover;
    margin-right: 10px;
}

span.nick-topnav {
    color: var(--color-text);
	font-weight: bold;
    cursor: pointer;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    border: 1px solid var(--border-color);
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    width: 260px;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 999;
}

.user-info {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info .username {
    color: var(--color-text);
    font-weight: 600;
    font-size: 14px;
}
.user-info .email {
    color: var(--color-text);
    font-size: 12px;
    margin-top: 4px;
}
.dropdown-section {
    padding: 10px 0;
}

.section-title {
    padding: 6px 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--color-text);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.15s;
}

.dropdown-footer {
    border-top: 1px solid var(--border-color);
    padding: 12px;
}
.logout-btn {
    display: block;
    text-align: center;
    background: #e74c3c;
    color: var(--color-text);
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
}

a.headerlinkmenu:hover {
    background: var(--bg-primary);
	 -moz-transition: all 0.5s ease-in;
    /* WebKit */
    -webkit-transition: all 0.5s ease-in;
    /* Opera */
    -o-transition: all 0.5s ease-in;
    /* Standard */
    transition: all 0.5s ease-in;
}


.dropdown-menu a:hover {
    background: var(--bg-secondary);

}
.logout-btn:hover {
        background: var(--bg-secondary);
}

span.liczba-wiado-folder
 {
    position: relative;
    font-size: 10px;
    background: #5138ee;
    color: #fff;
    padding: 1px 5px;
    border-radius: 50px;
    right: 5px;
    top: -10px;
    text-shadow: 0px 0px 2px #5138ee;
    margin-right: -13px;
}


/* ============================= */
/*   Responsive Header           */
/* ============================= */
@media (max-width: 1024px) {

    .headmenuwelcomeblock {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 5px 10px;
    }

    .head-topbuttons {
        margin: 5px 0;
        border-left: none;
        border-right: none;
        padding: 5px 0;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    a.icon-topnav {
        font-size: 12px;
        padding: 6px 8px;
    }

    .user-dropdown {
        margin-top: 5px;
        width: auto;
        display: flex;
        justify-content: flex-end;
    }

    .dropdown-menu {
        right: 0;
        width: 220px;
    }

    .user-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .userinforight {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .user-info .username {
        font-size: 13px;
    }

    .user-info .email {
        font-size: 11px;
    }

    .dropdown-section a {
        font-size: 13px;
        padding: 8px 12px;
    }

    .dropdown-footer {
        padding: 8px;
    }

    .logout-btn {
        padding: 8px;
        font-size: 13px;
    }

    span.liczba-wiado-folder {
        font-size: 9px;
        padding: 0 4px;
        top: -8px;
        right: 3px;
    }

    .theme-switch {
        font-size: 14px;
        padding: 5px 8px;
    }
}

/* ============================= */
/*   Mobile (<768px)             */
/* ============================= */





/* ============================= */
/*   Dark/Light Switch           */
/* ============================= */
.theme-switch {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--color-text);
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

.theme-switch:hover {
    background: #1e90ff;
    color: #fff;
	border: 1px solid var(--border-color);
}

/* ============================= */
/*   Welcome Block               */
/* ============================= */
.welcome-block {
    color: var(--color-text);
    font-weight: 500;
}

/* ============================= */
/*   Back-to-top Button           */
/* ============================= */
#backToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--bg-secondary);
    color: var(--color-text);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 9999;
    transition: background 0.3s, color 0.3s;
}

#backToTop:hover {
    background: #1e90ff;
    color: #fff;
}

/* ============================= */
/*   Responsive                  */
/* ============================= */
@media screen and (max-width: 992px) {
    .navbar-left {
        gap: 10px;
    }

    .dropdown-content {
        min-width: 120px;
    }
}





@media screen and (max-width: 576px) {

	
	
	
	
	

	
	

	
	
    .theme-switch {
        font-size: 14px;
        padding: 5px 8px;
    }
}
















/* User Dropdown */
.user-dropdown {
    display: inline-block;
    position: relative;
}

.username-toggle {
    cursor: pointer;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.username-toggle i {
    margin-left: 5px;
}

.user-dropdown .dropdown-content {
    display: none; /* ascuns implicit */
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

.user-dropdown .dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: var(--color-text);
    text-decoration: none;
    transition: background 0.2s;
}

.user-dropdown .dropdown-content a:hover {
    background: #1e90ff;
    color: #fff;
}













/* ============================= */
/* Responsive pentru Tablete si Mobil */
/* ============================= */

/* Breakpoint pentru tablete 

/* Guest dropdown */
.guest-dropdown {
    display: inline-block;
    position: relative;
}

.login-toggle {
    cursor: pointer;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.login-toggle i {
    margin-left: 5px;
}

.guest-dropdown .dropdown-content {
    display: none; /* ascuns implicit */
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    min-width: 280px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Formular login */


/* Guest dropdown */
.guest-dropdown {
    display: inline-block;
    position: relative;
}

.login-toggle {
    cursor: pointer;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.login-toggle i {
    margin-left: 5px;
}

.guest-dropdown .dropdown-content {
    display: none; /* ascuns implicit */
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    min-width: 280px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Formular login */
.guest-login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.guest-login-form .form-group {
    display: flex;
    flex-direction: column;
}

.guest-login-form .form-group label {
    margin-bottom: 4px;
    font-size: 14px;
}

.guest-login-form .form-group input[type="text"],
.guest-login-form .form-group input[type="password"] {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    background: var(--bg-primary);
    color: var(--color-text);
}

/* Remember me */
/* Guest dropdown */
.guest-dropdown {
    display: inline-block;
    position: relative;
}

.login-toggle {
    cursor: pointer;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.login-toggle i {
    margin-left: 5px;
}

/* Dropdown content */
.guest-dropdown .dropdown-content {
    display: none; /* ascuns implicit */
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    min-width: 280px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Formular login */
.guest-login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.guest-login-form .form-group {
    display: flex;
    flex-direction: column;
}

.guest-login-form .form-group label {
    margin-bottom: 4px;
    font-size: 14px;
}

.guest-login-form .form-group input[type="text"],
.guest-login-form .form-group input[type="password"] {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    background: var(--bg-primary);
    color: var(--color-text);
}

/* Remember me */
.guest-login-form .remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
}

.guest-login-form .remember-me input[type="checkbox"] {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    cursor: pointer;
}

.guest-login-form .remember-me label {
    cursor: pointer;
    margin: 0;
}

/* Lost password */
.guest-login-form .forgot-password {
    margin-top: 4px;
    font-size: 12px;
    color: var(--color-text);
    text-decoration: underline;
}

/* Submit button */
.guest-login-form .submit-group {
    display: flex;
    justify-content: center;
}

.guest-login-form .submit-group .button {
    padding: 6px 12px;
    background: #1e90ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}







/* Dropdown Login */
#guest-login-dropdown {
    display: none;
    position: absolute;
    margin-top: 20px;
    left: -235px;
    width: 260px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 20px;
    z-index: 999;
}






#guest-login-dropdown.show {
    display: block;
}

/* Form styling */
#guest-login-dropdown .form-row {
    margin-bottom: 10px;
}

#guest-login-dropdown label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

#guest-login-dropdown input.textbox {
    width: 93%;
    padding: 6px 8px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--bg-secondary);
    color: var(--color-text);
}

#guest-login-dropdown .lost_password {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--color-text);
}

#guest-login-dropdown .remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
}

#guest-login-dropdown .submit-row input.button {
    width: 100%;
    padding: 8px;
    background: #1e90ff;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#guest-login-dropdown .submit-row input.button:hover {
    background: #1565c0;
}




/* Responsive pentru mobil */
@media screen and (max-width: 576px) {
    .guest-dropdown .dropdown-content {
        min-width: 220px;
        right: -10px;
        left: -10px;
        padding: 10px;
    }

    .guest-login-form .form-group {
        gap: 8px;
    }

    .guest-login-form .remember-me {
        flex-direction: column;
        align-items: flex-start;
    }

    .guest-login-form .submit-group {
        width: 100%;
    }

    .guest-login-form .submit-group .button {
        width: 100%;
    }
}




.drpdn-login {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    padding: 12px;
    z-index: 999;
}

.drpdn-login.active {
    display: block;
}

.form-row { margin-bottom: 10px; }
.form-row label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 4px; }
input.textbox { width: 100%; padding: 6px 8px; border-radius: 5px; border: 1px solid var(--border-color); background: var(--bg-secondary); color: var(--color-text);}
.lost_password { display: block; font-size: 11px; margin-top: 4px; color: var(--color-text);}
.remember-me { display: flex; align-items: center; gap: 6px; }
.submit-row input.button { width: 100%; padding: 8px; background: #1e90ff; color: #fff; border: none; border-radius: 5px; cursor: pointer; font-weight: 600;}
.submit-row input.button:hover { background: #1565c0; }















/* Forum category container */





.forum-category {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    /* background: var(--bg-secondary); */
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}


/* Forum header (expand/collapse) */




.forum-header {
    /* display: flex; */
    align-items: center;
    padding: 20px 10px 20px 15px;
    /* cursor: pointer; */
    z-index: 1;
    position: relative;
}







.forum-header .expcolimage {
    /* margin-right: 10px; */
    background: var(--bg-primary);
    padding: 10px;
    margin-top: -8px;
    border-radius: 5px;
}


.forum-header .expcolimage img.expander {
    width: 16px;
    height: 16px;
}

.forum-info strong a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 16px;
}

.forum-info .smalltext {
    font-size: 12px;
    color: var(--color-text-light);
}

/* Forum columns header */
.forum-columns {
    /* display: flex; */
    /* flex-wrap: wrap; */
    padding: 5px 10px;
    /* border-top: 1px solid var(--border-color); */
}

.forum-column {
    padding: 5px;
    font-size: 14px;
    color: var(--color-text);
    flex: 1 1 20%; /* distribuire flex egală */
    min-width: 80px;
}

/* Coloană titlu forum */
.forum-title {
    flex: 2 1 40%; /* mai mare pentru numele forumului */
}

/* Responsive mobil */
@media screen and (max-width: 576px) {
    .forum-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .forum-columns {
        flex-direction: column;
    }

    .forum-column {
        width: 100%;
        padding: 5px 0;
    }
}






/* Forum row */
.forum-row {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

/* Cells */
.forum-cell {
    padding: 5px 8px;
    font-size: 14px;
    color: var(--color-text);
}

/* Status */
.forum-status {
    width: 32px;
    display: flex;
    justify-content: center;
}

/* Main forum info */
.forum-main {
    flex: 2;
    min-width: 200px;
}

.forum-title a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
}


/* Threads / Posts */
.forum-threads,
.forum-posts {
    width: 90px;
    text-align: center;
    white-space: nowrap;
}

/* Last post */
.forum-lastpost {
    width: 220px;
    text-align: right;
    white-space: nowrap;
    font-size: 12px;
}

/* ---------- RESPONSIVE ---------- */











/* Forum row depth2 */




.forum-row-depth2 {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
    border-radius: 6px;
    box-shadow: inset 1px 2px 9px rgb(0 0 0 / 0%), inset -1px -1px 1px rgb(0 0 0 / 6%);
}


/* Generic cell */
.forum-cell {
    padding: 6px 8px;
    font-size: 14px;
    color: var(--color-text);
}

/* Status icon */
.forum-status {
    width: 60px;
    display: flex;
    justify-content: center;
}

/* Main forum content */
.forum-main {
    flex: 2;
    min-width: 220px;
}

.forum-title a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
}

.forum-desc
 {
    font-size: 14px;
    color: var(--color-text-light);
}
/* Moderators list */
.forum-desc .modlist {
    display: block;
    margin-top: 4px;
    font-style: italic;
}

/* Threads / Posts */
.forum-threads,
.forum-posts {
    width: 90px;
    text-align: center;
    white-space: nowrap;
}






/* Last post */
.forum-lastpost {
    width: 220px;
    text-align: start;
    white-space: nowrap;
    font-size: 12px;
}








/* -------- RESPONSIVE -------- */









/* INDEX WRAP */
.index-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.index-container {
    width: 100%;
    display: flex;
    gap: 20px;
}

/* MAIN CONTENT */
.index-main {
    flex: 1;
    min-width: 0;
}

/* SIDEBAR */



.index-sidebar {
    position: relative;
    width: 330px;
    transition: width 0.3s ease;
}





/* HIDDEN STATE */
.index-sidebar.hidden {
    width: 42px;
}

/* SIDEBAR HEADER */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header span {
    font-weight: 600;
}

/* TOGGLE BUTTON */



.sidebar-toggle {
    /* position: absolute; */
    /* top: 10px; */
    /* right: 140px; */
    width: 32px;
    height: 32px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}




/* ICON */
.sidebar-toggle i {
    font-size: 14px;
}


/* SIDEBAR CONTENT */
.sidebar-content {
    padding: 10px;
}

/* ASCUNDE DOAR CONȚINUTUL */
.index-sidebar.hidden .sidebar-header,
.index-sidebar.hidden .sidebar-content {
    display: none;
}

/* SIDEBAR BOX */
.sidebar-box {
    margin-bottom: 15px;
}

.sidebar-box h4 {
    margin-bottom: 5px;
    font-size: 14px;
}

/* FORUM LEGEND */
.forum_legend {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ---------- RESPONSIVE ---------- */
@media screen and (max-width: 1024px) {
    .index-container {
        width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .index-container {
        flex-direction: column;
    }

    .index-sidebar {
        width: 100%;
    }

    .index-sidebar.hidden {
        width: 100%;
    }
}


/* LASTPOST */

.forum-lastpost {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    line-height: 1.4;
}

/* TITLU */
.lastpost-title {
    font-weight: 600;
    color: #1e90ff;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}















/* META*/





.lastpost-meta {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    color: #a0a4b0;
    font-size: 12px;
    flex-direction: column;
}




span.category_icon {
    position: absolute;
    margin: -11px 0px;
    transform: rotate(-20deg);
}



.category_icon:before {
    font-family: 'FontAwesome';
    color: var(--color-text);
    font-size: 67px;
    vertical-align: middle;
    margin-right: 10px;
    opacity: 0.1;
}

/* FORUM - CATEGORY ICONS */


.icon_1:before {
    content: '\f03a';
}



.icon_2:before {content: '\f03a';}
.icon_3:before {content: '\f03a';}
.icon_4:before {content: '\f03a';}
.icon_5:before {content: '\f03a';}
.icon_6:before {content: '\f03a';}
.icon_7:before {content: '\f03a';}
.icon_8:before {content: '\f03a';}
.icon_9:before {content: '\f03a';}
.icon_10:before {content: '\f03a';}
.icon_11:before {content: '\f03a';}
.icon_12:before {content: '\f03a';}
.icon_13:before {content: '\f03a';}
.icon_14:before {content: '\f03a';}
.icon_15:before {content: '\f03a';}
.icon_16:before {content: '\f03a';}
.icon_17:before {content: '\f03a';}
.icon_18:before {content: '\f03a';}
.icon_19:before {content: '\f03a';}
.icon_20:before {content: '\f03a';}
.icon_21:before {content: '\f03a';}
.icon_22:before {content: '\f03a';}






















.lastpost-meta i {
    margin-right: 4px;
    opacity: 0.7;
}


/* RESPONSIVE */



@media (max-width: 768px) {
    .forum-lastpost {
        font-size: 12px;
        overflow: hidden;
    }

	
	
	
	
	
	
	
	
    .lastpost-title {
        white-space: normal;
    }
}








.subcategory {
    margin: 10px 0;
    border: 1px solid #272c35a1;
    background: #171a21;
    border-radius: 6px;
    overflow: hidden;
}

/* HEADER */
.subcategory-header {
    padding: 12px 14px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid #272c35a1;
}

.subcategory-title {
    font-weight: 600;
    color: #1e90ff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.subcategory-title:hover {
    text-decoration: underline;
}

.subcategory-description {
    margin-top: 4px;
    font-size: 13px;
    color: #a0a4b0;
}

/* SUBFORUMS WRAP */
.subcategory-forums {
    display: flex;
    flex-direction: column;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .subcategory-header {
        padding: 10px;
    }

    .subcategory-description {
        font-size: 12px;
    }
}






/* BOARDSTATS */


.boardstats {
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.boardstats-header {
    /* display: flex; */
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
}

.boardstats-header .expcolimage {
    margin-right: 10px;
}

.boardstats-header .expcolimage img.expander {
    width: 16px;
    height: 16px;
}

.boardstats-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
}

/* CONTENT */
.boardstats-content {
    padding: 10px 12px;
}

.boardstats-section {
    margin-bottom: 8px;
    color: var(--color-text-light);
    font-size: 13px;
}

.boardstats-footer {
    text-align: right;
    font-size: 12px;
    color: var(--color-text-light);
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .boardstats {
        width: 100%;
    }

    .boardstats-content {
        padding: 8px 10px;
    }

    .boardstats-title {
        font-size: 14px;
    }

    .boardstats-section {
        font-size: 12px;
    }

    .boardstats-footer {
        font-size: 11px;
    }
}



.xmas-hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: 
        opacity 0.4s ease,
        max-height 0.5s ease,
        transform 0.4s ease;
}

.xmas-visible {
    opacity: 1;
    max-height: 500px; /* suficient cât să încapă */
    transform: translateY(0);
    transition: 
        opacity 0.4s ease,
        max-height 0.5s ease,
        transform 0.4s ease;
}















































































































































































































































































































































































