/* =========================================================
   KRUZIFIX FORUM
   ========================================================= */

.forum-stage {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 315px;
    gap: 42px;
    align-items: start;
}

.forum-stage .main {
    min-width: 0;
}

.forum-breadcrumbs {
    margin-bottom: 32px;
    color: #555;
    font-size: 12px;
}

.forum-breadcrumbs a {
    margin-right: 4px;
}

.forum-intro {
    margin-bottom: 42px;
}

.forum-section {
    margin-top: 42px;
    margin-bottom: 55px;
}

.forum-category {
    margin-bottom: 55px;
}

.forum-category-head {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px dotted #444;
}

.forum-category-title {
    margin: 0;
    font-size: 15px;
    color: #27c891;
    font-weight: bold;
    letter-spacing: 1px;
}

.forum-category-description {
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    color: #666;
    font-size: 12px;
}

.forum-thread-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.forum-thread-table th {
    padding: 6px 6px;
    border-bottom: 1px solid #333;
    color: #666;
    font-size: 11px;
    font-weight: normal;
    text-align: left;
    letter-spacing: 1px;
}

.forum-thread-table td {
    padding: 10px 6px;
    border-bottom: 1px dotted #252525;
    vertical-align: top;
    font-size: 12px;
}

.forum-thread-main {
    width: auto;
}

.forum-thread-small {
    width: 74px;
    text-align: center !important;
}

.forum-thread-last {
    width: 165px;
}

.forum-thread-title {
    font-size: 14px;
    font-weight: bold;
}

.forum-thread-flags {
    display: inline-block;
    margin-right: 5px;
    font-size: 10px;
    letter-spacing: 1px;
}

.forum-flag-sticky {
    color: #d4af37;
}

.forum-flag-locked {
    color: #cc5555;
}

.forum-thread-meta {
    margin-top: 5px;
    color: #555;
    font-size: 11px;
}

.forum-empty {
    padding: 15px 6px;
    color: #555;
    font-size: 12px;
}

.forum-create {
    padding-top: 22px;
    border-top: 1px dotted #333;
}

.forum-create label,
.forum-reply-form label,
.forum-edit-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 6px;
    color: #777;
    font-size: 12px;
    letter-spacing: 1px;
}

.forum-create select,
.forum-create input[type="text"],
.forum-create textarea,
.forum-reply-form textarea,
.forum-edit-form input[type="text"],
.forum-edit-form textarea {
    width: 100%;
    max-width: 650px;
    box-sizing: border-box;
    padding: 6px;
    background: #000;
    color: #ccc;
    border: 1px solid #555;
    font-family: "Times New Roman", Times, serif;
    font-size: 13px;
    outline: none;
}

.forum-create textarea,
.forum-reply-form textarea,
.forum-edit-form textarea {
    min-height: 145px;
    resize: vertical;
}

.forum-create select:focus,
.forum-create input[type="text"]:focus,
.forum-create textarea:focus,
.forum-reply-form textarea:focus,
.forum-edit-form input[type="text"]:focus,
.forum-edit-form textarea:focus {
    border-color: #888;
}

.forum-button,
.forum-create input[type="submit"],
.forum-reply-form input[type="submit"],
.forum-edit-form input[type="submit"],
.forum-inline-form input[type="submit"] {
    padding: 3px 10px;
    background: #d4d0c8;
    color: #000;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    font-family: "Times New Roman", Times, serif;
    font-size: 12px;
    cursor: pointer;
}

.forum-button:disabled,
.forum-create input[type="submit"]:disabled,
.forum-reply-form input[type="submit"]:disabled,
.forum-edit-form input[type="submit"]:disabled,
.forum-inline-form input[type="submit"]:disabled {
    opacity: .55;
    cursor: default;
}

.forum-form-note {
    min-height: 18px;
    margin-top: 8px;
    color: #555;
    font-size: 11px;
}

.forum-form-note.success {
    color: #55bb66;
}

.forum-form-note.error {
    color: #cc3333;
}

/* =========================================================
   THREAD PAGE
   ========================================================= */

.thread-title {
    margin-bottom: 12px;
}

.thread-meta {
    margin-bottom: 35px;
    color: #666;
    font-size: 12px;
    line-height: 1.7;
}

.thread-tools {
    margin-top: 20px;
    margin-bottom: 38px;
    padding-bottom: 18px;
    border-bottom: 1px dotted #333;
}

.thread-tools .forum-inline-form {
    display: inline-block;
    margin: 0 8px 8px 0;
}

.forum-post {
    display: grid;
    grid-template-columns: 135px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px dotted #333;
}

.forum-post-author {
    min-width: 0;
    color: #777;
    font-size: 11px;
}

.forum-post-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #333;
    background: #050505;
}

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

.forum-post-avatar-empty {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 11px;
}

.forum-post-user {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: bold;
}

.forum-post-body-wrap {
    min-width: 0;
}

.forum-post-head {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
    font-size: 11px;
}

.forum-post-number {
    color: #555;
}

.forum-post-body {
    color: #bbb;
    font-size: 14px;
    line-height: 1.55;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.forum-post-edited {
    margin-top: 18px;
    color: #555;
    font-size: 10px;
}

.forum-post-actions {
    margin-top: 20px;
}

.forum-post-actions details {
    margin-top: 15px;
}

.forum-post-actions summary {
    display: inline;
    color: #3366cc;
    text-decoration: underline;
    cursor: pointer;
}

.forum-inline-form {
    display: inline-block;
    margin: 0 8px 8px 0;
}

.forum-delete-link input[type="submit"] {
    color: #520000;
}

.forum-reply-form {
    margin-top: 40px;
}

.forum-locked-notice {
    margin-top: 40px;
    color: #cc6666;
    font-size: 12px;
    letter-spacing: 1px;
}

/* =========================================================
   SHOUTBOX
   ========================================================= */

.shoutbox {
    position: sticky;
    top: 20px;
    min-width: 0;
}

.shoutbox-title {
    margin-top: 0;
    color: #27c891;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

.shoutbox-status {
    margin-bottom: 12px;
    color: #555;
    font-size: 11px;
    letter-spacing: 1px;
}

.shoutbox-messages {
    height: 470px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 8px 8px 8px 6px;
    border: 1px solid #333;
    background: #000;
    scrollbar-color: #444 #000;
}

.shoutbox-empty {
    color: #555;
    font-size: 12px;
}

.shout-entry {
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 1.4;
    word-break: break-word;
}

.shout-time {
    color: #555;
    margin-right: 3px;
}

.shout-user {
    font-weight: bold;
}

.shout-separator {
    color: #777;
}

.shout-message {
    color: #b8b8b8;
}

.shout-delete-form {
    display: inline;
    margin: 0;
    padding: 0;
}

.shout-delete-button {
    padding: 0;
    margin-left: 4px;
    background: none;
    border: 0;
    color: #662222;
    font-family: "Times New Roman", Times, serif;
    font-size: 11px;
    cursor: pointer;
}

.shout-delete-button:hover {
    color: #cc3333;
}

.shoutbox-compose {
    margin-top: 12px;
}

.shoutbox-compose textarea {
    width: 100%;
    height: 64px;
    box-sizing: border-box;
    padding: 6px;
    resize: none;
    background: #000;
    color: #ccc;
    border: 1px solid #555;
    font-family: "Times New Roman", Times, serif;
    font-size: 12px;
    outline: none;
}

.shoutbox-compose textarea:focus {
    border-color: #888;
}

.shoutbox-compose-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 6px;
}

.shout-char-count {
    color: #555;
    font-size: 11px;
}

.shoutbox-compose input[type="submit"] {
    padding: 3px 10px;
    background: #d4d0c8;
    color: #000;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    font-family: "Times New Roman", Times, serif;
    cursor: pointer;
}

.shoutbox-note {
    min-height: 18px;
    margin-top: 8px;
    color: #555;
    font-size: 11px;
}

.shoutbox-note.success {
    color: #55bb66;
}

.shoutbox-note.error {
    color: #cc3333;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
    .forum-stage {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 25px;
    }
}

@media (max-width: 820px) {
    .forum-stage {
        display: block;
    }

    .shoutbox {
        position: static;
        margin-top: 70px;
    }

    .shoutbox-messages {
        height: 360px;
    }

    .forum-post {
        grid-template-columns: 1fr;
    }

    .forum-post-author {
        display: grid;
        grid-template-columns: 65px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
    }

    .forum-post-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }
}


/* =========================================================
   SECONDARY + TIER / FORUM LEVEL
   ========================================================= */

.plus-badge {
    display: inline-block;
    margin-left: 4px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
}

.forum-level-label {
    color: #27c891;
    font-weight: bold;
    letter-spacing: 1px;
}

.forum-level-small {
    color: #666;
    font-size: 10px;
}


/* =========================================================
   ATTACHMENTS
   ========================================================= */

.forum-create input[type="file"],
.forum-reply-form input[type="file"],
.forum-edit-form input[type="file"] {
    display: block;
    width: 100%;
    max-width: 650px;
    box-sizing: border-box;
    padding: 5px;
    background: #000;
    color: #aaa;
    border: 1px solid #444;
    font-family: "Times New Roman", Times, serif;
    font-size: 12px;
}

.forum-attachments {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px dotted #2d2d2d;
}

.forum-attachments-title {
    margin-bottom: 12px !important;
    color: #666;
    font-size: 11px;
    letter-spacing: 1px;
}

.forum-attachment {
    margin-bottom: 18px;
}

.forum-image-link {
    display: block;
    margin-bottom: 7px;
    text-decoration: none;
}

.forum-attached-image {
    display: block;
    max-width: min(100%, 680px);
    max-height: 700px;
    width: auto;
    height: auto;
    border: 1px solid #333;
    background: #050505;
}

.forum-attachment-meta {
    color: #666;
    font-size: 11px;
    overflow-wrap: anywhere;
}

.forum-attachment-meta .forum-inline-form {
    margin-left: 8px;
}


/* =========================================================
   REACTIONS
   ========================================================= */

.forum-reaction-row {
    margin-top: 22px;
    min-height: 22px;
}

.forum-reaction-form {
    display: inline;
    margin: 0;
}

.forum-reaction-form input[type="submit"] {
    padding: 1px 7px;
    background: #000;
    color: #777;
    border: 1px solid #444;
    font-family: "Times New Roman", Times, serif;
    font-size: 11px;
    cursor: pointer;
}

.forum-reaction-form input[type="submit"]:hover {
    color: #27c891;
    border-color: #27705a;
}

.forum-reaction-form input[type="submit"].reaction-active {
    color: #39e6b0;
    border-color: #27705a;
    font-weight: bold;
}

.forum-reaction-static {
    color: #555;
    font-size: 11px;
}


/* =========================================================
   LEVEL FLASH
   ========================================================= */

.forum-initial-flash {
    margin-top: -10px;
    margin-bottom: 28px;
}

/* =========================================================
   V0.4 — WIDER FORUM ONLY
   ========================================================= */

body.forum-view .page {
    width: calc(100% - 48px);
    max-width: 1500px;
}

body.forum-view .layout {
    gap: 34px;
}

body.forum-view .forum-stage {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 46px;
}

/* =========================================================
   NEWS & ANNOUNCEMENTS
   ========================================================= */

.forum-category-news .forum-category-title,
.forum-news-rainbow {
    display: inline-block;
    font-weight: bold;
    background: linear-gradient(
        90deg,
        #ff3b3b,
        #ff9d2e,
        #ffe85a,
        #49ff73,
        #43e8ff,
        #4f78ff,
        #bf5cff,
        #ff4fc8,
        #ff3b3b
    );
    background-size: 350% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: forum-rainbow-shimmer 5s linear infinite;
}

@keyframes forum-rainbow-shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 350% 50%; }
}

/* =========================================================
   USER OF THE MONTH
   ========================================================= */

.forum-user-of-month {
    margin: 8px 0 58px;
    padding: 18px 0 22px;
    border-top: 1px dotted #333;
    border-bottom: 1px dotted #333;
}

.forum-user-of-month h2 {
    margin-top: 0;
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 1px;
}

.forum-uom-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.forum-uom-avatar {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border: 1px solid #444;
}

.forum-uom-name {
    margin: 0 0 5px !important;
    font-size: 15px;
    font-weight: bold;
}

/* =========================================================
   PROFILE VOTES / REPUTATION
   ========================================================= */

.profile-vote-box {
    margin: 26px 0 38px;
    padding: 16px 0;
    border-top: 1px dotted #333;
    border-bottom: 1px dotted #333;
}

.profile-vote-summary {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: baseline;
}

.profile-upvotes {
    color: #7cff35;
    font-weight: 900;
    letter-spacing: .6px;
}

.profile-downvotes {
    color: #ff2e2e;
    font-weight: 900;
    letter-spacing: .6px;
}

.profile-vote-score {
    color: #aaa;
    font-weight: bold;
}

.profile-vote-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.profile-vote-button {
    background: #000;
    font-family: "Times New Roman", Times, serif;
    font-weight: 900;
    cursor: pointer;
    padding: 4px 9px;
}

.profile-vote-up {
    color: #7cff35;
    border: 1px solid #387b1d;
}

.profile-vote-down {
    color: #ff2e2e;
    border: 1px solid #7b2424;
}

.profile-vote-button.active {
    text-decoration: underline;
    filter: brightness(1.35);
}

.profile-vote-note {
    min-height: 16px;
    margin-top: 8px;
    color: #666;
    font-size: 11px;
}

.profile-vote-note.error,
.profile-vote-restricted {
    color: #cc4444;
}

/* =========================================================
   ACCOUNT STATUS / PRESENCE
   ========================================================= */

.account-status-limited {
    color: #ff3333;
    font-weight: 900;
    letter-spacing: 1px;
}

.account-status-normal {
    color: #55bb66;
    font-weight: bold;
}

.presence-dot {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    vertical-align: 1px;
}

.presence-online {
    color: #67ff62;
}

.presence-offline {
    color: #555;
}

.presence-online-text {
    color: #67ff62;
    font-weight: bold;
}

.presence-offline-text {
    color: #777;
}

.profile-forum-stats {
    margin: 28px 0 35px;
    padding: 15px 0;
    border-top: 1px dotted #333;
    border-bottom: 1px dotted #333;
}

.profile-latest-post {
    max-width: 760px;
    color: #999;
    line-height: 1.5;
}

/* =========================================================
   SHOUTBOX AVATAR HOVER + LIMITED
   ========================================================= */

.shoutbox-avatar-preview {
    position: fixed;
    z-index: 9000;
    display: none;
    width: 58px;
    height: 58px;
    padding: 3px;
    pointer-events: none;
    background: #000;
    border: 1px solid #777;
    box-shadow: 0 0 0 1px #111;
}

.shoutbox-avatar-preview.visible {
    display: block;
}

.shoutbox-avatar-preview img {
    display: block;
    width: 58px;
    height: 58px;
    object-fit: cover;
}

.shoutbox-limited,
.forum-limited-notice {
    margin-top: 12px;
    color: #ff4444;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: .8px;
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .forum-category-news .forum-category-title,
    .forum-news-rainbow {
        animation: none;
    }
}

/* =========================================================
   V0.9 — READABILITY PASS
   ========================================================= */

body.forum-view .page {
    width: calc(100% - 34px);
    max-width: 1660px;
}

body.forum-view .layout {
    gap: 30px;
}

body.forum-view .forum-stage {
    grid-template-columns: minmax(0, 1fr) 365px;
    gap: 38px;
}

.forum-section > h2 {
    margin-bottom: 18px;
    padding-bottom: 7px;
    border-bottom: 1px solid #242424;
    color: #8a8a8a;
    font-size: 13px;
    letter-spacing: 2px;
}

.forum-category {
    margin: 0 0 34px;
    padding: 14px 16px 16px;
    border: 1px solid #202020;
    border-left: 3px solid #303030;
    background: #010101;
}

.forum-category + .forum-category {
    margin-top: 20px;
}

.forum-category-head {
    margin-bottom: 12px;
    padding: 0 0 10px;
    border-bottom: 1px dotted #4a4a4a;
}

.forum-category-title {
    font-size: 17px;
    letter-spacing: 1.5px;
}

.forum-category-description {
    max-width: 900px;
    margin-top: 7px !important;
    color: #7a7a7a;
    font-size: 12px;
    line-height: 1.45;
}

.forum-thread-table th {
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #444;
}

.forum-thread-table td {
    padding-top: 12px;
    padding-bottom: 12px;
}

.forum-thread-table tbody tr:hover td {
    background: #050505;
}

.forum-thread-title {
    font-size: 15px;
}

.forum-thread-last {
    width: 190px;
}

/* NEWS is intentionally the strongest/first board visually. */
.forum-category-news {
    margin-top: 0;
    margin-bottom: 20px;
    padding: 24px 22px 22px;
    border: 1px solid #555;
    border-left: 5px solid #fff;
    box-shadow:
        0 0 12px rgba(255,255,255,.08),
        inset 0 0 24px rgba(255,255,255,.015);
}

.forum-category-news .forum-category-head {
    padding-bottom: 14px;
    margin-bottom: 15px;
    border-bottom: 1px solid #666;
}

.forum-category-news .forum-category-title,
.forum-news-rainbow {
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: 2px;
    text-shadow: 0 0 13px rgba(255,255,255,.14);
}

.forum-category-news .forum-category-description {
    color: #aaa;
    font-size: 13px;
}

.forum-user-of-month {
    margin: 0 0 36px;
    padding: 16px 18px 18px;
    border: 1px solid #282828;
    border-left: 3px solid #d4af37;
}

/* =========================================================
   SHOUTBOX v0.9
   ========================================================= */

.shoutbox {
    border-left: 1px solid #2c2c2c;
    padding-left: 18px;
}

.shoutbox[data-locked="1"] .shoutbox-title {
    color: #d4af37;
}

.shoutbox[data-locked="1"] .shoutbox-status {
    color: #b58f2f;
    font-weight: bold;
}

.shoutbox-command-help {
    margin: 8px 0 0;
    color: #555;
    font-size: 10px;
    line-height: 1.4;
}

.shout-mention {
    font-weight: bold;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
}

.shoutbox-compose textarea:disabled {
    color: #555;
    border-color: #332b1a;
    background: #030200;
    cursor: not-allowed;
}

/* =========================================================
   GLOBAL MESSAGE COLORS / ADMIN SHIMMER EFFECTS
   ========================================================= */

.message-effect {
    overflow-wrap: anywhere;
}

.message-effect-diamond,
.message-effect-ruby,
.message-effect-sinister,
.message-effect-rainbow {
    font-weight: inherit;
    background-size: 320% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: kruzifix-message-shimmer 4.2s linear infinite;
}

.message-effect-diamond {
    background-image: linear-gradient(
        90deg,
        #7cdcff,
        #eaffff,
        #45a9ff,
        #ffffff,
        #8ee8ff,
        #7cdcff
    );
}

.message-effect-ruby {
    background-image: linear-gradient(
        90deg,
        #78000d,
        #ff2446,
        #ffffff,
        #d40024,
        #ff8b9f,
        #78000d
    );
}

.message-effect-sinister {
    background-image: linear-gradient(
        90deg,
        #3b0000,
        #a80000,
        #ff3434,
        #777777,
        #cf0000,
        #4a0000
    );
    text-shadow: 0 0 8px rgba(150,0,0,.28);
}

.message-effect-rainbow {
    background-image: linear-gradient(
        90deg,
        #ff3030,
        #ff9a2f,
        #ffe13d,
        #45ff72,
        #42dfff,
        #5274ff,
        #c255ff,
        #ff43c6,
        #ff3030
    );
    animation-duration: 3.2s;
}

.message-effect .shout-mention,
.message-effect-diamond .shout-mention,
.message-effect-ruby .shout-mention,
.message-effect-sinister .shout-mention,
.message-effect-rainbow .shout-mention {
    color: inherit;
    -webkit-text-fill-color: inherit;
}

@keyframes kruzifix-message-shimmer {
    from { background-position: 0% 50%; }
    to { background-position: 320% 50%; }
}

@media (max-width: 1120px) {
    body.forum-view .forum-stage {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 24px;
    }
}

@media (max-width: 820px) {
    body.forum-view .page {
        width: calc(100% - 20px);
    }

    .forum-category-news .forum-category-title,
    .forum-news-rainbow {
        font-size: 21px;
    }
}


/* =====================================================================
   KRUZIFIX v0.10 — ADMIN CUSTOM TEXT + STEAM GROUP
   ===================================================================== */

.admin-custom-text {
    overflow-wrap: anywhere;
}

.admin-custom-shimmer {
    background-image: linear-gradient(
        90deg,
        var(--admin-text-base, #d4af37),
        var(--admin-text-shimmer, #ffffff),
        var(--admin-text-base, #d4af37),
        var(--admin-text-shimmer, #ffffff),
        var(--admin-text-base, #d4af37)
    );
    background-size: 320% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: kruzifix-admin-custom-shimmer 3.6s linear infinite;
}

.admin-custom-shimmer .shout-mention {
    -webkit-text-fill-color: inherit;
}

@keyframes kruzifix-admin-custom-shimmer {
    from { background-position: 0% 50%; }
    to   { background-position: 320% 50%; }
}

.steam-group-link {
    display: inline-block;
    font-weight: 900;
    letter-spacing: .8px;
    background-image: linear-gradient(
        90deg,
        #101a2b,
        #1b4f7a,
        #7f8791,
        #153a5d,
        #a5abb2,
        #101a2b
    );
    background-size: 320% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: kruzifix-steam-group-shimmer 4.8s linear infinite;
    text-shadow: 0 0 7px rgba(55, 112, 155, .16);
}

@keyframes kruzifix-steam-group-shimmer {
    from { background-position: 0% 50%; }
    to   { background-position: 320% 50%; }
}

.steam-group-panel {
    max-width: 860px;
    border: 1px solid #293542;
    padding: 18px;
    background: #010203;
}

.steam-group-panel h1,
.steam-group-heading {
    font-weight: 900;
    letter-spacing: 1px;
    background-image: linear-gradient(
        90deg,
        #122131,
        #1b5687,
        #949ca5,
        #17466f,
        #c0c4c8,
        #122131
    );
    background-size: 320% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: kruzifix-steam-group-shimmer 4.8s linear infinite;
}

.steam-group-url {
    font-weight: bold;
    overflow-wrap: anywhere;
}

.steam-group-instruction {
    max-width: 780px;
    padding: 12px;
    border-left: 3px solid #1b4f7a;
    background: #020406;
    line-height: 1.55;
}

.steam-group-request-box {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px dotted #49525c;
}

.steam-group-request-box input[type="url"],
.steam-group-request-box textarea {
    width: min(680px, 100%);
    box-sizing: border-box;
    padding: 7px;
    background: #000;
    color: #ccc;
    border: 1px solid #59616b;
    font-family: "Times New Roman", Times, serif;
}

.steam-group-request-box textarea {
    min-height: 100px;
    resize: vertical;
}

.steam-group-status-pending {
    color: #d4af37;
    font-weight: bold;
}

.steam-group-request-entry {
    margin: 14px 0;
    padding: 12px 0;
    border-bottom: 1px dotted #444;
}

.steam-group-request-entry .steam-url {
    overflow-wrap: anywhere;
}


/* =====================================================================
   KRUZIFIX v0.16 — DELETED ACCOUNTS
   ===================================================================== */

.deleted-account-name {
    color: #d20000 !important;
    font-weight: 900 !important;
    text-shadow: 0 0 5px rgba(210, 0, 0, .28);
}

.deleted-account-badge {
    color: #ff2b2b;
    font-weight: 900;
    letter-spacing: 1px;
}

.deleted-account-date {
    color: #9b3131;
    font-weight: bold;
}

.account-danger-zone {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid #751515;
    background: #080000;
}

.account-danger-zone h3 {
    color: #ff3030;
}

.account-danger-zone input[type="password"] {
    width: min(320px, 100%);
    box-sizing: border-box;
    background: #000;
    color: #eee;
    border: 1px solid #772222;
    padding: 6px;
}

.account-danger-zone .terminate-warning {
    color: #ff3030;
    font-weight: 900;
}
