.dashboard-container {
    max-width: 1400px;
    width: 92%;
    margin: 45px auto;
    padding: 0 20px;
    transition:
        opacity 0.75s ease,
        transform 0.75s ease,
        filter 0.75s ease;
}

/* ===============================
   HEADER
=============================== */

.dashboard-header {
    margin-bottom: 28px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dashboard-title {
    margin: 0;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(120deg, #00e5ff, #4f46e5, #00e5ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: texto-movendo 4s linear infinite;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
}

.dashboard-title span {
    -webkit-text-fill-color: transparent;
}

@keyframes texto-movendo {
    to {
        background-position: 200% center;
    }
}

.welcome-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #dbeafe;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.85));
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 999px;
    box-shadow:
        0 0 14px rgba(56, 189, 248, 0.12),
        inset 0 0 10px rgba(255, 255, 255, 0.03);
}

.welcome-text::before {
    content: none;
}

.welcome-text span {
    font-weight: 900;
    background: linear-gradient(120deg, #facc15, #fb923c, #facc15);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: welcome-name-glow 3s linear infinite;
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.35);
}

@keyframes welcome-name-glow {
    to {
        background-position: 200% center;
    }
}

.btn-logout {
    padding: 11px 18px;
    border: 1px solid rgba(255, 59, 59, 0.45);
    border-radius: 8px;
    background: rgba(255, 59, 59, 0.18);
    color: #ff4d4d;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}

.btn-logout:hover {
    background: rgba(255, 59, 59, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.28);
}

.header-divider {
    width: 100%;
    height: 2px;
    margin-top: 18px;
    background: linear-gradient(to right, transparent, rgba(0, 229, 255, 0.9), transparent);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.45);
}

/* ===============================
   TABS
=============================== */

.dashboard-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 35px 0 25px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 160px;
    padding: 11px 20px;

    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.09);

    background: rgba(255, 255, 255, 0.035);
    color: #aab2c0;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
    transition: 0.22s ease;

    box-shadow: none;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.065);
    color: #f8fafc;
    border-color: rgba(56, 189, 248, 0.28);
    transform: translateY(-1px);
}

.tab-btn.active {
    background: rgba(37, 99, 235, 0.2);
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.55);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.12);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===============================
   PERFIL
=============================== */

.profile-panel {
    width: 100%;
}

.profile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.profile-top h2 {
    margin: 0;
    font-size: 28px;
}

.profile-top p {
    margin: 6px 0 0;
    color: #9ca3af;
}

.theme-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid rgba(0, 229, 255, 0.28);
    background: rgba(0, 229, 255, 0.08);
    color: #00e5ff;
    font-size: 21px;
    cursor: pointer;
    transition: 0.25s;
}

.theme-icon:hover {
    transform: translateY(-2px) rotate(-6deg);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
}

.profile-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
}

.profile-card {
    background: rgba(12, 14, 28, 0.92);
    border: 1px solid rgba(0, 229, 255, 0.22);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.04);
}

.profile-card h3 {
    margin: 0 0 18px;
    color: #00e5ff;
}

.profile-card label {
    display: block;
    margin-bottom: 7px;
    color: #aab2c0;
    font-size: 13px;
}

.profile-username-field {
    position: relative;
}

.profile-username-field #perfil-usuario {
    padding-right: 38px;
}

.profile-username-measure {
    position: absolute;
    top: 0;
    left: 13px;
    visibility: hidden;
    white-space: pre;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    pointer-events: none;
}

.profile-username-badge {
    position: absolute;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #60a5fa;
    box-shadow: none;
    transition: left 0.18s ease;
    cursor: help;
}

.profile-username-badge::before,
.profile-username-badge::after {
    position: absolute;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.profile-username-badge::before {
    content: attr(data-tooltip);
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(4px);
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: linear-gradient(180deg, rgba(8, 14, 30, 0.98), rgba(10, 18, 36, 0.98));
    box-shadow:
        0 12px 28px rgba(2, 6, 23, 0.34),
        0 0 16px rgba(59, 130, 246, 0.12);
    color: #e0f2fe;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    z-index: 4;
}

.profile-username-badge::after {
    content: "";
    bottom: calc(100% + 6px);
    width: 8px;
    height: 8px;
    transform: translateX(-50%) translateY(4px) rotate(45deg);
    border-right: 1px solid rgba(56, 189, 248, 0.35);
    border-bottom: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(9, 16, 33, 0.98);
    z-index: 3;
}

.profile-username-badge:hover::before,
.profile-username-badge:hover::after,
.profile-username-badge:focus-visible::before,
.profile-username-badge:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.profile-username-badge svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.profile-card input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #070914;
    color: #fff;
    outline: none;
}

.profile-card input:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 8px rgba(0,229,255,0.18);
}

.profile-card select {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #070914;
    color: #fff;
    outline: none;
}

.profile-card select:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 8px rgba(0,229,255,0.18);
}

.profile-card input:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.profile-card input.is-locked {
    border-color: rgba(59, 130, 246, 0.26);
    background: linear-gradient(180deg, rgba(10, 17, 34, 0.98), rgba(9, 14, 28, 0.98));
    color: #dbeafe;
}

.account-info-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.password-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.invite-inline-box {
    margin-top: 8px;
    padding: 16px 16px 14px;
    border-radius: 18px;
    border: 1px solid rgba(56, 189, 248, 0.18);
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 38%),
        linear-gradient(180deg, rgba(7, 15, 36, 0.96), rgba(5, 10, 25, 0.98));
    box-shadow:
        0 22px 40px rgba(2, 6, 23, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.invite-inline-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.invite-inline-head strong {
    color: #f8fbff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.invite-inline-head span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 11px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.22);
    background: rgba(8, 25, 49, 0.72);
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.invite-inline-field {
    display: grid;
    gap: 8px;
}

.invite-inline-box label[for="perfil-convite-link"] {
    display: block;
    color: #dbeafe;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.invite-inline-box #perfil-convite-link {
    padding: 12px 13px;
    border-radius: 12px;
    border-color: rgba(96, 165, 250, 0.18);
    background: linear-gradient(180deg, rgba(5, 11, 24, 0.98), rgba(9, 16, 33, 0.98));
    color: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    font-size: 13px;
}

.invite-inline-actions {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-top: 14px;
}

.invite-inline-clip-button {
    width: 46px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(96, 165, 250, 0.26);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(59, 130, 246, 0.9));
    color: #eff6ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 12px 24px rgba(37, 99, 235, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.invite-inline-clip-button:hover {
    transform: translateY(-1px);
    border-color: rgba(147, 197, 253, 0.38);
    box-shadow:
        0 16px 28px rgba(37, 99, 235, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.invite-inline-clip-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.invite-inline-button {
    position: relative;
    width: 100%;
    min-height: 52px;
    margin: 0;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.25;
    overflow: hidden;
}

.invite-inline-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 58%);
    opacity: 0.6;
    pointer-events: none;
}

.invite-inline-button-copy {
    border: 1px solid rgba(96, 165, 250, 0.2);
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(59, 130, 246, 0.84));
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.invite-inline-button-copy:hover {
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

.invite-inline-button-claim {
    border: 1px solid rgba(250, 204, 21, 0.34);
    background:
        linear-gradient(135deg, rgba(190, 24, 93, 0.98), rgba(225, 29, 72, 0.96));
    box-shadow:
        0 18px 34px rgba(136, 19, 55, 0.28),
        0 0 0 1px rgba(250, 204, 21, 0.1);
}

.invite-inline-button-claim:hover {
    box-shadow:
        0 22px 40px rgba(136, 19, 55, 0.34),
        0 0 0 1px rgba(253, 224, 71, 0.12);
}

.invite-inline-button-secondary {
    border-color: rgba(96, 165, 250, 0.14) !important;
    background: rgba(14, 25, 48, 0.96) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

.invite-inline-button-secondary:hover {
    box-shadow:
        0 12px 24px rgba(15, 23, 42, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.invite-inline-button-primary {
    border-color: rgba(250, 204, 21, 0.36) !important;
    background:
        linear-gradient(135deg, rgba(190, 24, 93, 0.98), rgba(225, 29, 72, 0.96)) !important;
    box-shadow:
        0 18px 32px rgba(136, 19, 55, 0.28),
        0 0 0 1px rgba(250, 204, 21, 0.12) !important;
}

.invite-inline-button-primary:hover {
    box-shadow:
        0 22px 38px rgba(136, 19, 55, 0.34),
        0 0 0 1px rgba(253, 224, 71, 0.14);
}

.invite-inline-button-claim-live {
    overflow: visible;
}

.invite-inline-button-claim-live::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 22px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.26), transparent 68%);
    z-index: -1;
    animation: inviteClaimPulse 2.4s ease-in-out infinite;
}

.invite-claim-button-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.invite-claim-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(250, 204, 21, 0.94), rgba(234, 179, 8, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 10px 18px rgba(161, 98, 7, 0.28);
    flex-shrink: 0;
}

.invite-claim-icon svg {
    width: 20px;
    height: 20px;
    fill: #7f1d1d;
}

.invite-claim-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-align: left;
}

.invite-claim-copy strong {
    color: #f8fbff;
    font-size: 15px;
    line-height: 1.1;
}

.invite-claim-copy small {
    color: rgba(239, 246, 255, 0.9);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

.invite-inline-button:disabled {
    opacity: 0.62;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.invite-inline-summary {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(56, 189, 248, 0.14);
}

.invite-inline-text {
    margin: 0;
    color: #a5c8f6;
    font-size: 12px;
    line-height: 1.6;
}

.invite-inline-text-primary {
    color: #dbeafe;
    font-weight: 600;
    max-width: 28ch;
}

.invite-inline-gifts {
    display: grid;
    gap: 10px;
}

.invite-inline-gifts:empty {
    display: none;
}

.invite-gift-card {
    display: grid;
    gap: 4px;
    padding: 12px 13px 12px 15px;
    border-radius: 14px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    background: linear-gradient(180deg, rgba(8, 17, 36, 0.9), rgba(9, 18, 37, 0.72));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 10px 20px rgba(2, 6, 23, 0.16);
    position: relative;
    overflow: hidden;
}

.invite-gift-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.92), rgba(59, 130, 246, 0.86));
}

.invite-gift-card strong {
    color: #f8fbff;
    font-size: 13px;
    line-height: 1.35;
    word-break: break-word;
}

.invite-gift-card-label {
    color: #67e8f9;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-left: 8px;
}

.invite-gift-card-meta {
    color: #9fb9e9;
    font-size: 11px;
    line-height: 1.45;
    padding-left: 8px;
}

.invite-gift-card strong {
    padding-left: 8px;
}

.invite-gift-card-empty {
    border-style: dashed;
    background: rgba(5, 12, 27, 0.5);
}

.invite-gift-card-empty strong {
    color: #dbeafe;
}

.invite-claim-swal-popup {
    width: min(92vw, 32rem) !important;
    border-radius: 18px !important;
}

.invite-claim-modal {
    display: grid;
    gap: 16px;
    padding-top: 4px;
    text-align: left;
}

.invite-claim-modal-card {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(96, 165, 250, 0.18);
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(20, 36, 66, 0.94), rgba(15, 23, 42, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 28px rgba(2, 6, 23, 0.18);
}

.invite-claim-modal-eyebrow {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 700;
}

.invite-claim-modal-total {
    color: #60a5fa;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.invite-claim-modal-field {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: center;
}

.invite-claim-modal-field label {
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 700;
}

.invite-claim-modal-select.swal2-input {
    margin: 0 !important;
    height: 46px;
}

.invite-claim-swal-actions {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px !important;
    padding-top: 2px;
}

.invite-claim-swal-confirm.swal2-styled,
.invite-claim-swal-cancel.swal2-styled {
    width: 100%;
    min-width: 0 !important;
    height: 50px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease !important;
}

.invite-claim-swal-confirm.swal2-styled {
    background: linear-gradient(135deg, rgba(190, 24, 93, 0.98), rgba(225, 29, 72, 0.96)) !important;
    border-color: rgba(250, 204, 21, 0.34) !important;
    box-shadow:
        0 14px 28px rgba(136, 19, 55, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.invite-claim-swal-cancel.swal2-styled {
    background: linear-gradient(180deg, rgba(18, 28, 46, 0.96), rgba(11, 18, 31, 0.98)) !important;
    border-color: rgba(71, 85, 105, 0.42) !important;
    color: #dbe7f5 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.invite-claim-swal-confirm.swal2-styled:hover,
.invite-claim-swal-cancel.swal2-styled:hover {
    transform: translateY(-1px);
}

.invite-claim-swal-confirm.swal2-styled:hover {
    box-shadow:
        0 18px 32px rgba(136, 19, 55, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
}

.invite-claim-swal-cancel.swal2-styled:hover {
    border-color: rgba(100, 116, 139, 0.58) !important;
    box-shadow:
        0 12px 22px rgba(2, 6, 23, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.invite-claim-flyby-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 30;
    opacity: 0;
    transition: opacity 0.35s ease;
    contain: layout style paint;
}

.invite-claim-flyby-layer.is-active {
    opacity: 1;
}

.invite-claim-flyby-item {
    position: absolute;
    left: -12vw;
    width: 72px;
    height: 72px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7f1d1d;
    background: transparent;
    border: none;
    box-shadow: 0 10px 20px rgba(161, 98, 7, 0.14);
    opacity: 0;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.invite-claim-flyby-item::after {
    content: none;
}

.invite-claim-flyby-item svg {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 6px 12px rgba(161, 98, 7, 0.16));
    will-change: transform, opacity;
    transform: translateZ(0);
}

.invite-claim-flyby-item .gift-box {
    fill: #facc15;
}

.invite-claim-flyby-item .gift-ribbon {
    fill: #be123c;
}

.invite-claim-flyby-item .gift-bow {
    fill: #f59e0b;
}

.invite-claim-flyby-layer.is-active .invite-claim-flyby-item {
    animation: inviteGiftFlyby 7.2s linear infinite;
}

.invite-claim-flyby-item.item-a {
    top: 18vh;
    animation-delay: 0s !important;
}

.invite-claim-flyby-item.item-b {
    top: 42vh;
    animation-delay: 2.1s !important;
}

.invite-claim-flyby-item.item-c {
    top: 68vh;
    animation-delay: 4.2s !important;
}

@keyframes inviteGiftFlyby {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) rotate(-10deg) scale(0.9);
    }
    8% {
        opacity: 0.95;
    }
    60% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        transform: translate3d(128vw, -2vh, 0) rotate(8deg) scale(1.02);
    }
}

@keyframes inviteClaimPulse {
    0%, 100% {
        opacity: 0.38;
        transform: scale(0.98);
    }
    50% {
        opacity: 0.72;
        transform: scale(1.04);
    }
}

.profile-verification-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(59, 130, 246, 0.28);
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(7, 16, 36, 0.96), rgba(8, 13, 31, 0.98));
    box-shadow:
        0 18px 36px rgba(2, 6, 23, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.profile-verification-card.is-verified {
    border-color: rgba(59, 130, 246, 0.44);
    box-shadow:
        0 20px 40px rgba(2, 6, 23, 0.34),
        0 0 24px rgba(59, 130, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.profile-verification-card.is-unverified {
    grid-template-columns: 1fr auto;
}

.profile-verification-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.38);
    background: radial-gradient(circle at 32% 28%, rgba(96, 165, 250, 0.34), rgba(29, 78, 216, 0.88));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 22px rgba(29, 78, 216, 0.18);
}

.profile-verification-icon svg {
    width: 26px;
    height: 26px;
    fill: #60a5fa;
}

.profile-verification-copy {
    min-width: 0;
}

.profile-verification-kicker {
    display: inline-block;
    margin-bottom: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.62);
    color: #bfdbfe;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.profile-verification-copy h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #f8fafc;
}

.profile-verification-copy p {
    margin: 0;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.45;
}

.profile-youtube-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(239, 68, 68, 0.28);
    background: linear-gradient(135deg, rgba(69, 10, 10, 0.9), rgba(127, 29, 29, 0.58));
    color: #fee2e2;
    box-shadow: 0 10px 20px rgba(69, 10, 10, 0.22);
    width: fit-content;
}

.profile-youtube-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.22);
    border: 1px solid rgba(248, 113, 113, 0.32);
}

.profile-youtube-badge-icon svg {
    width: 15px;
    height: 15px;
    fill: #fecaca;
}

.profile-youtube-badge-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-verification-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.6);
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-verification-card.is-verified .profile-verification-kicker,
.profile-verification-card.is-verified .profile-verification-badge {
    border-color: rgba(59, 130, 246, 0.42);
    background: rgba(37, 99, 235, 0.16);
    color: #dbeafe;
}

.profile-verification-card.is-unverified .profile-verification-badge {
    letter-spacing: 0;
    text-transform: none;
}

.guildmark-card {
    margin-top: 24px;
}

.guildmark-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.guildmark-card-header h3 {
    margin-bottom: 8px;
}

.guildmark-card-header p {
    margin: 0;
    color: #9fb3c8;
    font-size: 13px;
    line-height: 1.6;
}

.guildmark-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.28);
    background: rgba(37, 99, 235, 0.15);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
}

.guildmark-badge.is-ready {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.15);
    color: #bbf7d0;
}

.guildmark-badge.is-empty {
    border-color: rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.12);
    color: #fde68a;
}

.guildmark-empty-state {
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px dashed rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.45);
    color: #9fb3c8;
    line-height: 1.6;
}

.guildmark-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.guildmark-upload-grid {
    display: grid;
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: 16px;
    align-items: stretch;
}

.guildmark-file-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guildmark-file-input input[type="file"] {
    display: none;
}

.guildmark-file-input span {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px dashed rgba(56, 189, 248, 0.35);
    background: linear-gradient(180deg, rgba(6, 12, 28, 0.95), rgba(8, 16, 38, 0.95));
    color: #c7d2fe;
    cursor: pointer;
}

.guildmark-target-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(56, 189, 248, 0.18);
    background: rgba(7, 12, 24, 0.86);
}

.guildmark-target-box span {
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.guildmark-target-box strong {
    color: #fff;
    font-size: 18px;
}

.guildmark-target-box small {
    color: #9fb3c8;
    line-height: 1.5;
}

.guildmark-target-box a {
    color: #38bdf8;
    font-weight: 700;
    text-decoration: none;
}

.guildmark-target-box a:hover {
    text-decoration: underline;
}

.btn-save-username {
    width: 100%;
    margin-top: 2px;
    margin-bottom: 8px;
}

.password-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.btn-save-password {
    margin-top: 20px;
    width: 220px;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    background: rgba(37, 99, 235, 0.9);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}

.btn-save-password:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.25);
}

/* ===============================
   CONTAS DO JOGO
=============================== */

.player-accounts-panel {
    background: rgba(10, 12, 24, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.05);
    margin-bottom: 28px;
}

.accounts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.accounts-header h2 {
    margin: 0;
    color: #4ea1ff;
}

.accounts-header p {
    margin: 6px 0 0;
    color: #aab2c0;
}

.btn-create-account {
    background: rgba(37, 99, 235, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.55);
    color: #fff;
    padding: 11px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.25s;
}

.btn-create-account:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.25);
}

.accounts-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding: 13px 16px;
    border-radius: 6px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #fff;
}

.accounts-table-wrapper {
    overflow-x: auto;
}

.accounts-table {
    width: 100%;
    border-collapse: collapse;
}

.accounts-table th {
    text-align: left;
    padding: 14px 12px;
    color: #00e5ff;
    font-size: 13px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.accounts-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.accounts-table tr:hover {
    background: rgba(0, 229, 255, 0.05);
}

.accounts-table strong {
    color: #4ea1ff;
}

.account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-account-action {
    padding: 8px 11px;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    background: rgba(37, 99, 235, 0.18);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-account-action .icon-emoji {
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    font-size: 13px;
    line-height: 1;
    vertical-align: -1px;
    margin-right: 4px;
}

.btn-account-action:hover {
    background: rgba(37, 99, 235, 0.28);
    color: #fff;
    transform: translateY(-1px);
}

.btn-account-action.danger {
    border-color: rgba(249, 115, 22, 0.45);
    background: rgba(249, 115, 22, 0.16);
    color: #fed7aa;
}

.btn-account-action.danger:hover {
    background: rgba(249, 115, 22, 0.26);
    color: #fff;
}

/* ===============================
   SUPORTE
=============================== */

.support-panel {
    background: rgba(12, 14, 28, 0.92);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.04);
}

.support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.support-panel h2 {
    margin: 0 0 8px;
    color: #22d3ee;
}

.support-panel p {
    margin: 0;
    color: #aab2c0;
}

.btn-open-ticket {
    padding: 12px 18px;
    border-radius: 6px;
    border: 1px solid rgba(34, 211, 238, 0.38);
    font-weight: 700;
    cursor: pointer;
    background: rgba(14, 165, 233, 0.75);
    color: #fff;
    transition: 0.25s;
}

.btn-open-ticket:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.22);
}

.ticket-list {
    margin-top: 20px;
    padding: 16px;
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.empty-state {
    color: #aab2c0;
    font-weight: 600;
}

.ticket-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 16px 18px;
    border-radius: 10px;

    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(8, 12, 24, 0.96));

    border: 1px solid rgba(56, 189, 248, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);

    cursor: pointer;
    transition: 0.22s ease;
}

.ticket-card:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.22),
        0 0 14px rgba(56, 189, 248, 0.08);
}

.ticket-main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.ticket-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.24);

    font-size: 18px;
    flex-shrink: 0;
}

.ticket-info {
    min-width: 0;
}

.ticket-title {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 15px;
    font-weight: 800;
}

.ticket-id {
    color: #38bdf8;
}

.ticket-assunto {
    color: #f8fafc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticket-meta {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 6px;

    color: #94a3b8;
    font-size: 12px;
}

.ticket-category {
    color: #cbd5e1;
    font-weight: 700;
}

.ticket-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.8);
}

.ticket-actions-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ticket-status {
    min-width: 92px;
    text-align: center;

    padding: 7px 10px;
    border-radius: 6px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.4px;
}

.ticket-status.status-aberto {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.ticket-status.status-nao-classificado {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.ticket-status.status-respondido {
    color: #facc15;
    background: rgba(250, 204, 21, 0.12);
    border: 1px solid rgba(250, 204, 21, 0.25);
}

.ticket-status.status-aguardando-resposta {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.25);
}

.ticket-status.status-finalizado {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.ticket-open-label {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    transition: 0.2s;
}

.ticket-card:hover .ticket-open-label {
    color: #38bdf8;
    transform: translateX(2px);
}

.ticket-empty {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    color: #aab2c0;
    font-weight: 600;
}

/* ===============================
   MODAL TICKET
=============================== */

.ticket-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ticket-input,
.ticket-textarea {
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    background: rgba(15, 23, 42, 0.7);
    color: #fff;
    outline: none;
    font-size: 14px;
}

.ticket-input {
    height: 46px;
    padding: 0 13px;
}

.ticket-textarea {
    min-height: 150px;
    padding: 14px;
    resize: vertical;
}

.ticket-input:focus,
.ticket-textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.22);
}

.ticket-input option {
    background: #0a0a14;
    color: #fff;
}

.ticket-modal {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.ticket-modal-divider {
    width: 100%;
    height: 1px;
    margin: -4px 0 6px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(56, 189, 248, 0.65),
        transparent
    );
}

.ticket-file-input {
    display: none;
}

.ticket-file-label {
    align-self: flex-start;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(56, 189, 248, 0.08);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.ticket-file-label:hover {
    background: rgba(56, 189, 248, 0.16);
    color: #fff;
}

.ticket-files-preview {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #cbd5f5;
    font-size: 13px;
}

.ticket-files-preview ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.ticket-files-preview li {
    margin-bottom: 4px;
}

.ticket-modal-popup {
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 14px;
    overflow: visible !important;
}

.swal2-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.ticket-modal-popup .swal2-title {
    font-weight: 900;
    color: #e0f2fe;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.45);
}

.guildmark-modal-popup {
    width: 680px !important;
    max-width: 94vw !important;
    border: 1px solid rgba(96, 165, 250, 0.26);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.58);
}

.guildmark-modal-popup .swal2-title {
    color: #eff6ff;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.guildmark-modal {
    text-align: left;
}

.guildmark-modal-intro {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(15, 23, 42, 0.88));
    border: 1px solid rgba(96, 165, 250, 0.18);
}

.guildmark-modal-account {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.18);
    border: 1px solid rgba(125, 211, 252, 0.22);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.guildmark-modal-intro p {
    margin: 0;
    color: #bfdbfe;
    line-height: 1.6;
    font-size: 13px;
}

.guildmark-modal-label {
    display: block;
    margin: 0 0 8px;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
}

.guildmark-modal-select {
    width: 100%;
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: rgba(7, 9, 20, 0.96);
    color: #fff;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.guildmark-modal-select:focus {
    border-color: rgba(56, 189, 248, 0.72);
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.14);
}

.guildmark-modal-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.guildmark-modal-preview-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.guildmark-modal-meta-card {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(11, 17, 32, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.guildmark-modal-meta-card span {
    display: block;
    margin-bottom: 8px;
    color: #7dd3fc;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.guildmark-modal-meta-card strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
}

.guildmark-modal-meta-card small {
    display: block;
    margin-top: 6px;
    color: #a5b4cc;
    font-size: 12px;
    line-height: 1.55;
}

.guildmark-modal-preview-box {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(11, 17, 32, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.guildmark-modal-preview-box span {
    display: block;
    margin-bottom: 8px;
    color: #7dd3fc;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.guildmark-modal-preview-box strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
}

.guildmark-modal-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.18);
    background:
        radial-gradient(circle at top, rgba(59, 130, 246, 0.18), transparent 58%),
        linear-gradient(180deg, rgba(4, 8, 20, 0.98), rgba(9, 14, 28, 0.95));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
    color: #dbeafe;
    font-size: 29px;
    font-weight: 900;
    letter-spacing: 0.12em;
    font-variant-numeric: tabular-nums;
    font-family: "Consolas", "Courier New", monospace;
    text-shadow: 0 0 18px rgba(125, 211, 252, 0.2);
}

.guildmark-modal-timer.is-cooling {
    color: #f8fafc;
    border-color: rgba(56, 189, 248, 0.28);
}

.guildmark-modal-timer.is-ready {
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.3);
    text-shadow: 0 0 18px rgba(34, 197, 94, 0.18);
}

.guildmark-modal-preview-box small {
    display: block;
    margin-top: 6px;
    color: #a5b4cc;
    font-size: 12px;
    line-height: 1.55;
}

.guildmark-modal-preview-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 132px;
    margin-top: 2px;
    border-radius: 12px;
    border: 1px dashed rgba(56, 189, 248, 0.24);
    background:
        linear-gradient(180deg, rgba(7, 11, 23, 0.98), rgba(10, 14, 28, 0.95)),
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%),
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: auto, 18px 18px, 18px 18px;
    background-position: 0 0, 0 0, 9px 9px;
}

.guildmark-modal-preview-stage img {
    width: 256px;
    height: 192px;
    image-rendering: pixelated;
    border-radius: 8px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    background: rgba(255,255,255,0.03);
    object-fit: fill;
}

.guildmark-modal-preview-empty {
    color: #94a3b8;
    font-size: 12px;
    text-align: center;
    padding: 0 18px;
    line-height: 1.6;
}

.guildmark-modal-file {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px dashed rgba(56, 189, 248, 0.35);
    background: linear-gradient(180deg, rgba(10, 14, 28, 0.95), rgba(7, 11, 23, 0.98));
    cursor: pointer;
    box-sizing: border-box;
}

.guildmark-modal-file input {
    display: none;
}

.guildmark-modal-file-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 144px;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.guildmark-modal-file-name {
    color: #dbeafe;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}

.guildmark-modal-tip {
    color: #93c5fd;
    font-size: 12px;
    line-height: 1.55;
}

/* ===============================
   VISUALIZAR TICKET
=============================== */

.ticket-view-popup {
    width: 1250px !important;
    max-width: 96vw !important;
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 16px;
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.08);
    overflow: visible !important;
}

.ticket-view {
    width: 100%;
}

.ticket-view-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 18px;
    border-radius: 12px;

    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.18),
        rgba(15, 23, 42, 0.75)
    );

    border: 1px solid rgba(56, 189, 248, 0.18);
}

.ticket-view-label {
    display: block;
    margin-bottom: 3px;

    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.ticket-view-header h3 {
    margin: 0;
    font-size: 24px;
    color: #38bdf8;
}

.ticket-view-badge {
    padding: 7px 12px;
    border-radius: 8px;

    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);

    color: #22c55e;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ticket-view-divider {
    height: 1px;
    margin: 18px 0;

    background: linear-gradient(
        to right,
        transparent,
        rgba(56, 189, 248, 0.55),
        transparent
    );
}

.ticket-chat-area {
    max-height: 430px;
    overflow-y: auto;

    padding: 18px;
    border-radius: 14px;

    background: rgba(7, 9, 20, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.ticket-message {
    position: relative;
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.ticket-message-break {
    margin-top: 16px;
    padding-top: 18px;
}

.ticket-message-break::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    opacity: 0.9;
}

.ticket-message.admin {
    flex-direction: row;
}

.ticket-message-break.admin::before {
    background: linear-gradient(
        90deg,
        rgba(34, 197, 94, 0),
        rgba(74, 222, 128, 0.42),
        rgba(34, 197, 94, 0)
    );
}

.ticket-message.player {
    flex-direction: row-reverse;
}

.ticket-message-break.player::before {
    background: linear-gradient(
        90deg,
        rgba(59, 130, 246, 0),
        rgba(125, 211, 252, 0.42),
        rgba(59, 130, 246, 0)
    );
}

.ticket-message-avatar {
    width: 42px;
    height: 38px;

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

    border-radius: 10px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);

    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.ticket-message-avatar-icon {
    width: 20px;
    height: 20px;
    fill: #dbeafe;
}

.ticket-message.admin .ticket-message-avatar {
    background: linear-gradient(180deg, rgba(21, 128, 61, 0.18), rgba(7, 33, 22, 0.92));
    border-color: rgba(34, 197, 94, 0.24);
}

.ticket-message.admin .ticket-message-avatar-icon {
    fill: #86efac;
}

.ticket-message.player .ticket-message-avatar {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.95));
    border-color: rgba(96, 165, 250, 0.24);
}

.ticket-message.player .ticket-message-avatar-icon {
    fill: #93c5fd;
}

.ticket-message-content {
    max-width: 72%;
}

.ticket-message-top {
    display: flex;
    gap: 10px;
    align-items: center;

    margin-bottom: 6px;
    font-size: 12px;
}

.ticket-message.player .ticket-message-top {
    justify-content: flex-end;
}

.ticket-message-top strong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e5e7eb;
}

.ticket-message-verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.34);
    background: rgba(37, 99, 235, 0.14);
    color: #dbeafe;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.14);
    cursor: help;
}

.ticket-message-verified-badge svg {
    width: 11px;
    height: 11px;
    fill: currentColor;
}

.ticket-message-top span {
    color: #64748b;
}

.ticket-message-bubble {
    position: relative;
    padding: 13px 15px;
    border-radius: 12px;
    color: #e5e7eb;
    line-height: 1.55;
    text-align: left;
    overflow: hidden;
}

.ticket-message-bubble::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
}

.ticket-message.admin .ticket-message-bubble {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.24);
}

.ticket-message.admin .ticket-message-bubble::before {
    left: 8px;
    background: linear-gradient(180deg, rgba(74, 222, 128, 0.95), rgba(34, 197, 94, 0.45));
}

.ticket-message.player .ticket-message-bubble {
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(59, 130, 246, 0.28);
}

.ticket-message.player .ticket-message-bubble::before {
    right: 8px;
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.95), rgba(59, 130, 246, 0.45));
}

.ticket-message-bubble a {
    color: #7dd3fc;
    text-decoration: underline;
}

.ticket-message-bubble p,
.ticket-message-bubble ul,
.ticket-message-bubble ol,
.ticket-message-bubble blockquote,
.ticket-message-bubble pre,
.ticket-message-bubble h1,
.ticket-message-bubble h2,
.ticket-message-bubble h3 {
    margin: 0 0 10px;
}

.ticket-message-bubble p:last-child,
.ticket-message-bubble ul:last-child,
.ticket-message-bubble ol:last-child,
.ticket-message-bubble blockquote:last-child,
.ticket-message-bubble pre:last-child,
.ticket-message-bubble h1:last-child,
.ticket-message-bubble h2:last-child,
.ticket-message-bubble h3:last-child {
    margin-bottom: 0;
}

.ticket-message-bubble ul,
.ticket-message-bubble ol {
    padding-left: 22px;
}

.ticket-message-bubble blockquote {
    padding-left: 12px;
    border-left: 3px solid rgba(125, 211, 252, 0.45);
    color: #d9e7f6;
}

.ticket-message-bubble pre {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(2, 6, 23, 0.74);
    border: 1px solid rgba(125, 211, 252, 0.16);
    overflow-x: auto;
}

.ticket-message-bubble .ql-align-center {
    text-align: center;
}

.ticket-message-bubble .ql-align-right {
    text-align: right;
}

.ticket-message-bubble .ql-align-justify {
    text-align: justify;
}

.ticket-reply-area {
    margin-top: 18px;
    text-align: left;
}

.ticket-reply-area label {
    display: block;
    margin-bottom: 8px;

    color: #cbd5e1;
    font-size: 13px;
    font-weight: 800;
}

.ticket-reply-textarea {
    width: 100%;
    min-height: 120px;

    padding: 14px;
    box-sizing: border-box;

    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.25);

    background: rgba(7, 9, 20, 0.95);
    color: #fff;

    resize: vertical;
    outline: none;
}

.ticket-reply-textarea:focus {
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.12);
}

.ticket-reply-actions {
    margin-top: 12px;
}

.ticket-rich-editor {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.25);
    background: rgba(7, 9, 20, 0.95);
}

.ticket-rich-editor .ql-toolbar.ql-snow,
.ticket-rich-editor .ql-container.ql-snow {
    border: 0;
}

.ticket-rich-editor .ql-toolbar.ql-snow {
    border-bottom: 1px solid rgba(56, 189, 248, 0.18);
    background: rgba(15, 23, 42, 0.92);
}

.ticket-rich-editor .ql-container.ql-snow {
    min-height: 150px;
}

.ticket-rich-editor .ql-editor {
    min-height: 120px;
    color: #f8fbff;
    background: rgba(7, 9, 20, 0.95);
}

.ticket-rich-editor .ql-editor.ql-blank::before {
    color: #7c8ca5;
    font-style: normal;
}

.ticket-rich-editor .ql-toolbar .ql-stroke {
    stroke: #e8eef7;
}

.ticket-rich-editor .ql-toolbar .ql-fill {
    fill: #e8eef7;
}

.ticket-rich-editor .ql-toolbar button:hover .ql-stroke,
.ticket-rich-editor .ql-toolbar button.ql-active .ql-stroke,
.ticket-rich-editor .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ticket-rich-editor .ql-toolbar .ql-picker-label.ql-active .ql-stroke {
    stroke: #67d0ff;
}

.ticket-rich-editor .ql-toolbar button:hover .ql-fill,
.ticket-rich-editor .ql-toolbar button.ql-active .ql-fill,
.ticket-rich-editor .ql-toolbar .ql-picker-label:hover .ql-fill,
.ticket-rich-editor .ql-toolbar .ql-picker-label.ql-active .ql-fill {
    fill: #67d0ff;
}

.ticket-rich-editor .ql-toolbar .ql-picker,
.ticket-rich-editor .ql-toolbar button:hover,
.ticket-rich-editor .ql-toolbar button.ql-active {
    color: #67d0ff;
}

.ticket-rich-editor .ql-toolbar .ql-picker-label {
    color: #f8fbff;
    border: 1px solid transparent;
    border-radius: 8px;
}

.ticket-rich-editor .ql-toolbar .ql-picker-label:hover,
.ticket-rich-editor .ql-toolbar .ql-picker-label.ql-active {
    color: #67d0ff;
    border-color: rgba(103, 208, 255, 0.28);
}

.ticket-rich-editor .ql-toolbar .ql-picker-options {
    background: rgba(10, 14, 24, 0.98);
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.ticket-rich-editor .ql-toolbar .ql-picker-item {
    color: #e7eef9;
}

.ticket-rich-editor .ql-toolbar .ql-picker-item:hover,
.ticket-rich-editor .ql-toolbar .ql-picker-item.ql-selected {
    color: #67d0ff;
    background: rgba(103, 208, 255, 0.08);
}

.ticket-attachment-image img {
    max-width: 260px;
    max-height: 200px;
    border-radius: 10px;
    border: 1px solid rgba(56, 189, 248, 0.25);
    cursor: zoom-in;
    transition: 0.2s;
}

.ticket-attachment-image img:hover {
    transform: scale(1.03);
    border-color: rgba(56, 189, 248, 0.5);
}

/* ===============================
   OVERLAY DE IMAGEM
=============================== */

.image-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
}

.image-overlay-img {
    position: relative;
    max-width: 90%;
    max-height: 90%;

    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.3);

    box-shadow: 0 0 40px rgba(56, 189, 248, 0.2);

    animation: zoomIn 0.2s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.image-overlay-close {
    position: fixed;
    top: 22px;
    right: 28px;
    z-index: 100000;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;

    background: rgba(15, 23, 42, 0.9);
    color: #fff;

    font-size: 20px;
    font-weight: 900;

    cursor: pointer;
}

.image-overlay-close:hover {
    background: rgba(239, 68, 68, 0.85);
}

/* ===============================
   PREVIEW DE ANEXOS
=============================== */

.ticket-preview-header {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.ticket-preview-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ticket-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 6px 8px;
    border-radius: 6px;

    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);

    font-size: 12px;
}

.ticket-preview-item button {
    background: transparent;
    border: none;
    color: #f87171;
    cursor: pointer;
    font-weight: 900;
}

/* ===============================
   BADGE NOVO TICKET
=============================== */

.ticket-badge-new {
    margin-left: 8px;
    padding: 3px 7px;

    border-radius: 5px;

    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.45);

    color: #fecaca;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;

    animation: ticketPulse 1.2s infinite;
}

.ticket-new {
    border-color: rgba(239, 68, 68, 0.45) !important;
    box-shadow:
        0 0 18px rgba(239, 68, 68, 0.12),
        inset 0 0 0 1px rgba(239, 68, 68, 0.08);
}

@keyframes ticketPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.65;
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===============================
   VOTA??O - PAINEL JOGADOR
=============================== */

.vote-panel {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.16), transparent 28%),
        radial-gradient(circle at 100% 10%, rgba(56, 189, 248, 0.14), transparent 26%),
        radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.09), transparent 28%),
        linear-gradient(145deg, rgba(10, 12, 30, 0.98), rgba(6, 10, 24, 0.98) 46%, rgba(6, 14, 20, 0.98));

    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 20px;
    padding: 22px;

    box-shadow:
        0 24px 48px rgba(2, 6, 23, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.vote-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.03),
            transparent
        );

    transform: translateX(-100%);
    animation: votePanelShine 6s ease-in-out infinite;
}

@keyframes votePanelShine {
    0%, 65% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.vote-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.vote-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    background: rgba(88, 28, 135, 0.22);
    color: #e9d5ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vote-header h2 {
    margin: 0 0 8px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(120deg, #c084fc, #60a5fa, #34d399);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: voteTitleGlow 4s linear infinite;
}

@keyframes voteTitleGlow {
    to {
        background-position: 200% center;
    }
}

.vote-header p {
    margin: 0;
    color: #cdd6e7;
    font-size: 14px;
    line-height: 1.5;
}

#btn-atualizar-votacao {
    min-width: 120px;
    min-height: 46px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(99, 102, 241, 0.9));
    border: 1px solid rgba(125, 211, 252, 0.35);
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    box-shadow:
        0 12px 24px rgba(56, 189, 248, 0.18),
        inset 0 0 0 1px rgba(255,255,255,0.04);
}

#btn-atualizar-votacao:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 0 24px rgba(56, 189, 248, 0.42),
        0 0 14px rgba(99, 102, 241, 0.24);
}

.vote-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.vote-sections {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
}

.vote-section {
    min-width: 0;
    border: 1px solid rgba(125, 211, 252, 0.12);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(8, 14, 30, 0.8), rgba(7, 12, 24, 0.86));
    padding: 14px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.vote-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.vote-section-header h3 {
    margin: 0;
    font-size: 18px;
    color: #e2e8f0;
    letter-spacing: -0.02em;
}

.vote-section-header span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.92);
}

.vote-section[data-status="ativas"] .vote-section-header h3 {
    color: #86efac;
}

.vote-section[data-status="ativas"] .vote-section-header span {
    border-color: rgba(34, 197, 94, 0.38);
    color: #bbf7d0;
    background: rgba(20, 83, 45, 0.28);
}

.vote-section[data-status="finalizadas"] .vote-section-header h3 {
    color: #fda4af;
}

.vote-section[data-status="finalizadas"] .vote-section-header span {
    border-color: rgba(239, 68, 68, 0.38);
    color: #fecaca;
    background: rgba(127, 29, 29, 0.24);
}

.vote-section-list {
    display: grid;
    gap: 12px;
}

.vote-card,
.vote-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(125, 211, 252, 0.15);
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.06), transparent 28%),
        linear-gradient(145deg, rgba(13, 20, 36, 0.96), rgba(8, 12, 24, 0.98));
    padding: 14px;
    box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.22),
        inset 0 0 0 1px rgba(255,255,255,0.025);
    transition: 0.25s ease;
}

.vote-card:hover,
.vote-box:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.28);
    box-shadow:
        0 22px 34px rgba(0, 0, 0, 0.28),
        0 0 18px rgba(56, 189, 248, 0.08),
        0 0 14px rgba(168, 85, 247, 0.08);
}

.vote-card::before,
.vote-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(168, 85, 247, 0.12), transparent 55%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.vote-card-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.vote-card-head h3,
.vote-box h3 {
    margin: 0 0 6px;
    color: #f8fafc;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.12);
}

.vote-card-head p,
.vote-box p {
    margin: 0;
    color: #b8c2d8;
    font-size: 13px;
    line-height: 1.5;
}

.vote-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 82px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.vote-status.ativa {
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.48);
    background:
        radial-gradient(circle at top, rgba(34, 197, 94, 0.22), rgba(22, 101, 52, 0.18));

    box-shadow:
        0 0 14px rgba(34, 197, 94, 0.18),
        inset 0 0 0 1px rgba(255,255,255,0.035);
}

.vote-status.encerrada {
    color: #fecaca;
    border: 1px solid rgba(239, 68, 68, 0.5);
    background: rgba(127, 29, 29, 0.28);
    box-shadow: 0 0 14px rgba(239, 68, 68, 0.12);
}

.vote-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #dbe4f0;
}

.vote-meta span,
.vote-attachment,
.vote-sem-anexo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    background: rgba(255,255,255,0.03);
}

.vote-meta strong,
.vote-meta em,
.vote-attachment {
    font-style: normal;
    color: #e2e8f0;
    font-weight: 900;
}

.vote-meta em {
    color: #facc15;
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.24);
}

.vote-attachment {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 900;
    transition: 0.2s;
}

.vote-attachment span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.18);
    color: #dbeafe;
    font-size: 11px;
    line-height: 1;
}

.vote-attachment:hover {
    color: #38bdf8;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.vote-sem-anexo {
    color: #64748b;
}

.vote-options-list {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.vote-option {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(125, 211, 252, 0.12);
    background:
        linear-gradient(145deg, rgba(14, 22, 38, 0.84), rgba(8, 12, 22, 0.92));
    color: #e2e8f0;
    text-align: left;
    cursor: pointer;
    transition: 0.22s ease;
}

.vote-option:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.3);
    background:
        linear-gradient(145deg, rgba(14, 165, 233, 0.12), rgba(15, 23, 42, 0.82));
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.22),
        0 0 16px rgba(56, 189, 248, 0.10);
}

.vote-option:disabled {
    opacity: 0.86;
    cursor: not-allowed;
}

.vote-option-main {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;

    font-size: 13px;
}

.vote-option-main strong {
    color: #f8fafc;
    font-weight: 900;
    font-size: 14px;
}

.vote-option-main span {
    color: #a8b7d1;
    font-size: 12px;
    font-weight: 800;
}

.vote-progress {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.12);
    overflow: hidden;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.45);
}

.vote-progress i {
    display: block;

    height: 100%;
    width: 0;

    border-radius: 999px;

    background: linear-gradient(90deg, #38bdf8, #60a5fa, #a855f7);
    background-size: 200% auto;

    box-shadow:
        0 0 10px rgba(56, 189, 248, 0.55),
        0 0 18px rgba(96, 165, 250, 0.28);

    transition: width 0.75s ease;
    animation: voteBarMove 3s linear infinite;
}

@keyframes voteBarMove {
    to {
        background-position: 200% center;
    }
}

.vote-option.selecionada {
    border-color: rgba(34, 197, 94, 0.6);

    background:
        linear-gradient(145deg, rgba(21, 128, 61, 0.22), rgba(8, 12, 22, 0.92));

    box-shadow:
        0 0 18px rgba(34, 197, 94, 0.12),
        inset 0 0 0 1px rgba(34, 197, 94, 0.12);
}

.vote-option.selecionada .vote-progress i {
    background: linear-gradient(90deg, #22c55e, #38bdf8);
    box-shadow:
        0 0 12px rgba(34, 197, 94, 0.42),
        0 0 18px rgba(56, 189, 248, 0.3);
}

.vote-card-footer {
    margin-top: 12px;
    padding: 9px 11px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
}

.vote-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    padding-top: 4px;
}

.vote-pagination-info {
    color: #aebcd4;
    font-size: 12px;
    font-weight: 700;
}

.vote-pagination-btn {
    min-width: 96px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    background: rgba(15, 23, 42, 0.72);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.vote-pagination-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(96, 165, 250, 0.32);
    background: rgba(30, 41, 59, 0.9);
}

.vote-pagination-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.vote-card-footer.is-voted {
    border: 1px solid rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.08);
    color: #bbf7d0;
}

.vote-card-footer.is-closed {
    border: 1px solid rgba(248, 113, 113, 0.2);
    background: rgba(127, 29, 29, 0.16);
    color: #fecaca;
}

.vote-card-footer.is-open {
    border: 1px solid rgba(96, 165, 250, 0.18);
    background: rgba(37, 99, 235, 0.08);
    color: #bfdbfe;
}

.vote-box {
    text-align: left;
}

.vote-box h3 {
    color: #f8fafc;
}

.vote-box p {
    color: #cbd5e1;
}

/* ===============================
   DOA??ES
=============================== */

.donation-panel {
    background: rgba(12, 14, 28, 0.92);
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 0 18px rgba(168, 85, 247, 0.04);
}

.donation-panel h2 {
    margin: 0 0 8px;
    color: #a855f7;
}

.donation-panel p {
    color: #aab2c0;
}

.donation-placeholder {
    margin-top: 22px;
    padding: 22px;
    border-radius: 6px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.28);
    color: #fff;
    font-weight: 700;
}

/* ===============================
   SWEETALERT - ERRO
=============================== */

.swal2-validation-message {
    background: rgba(248, 113, 113, 0.12) !important;
    border: 1px solid rgba(248, 113, 113, 0.35) !important;
    color: #fecaca !important;
    border-radius: 8px !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    box-shadow: 0 0 12px rgba(248, 113, 113, 0.12) !important;
}

/* ===============================
   MODAL ALTERAR SENHA
=============================== */

.change-password-account {
    margin: 10px 0 20px;
    padding: 12px 16px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.18),
        rgba(59, 130, 246, 0.08)
    );

    border: 1px solid rgba(59, 130, 246, 0.35);

    text-align: center;
}

.change-password-account span {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.account-name {
    display: inline-block;

    font-size: 18px;
    font-weight: 800;

    background: linear-gradient(120deg, #38bdf8, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: 0.5px;
}

.password-field {
    display: flex;
    align-items: center;
    gap: 6px;
}

.password-field input {
    flex: 1;
    text-align: center;
}

.password-field button {
    width: 40px;
    height: 46px;

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

    background: rgba(255,255,255,0.05);
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.password-field button:hover {
    background: rgba(59, 130, 246, 0.14);
    border-color: rgba(96, 165, 250, 0.28);
    color: #eff6ff;
}

.password-field button.is-visible {
    background: rgba(59, 130, 246, 0.16);
    border-color: rgba(96, 165, 250, 0.32);
    color: #ffffff;
}

.password-field button span {
    transform: translateY(-1px);
}

.password-rule {
    margin-top: 6px;
    padding: 8px 10px;

    border-radius: 6px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);

    font-size: 12px;
    color: #9ca3af;

    text-align: center;
}

.swal2-popup input {
    background: rgba(7, 9, 20, 0.95) !important;
    color: #fff !important;

    border: 1px solid rgba(148, 163, 184, 0.35) !important;
    border-radius: 8px !important;

    height: 46px !important;
    padding: 0 14px !important;

    font-size: 14px !important;
}

.swal2-popup input::placeholder {
    color: #94a3b8 !important;
}

.swal2-popup input:focus {
    border-color: rgba(56, 189, 248, 0.7) !important;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.15) !important;
}

/* ===============================
   LOGOUT ANIMATION
=============================== */

body.logout-animation .dashboard-container {
    opacity: 0;
    transform: scale(0.96) translateY(16px);
    filter: blur(6px);
}

body.logout-animation {
    overflow: hidden;
}

.dashboard-leaving {
    opacity: 0;
    transform: scale(0.96);
    filter: blur(5px);
    transition: 0.8s ease;
}

.logout-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(3, 7, 18, 0);
    opacity: 0;
    pointer-events: none;

    transition: 0.45s ease;
}

.logout-overlay.active {
    background: rgba(3, 7, 18, 0.88);
    opacity: 1;
}

.logout-box {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 22px;
    border-radius: 10px;

    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(56, 189, 248, 0.35);

    color: #dbeafe;
    font-weight: 700;

    transform: translateY(10px);
    transition: 0.45s ease;

    box-shadow: 0 0 20px rgba(56, 189, 248, 0.18);
}

.logout-overlay.active .logout-box {
    transform: translateY(0);
}

.logout-spinner {
    width: 18px;
    height: 18px;

    border: 2px solid rgba(148, 163, 184, 0.35);
    border-top-color: #38bdf8;
    border-radius: 50%;

    animation: spinLogout 0.8s linear infinite;
}

@keyframes spinLogout {
    to {
        transform: rotate(360deg);
    }
}

/* ===============================
   RESPONSIVO
=============================== */

@media (max-width: 1000px) {
    .profile-layout,
    .password-grid {
        grid-template-columns: 1fr;
    }

    .profile-verification-card {
        grid-template-columns: 1fr;
        justify-items: flex-start;
    }

    .btn-save-password {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .vote-header,
    .vote-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    #btn-atualizar-votacao {
        width: 100%;
    }

    .vote-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .header-content,
    .accounts-header,
    .profile-top,
    .support-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-tabs {
        justify-content: flex-start;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
        min-width: unset;
    }

    .btn-logout,
    .btn-open-ticket {
        width: 100%;
    }

    .ticket-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .ticket-actions-preview {
        width: 100%;
        justify-content: space-between;
    }

    .ticket-row {
        grid-template-columns: 1fr;
    }

    .ticket-message-content {
        max-width: 86%;
    }

    .profile-verification-badge {
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .dashboard-container {
        width: 94%;
        margin: 28px auto;
        padding: 0 10px;
    }

    .dashboard-title {
        font-size: 32px;
    }

    .vote-panel {
        padding: 18px;
        border-radius: 18px;
    }

    .vote-header h2 {
        font-size: 28px;
    }

    .vote-card,
    .vote-box {
        padding: 14px;
    }

    .vote-option-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .vote-pagination {
        flex-wrap: wrap;
    }

    .vote-pagination-btn {
        flex: 1;
    }

    .ticket-view-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ===============================
   TIMER DA VOTA??O - DESTAQUE
=============================== */

.vote-meta em {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 4px 9px;
    border-radius: 999px;

    color: #fde68a;
    background: rgba(250, 204, 21, 0.10);
    border: 1px solid rgba(250, 204, 21, 0.35);

    font-size: 12px;
    font-weight: 900;

    text-shadow: 0 0 8px rgba(250, 204, 21, 0.35);
    box-shadow:
        0 0 14px rgba(250, 204, 21, 0.12),
        inset 0 0 0 1px rgba(255,255,255,0.03);

    animation: voteTimerPulse 1.6s ease-in-out infinite;
}

.vote-meta em::before {
    content: "⏳";
    font-size: 13px;
}

@keyframes voteTimerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 12px rgba(250, 204, 21, 0.12),
            inset 0 0 0 1px rgba(255,255,255,0.03);
    }

    50% {
        transform: scale(1.04);
        box-shadow:
            0 0 22px rgba(250, 204, 21, 0.28),
            inset 0 0 0 1px rgba(255,255,255,0.06);
    }
}
/* ===============================
   SUGESTOES - DASHBOARD JOGADOR
=============================== */
.suggestions-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, 0.16);
    background: linear-gradient(160deg, rgba(5, 12, 33, 0.95), rgba(3, 9, 25, 0.92));
}

.suggestions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.suggestions-header h2 {
    margin: 0;
    font-size: 24px;
    color: #f8fbff;
}

.suggestions-header p {
    margin: 4px 0 0;
    color: #9fc5ff;
}

.suggestions-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(7, 16, 38, 0.72);
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 38px;
    row-gap: 20px;
}

.suggestions-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
    color: #dbeafe;
    font-size: 13px;
}

.suggestions-form input,
.suggestions-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(3, 10, 26, 0.9);
    color: #f8fbff;
}

.suggestions-form textarea {
    resize: vertical;
    min-height: 110px;
}

.suggestions-form input:focus,
.suggestions-form textarea:focus {
    border-color: rgba(56, 189, 248, 0.68);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22);
    outline: none;
}

.suggestions-actions {
    display: flex;
    justify-content: flex-end;
}

.suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.suggestions-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.suggestions-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(4, 11, 30, 0.68);
}

.suggestions-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.suggestions-section-header h3 {
    margin: 0;
    font-size: 16px;
    color: #f8fbff;
}

.suggestions-section-header span {
    min-width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #7dd3fc;
    border: 1px solid rgba(125, 211, 252, 0.38);
    background: rgba(14, 116, 144, 0.18);
    font-weight: 700;
}

.suggestions-section-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.suggestion-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    background: rgba(7, 17, 42, 0.8);
}

.suggestion-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.suggestion-card-head h3 {
    margin: 0;
    font-size: 16px;
    color: #f8fbff;
}

.suggestion-card-head p {
    margin: 6px 0 0;
    color: #bfdbfe;
    line-height: 1.5;
}

.suggestion-status {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sug-status-pendente {
    color: #facc15;
    border-color: rgba(250, 204, 21, 0.45);
    background: rgba(234, 179, 8, 0.14);
}

.sug-status-aprovada {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.45);
    background: rgba(34, 197, 94, 0.14);
}

.sug-status-reprovada {
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(239, 68, 68, 0.14);
}

.suggestion-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    color: #9cc2f3;
    font-size: 13px;
}

.suggestion-meta strong {
    color: #dbeafe;
}

.suggestion-admin-note {
    color: #c7d2fe;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: rgba(49, 46, 129, 0.22);
}

@media (max-width: 980px) {
    .suggestions-sections,
    .suggestions-grid,
    .suggestion-meta {
        grid-template-columns: 1fr;
    }

    .suggestions-header,
    .suggestion-card-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Icones do dashboard com fonte de emoji dedicada */
.tab-btn .icon-emoji,
.btn-logout .icon-emoji {
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    line-height: 1;
    vertical-align: -2px;
}

.tab-btn .icon-emoji.icon-svg {
    font-family: inherit;
    vertical-align: 0;
}

.tab-btn .icon-emoji.icon-svg svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* ===============================
   SUGESTOES - VISUAL UPGRADE V2
=============================== */
.suggestions-panel {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(94, 234, 212, 0.12);
    background:
        radial-gradient(circle at 88% 10%, rgba(16, 185, 129, 0.12), transparent 28%),
        radial-gradient(circle at 0% 100%, rgba(251, 191, 36, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(6, 18, 25, 0.98), rgba(5, 13, 22, 0.98) 46%, rgba(11, 18, 14, 0.98));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 26px 52px rgba(2, 6, 23, 0.4);
}

.suggestions-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.03) 18%, transparent 36%);
    transform: translateX(-100%);
    animation: donationPanelSweep 8s ease-in-out infinite;
}

.suggestions-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 10px;
}

.suggestions-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.22);
    background: rgba(120, 53, 15, 0.26);
    color: #fcd34d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.suggestions-header h2 {
    margin: 0;
    font-size: 32px;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #f8fafc;
    text-shadow: 0 8px 24px rgba(15, 23, 42, 0.4);
}

.suggestions-header p {
    max-width: 760px;
    font-size: 14px;
    margin-top: 8px;
    color: #d7e9dc;
    line-height: 1.5;
}

.suggestions-header .btn-open-ticket {
    min-width: 112px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(94, 234, 212, 0.3);
    background:
        linear-gradient(140deg, rgba(8, 145, 178, 0.75), rgba(16, 185, 129, 0.72));
    color: #ecfeff;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 12px 24px rgba(8, 145, 178, 0.2);
}

.suggestions-header .btn-open-ticket:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(8, 145, 178, 0.28);
}

.suggestions-subtabs {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 5px;
    border-radius: 999px;
    border: 1px solid rgba(94, 234, 212, 0.12);
    background: rgba(7, 16, 21, 0.72);
}

.suggestions-subtab-btn {
    min-width: 160px;
    padding: 9px 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #bcd6cb;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.suggestions-subtab-btn:hover {
    color: #f0fdf4;
    transform: translateY(-1px);
}

.suggestions-subtab-btn.active {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.9), rgba(8, 145, 178, 0.86));
    color: #ecfeff;
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.2);
}

.suggestions-subview {
    display: none;
}

.suggestions-subview.active {
    display: block;
}

.suggestions-form {
    position: relative;
    z-index: 1;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(94, 234, 212, 0.14);
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(9, 22, 29, 0.86), rgba(8, 16, 25, 0.9));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025),
        0 20px 34px rgba(2, 6, 23, 0.18);
}

.suggestions-form-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.suggestions-form-intro h3 {
    margin: 0;
    color: #f8fafc;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.suggestions-form-intro p {
    margin: 6px 0 0;
    color: #b9d7c3;
    font-size: 13px;
    line-height: 1.45;
}

.suggestions-form-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    background: rgba(120, 53, 15, 0.2);
    color: #fde68a;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.suggestions-form label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #dcfce7;
    font-weight: 800;
    gap: 10px;
}

.suggestions-form input,
.suggestions-form textarea {
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid rgba(94, 234, 212, 0.16);
    background:
        linear-gradient(180deg, rgba(6, 15, 21, 0.98), rgba(5, 12, 18, 0.98));
    color: #f8fafc;
    padding-left: 14px;
    padding-right: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.suggestions-form input::placeholder,
.suggestions-form textarea::placeholder {
    color: rgba(148, 163, 184, 0.72);
}

.suggestions-form input:focus,
.suggestions-form textarea:focus {
    border-color: rgba(45, 212, 191, 0.58);
    box-shadow:
        0 0 0 3px rgba(45, 212, 191, 0.14),
        0 0 20px rgba(16, 185, 129, 0.14);
    transform: translateY(-1px);
}

.suggestions-form textarea {
    min-height: 150px;
    max-height: 240px;
}

.suggestions-actions .btn-save-password {
    min-width: 220px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(94, 234, 212, 0.24);
    background:
        linear-gradient(135deg, rgba(5, 150, 105, 0.95), rgba(8, 145, 178, 0.92));
    color: #f8fafc;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 14px 28px rgba(5, 150, 105, 0.24);
}

.suggestions-actions .btn-save-password:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(5, 150, 105, 0.3);
}

.suggestions-sections {
    gap: 14px;
}

.suggestions-section {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(94, 234, 212, 0.12);
    background:
        linear-gradient(175deg, rgba(7, 20, 29, 0.84), rgba(5, 13, 22, 0.88));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.suggestions-section:nth-child(1) .suggestions-section-header h3 {
    color: #c4f1d6;
}

.suggestions-section:nth-child(2) .suggestions-section-header h3 {
    color: #fcd34d;
}

.suggestions-section:nth-child(2) {
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.08), transparent 34%),
        linear-gradient(175deg, rgba(23, 19, 9, 0.7), rgba(8, 14, 19, 0.88));
}

.suggestions-section-header span {
    min-width: 34px;
    height: 34px;
    font-size: 14px;
    color: #f8fafc;
    background: rgba(8, 145, 178, 0.16);
    border: 1px solid rgba(94, 234, 212, 0.24);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.suggestion-card {
    position: relative;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(94, 234, 212, 0.16);
    background:
        linear-gradient(160deg, rgba(8, 20, 30, 0.96), rgba(6, 14, 24, 0.94));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 12px 22px rgba(2, 6, 23, 0.26);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.suggestion-card:hover {
    transform: translateY(-2px);
    border-color: rgba(94, 234, 212, 0.3);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 18px 30px rgba(2, 6, 23, 0.32);
}

.suggestion-card.sug-status-aprovada {
    border-left: 4px solid rgba(34, 197, 94, 0.85);
}

.suggestion-card.sug-status-reprovada {
    border-left: 4px solid rgba(248, 113, 113, 0.9);
}

.suggestion-card.sug-status-pendente {
    border-left: 4px solid rgba(251, 191, 36, 0.9);
}

.suggestion-card-head {
    gap: 14px;
}

.suggestion-card-head h3 {
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.suggestion-card-head p {
    color: #dbe7ec;
    font-size: 13px;
    line-height: 1.5;
}

.suggestion-status {
    min-width: 104px;
    text-align: center;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.suggestion-meta {
    gap: 12px;
    color: #d6e5dd;
}

.suggestion-meta span {
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid rgba(94, 234, 212, 0.12);
    background: rgba(255,255,255,0.02);
}

.suggestion-admin-note {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    background: linear-gradient(160deg, rgba(120, 53, 15, 0.18), rgba(30, 41, 59, 0.22));
    color: #f7e6b5;
    line-height: 1.55;
}

.suggestions-section .vote-box {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px dashed rgba(94, 234, 212, 0.24);
    background: rgba(6, 15, 21, 0.55);
    border-radius: 16px;
}

.suggestions-section .vote-box h3 {
    color: #eefbf4;
}

.suggestions-section .vote-box p {
    color: #a7d9c0;
}

@media (max-width: 980px) {
    .suggestions-panel {
        padding: 16px;
    }

    .suggestions-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .suggestions-subtabs {
        display: flex;
        width: 100%;
    }

    .suggestions-subtab-btn {
        flex: 1;
        min-width: 0;
    }

    .suggestions-header h2 {
        font-size: 28px;
    }

    .suggestions-header p {
        font-size: 15px;
    }

    .suggestions-form-intro {
        flex-direction: column;
    }

    .suggestions-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 16px;
    }

    .suggestions-actions .btn-save-password {
        width: 100%;
        min-width: 0;
    }
}

#sugestoes-bloqueadas-msg {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    gap: 8px;
}

#sugestoes-bloqueadas-msg h3,
#sugestoes-bloqueadas-msg p {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================
   DOACOES - LOJA JOGADOR
=============================== */
.donation-shop-panel {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.22);
    background:
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.18), transparent 24%),
        radial-gradient(circle at 0% 100%, rgba(180, 83, 9, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(26, 18, 6, 0.98), rgba(14, 10, 4, 0.97) 45%, rgba(7, 5, 2, 0.98));
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255,255,255,0.015),
        inset 0 0 0 1px rgba(255,255,255,0.02);
}

.donation-shop-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.035) 18%, transparent 36%);
    transform: translateX(-100%);
    animation: donationPanelSweep 7s ease-in-out infinite;
}

.donation-shop-panel::after {
    content: none;
}

@keyframes donationPanelSweep {
    0%, 72% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(140%);
    }
}

.donation-shop-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.donation-shop-kicker {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    margin-bottom: 6px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.28);
    background: rgba(120, 53, 15, 0.32);
    color: #fcd34d;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.donation-shop-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff8d6 0%, #facc15 42%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 22px rgba(250, 204, 21, 0.14);
}

.donation-shop-header p {
    margin: 6px 0 0;
    max-width: 620px;
    color: #f5deb0;
    font-size: 13px;
    line-height: 1.45;
}

.donation-shop-overview {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.donation-overview-card {
    position: relative;
    overflow: hidden;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.14);
    background:
        linear-gradient(180deg, rgba(34, 23, 8, 0.88), rgba(17, 12, 5, 0.84));
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.02),
        0 18px 36px rgba(0,0,0,0.18);
}

.donation-overview-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -45% auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.14), transparent 65%);
}

.donation-overview-card span,
.donation-wallet-card .wallet-label {
    position: relative;
    z-index: 1;
    display: block;
    color: #f6dea1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.donation-overview-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 6px;
    color: #fff8d6;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.donation-overview-card small {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 4px;
    color: #ccb98f;
    font-size: 11px;
    line-height: 1.35;
}

.donation-overview-card-highlight {
    border-color: rgba(250, 204, 21, 0.28);
    background:
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.16), transparent 45%),
        linear-gradient(180deg, rgba(49, 30, 8, 0.92), rgba(20, 13, 4, 0.88));
}

.donation-subtabs {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.14);
    background: rgba(17, 12, 5, 0.7);
}

.donation-subtab-btn {
    min-width: 110px;
    padding: 8px 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #d6c19a;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.donation-subtab-btn:hover {
    color: #fff7d6;
    transform: translateY(-1px);
}

.donation-subtab-btn.active {
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.92), rgba(234, 179, 8, 0.84));
    color: #1f1305;
    box-shadow: 0 8px 18px rgba(180, 83, 9, 0.22);
}

.donation-subview {
    display: none;
}

.donation-subview.active {
    display: block;
}

.donation-shop-grid {
    position: relative;
    z-index: 1;
    display: block;
}

.dashboard-donations-showcase {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(251, 191, 36, 0.16);
    background:
        radial-gradient(circle at top center, rgba(250, 204, 21, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(16, 11, 4, 0.78), rgba(10, 8, 3, 0.86));
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.02),
        0 18px 32px rgba(0,0,0,0.16);
}

.dashboard-donations-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    padding: 24px;
}

.dashboard-donations-showcase .public-donation-card {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 18px 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        radial-gradient(circle at top center, rgba(255,255,255,0.04), transparent 36%),
        linear-gradient(180deg, rgba(20, 17, 14, 0.98), rgba(10, 10, 10, 1));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 18px 28px rgba(0, 0, 0, 0.24);
}

.dashboard-donations-showcase .public-donation-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(circle at top center, rgba(255,255,255,0.05), transparent 28%);
}

.dashboard-donations-showcase .public-donation-card--bonus::before {
    background: radial-gradient(circle at top center, rgba(35, 210, 115, 0.18), transparent 30%);
}

.dashboard-donations-showcase .public-donation-card--discount::before {
    background: radial-gradient(circle at top center, rgba(255, 173, 26, 0.18), transparent 30%);
}

.dashboard-donations-showcase .public-donation-card--default::before {
    background: radial-gradient(circle at top center, rgba(63, 129, 241, 0.16), transparent 30%);
}

.dashboard-donations-showcase .public-donation-badge,
.dashboard-donations-showcase .public-donation-thumb,
.dashboard-donations-showcase .public-donation-body {
    position: relative;
    z-index: 1;
}

.dashboard-donations-showcase .public-donation-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: fit-content;
}

.dashboard-donations-showcase .public-donation-card--bonus .public-donation-badge {
    color: #0a2514;
    background: linear-gradient(180deg, #2dd56f, #18b55a);
}

.dashboard-donations-showcase .public-donation-card--discount .public-donation-badge {
    color: #3a2400;
    background: linear-gradient(180deg, #ffb21c, #f59a00);
}

.dashboard-donations-showcase .public-donation-card--default .public-donation-badge {
    color: #d7e6ff;
    background: linear-gradient(180deg, #1f4ca1, #163a7d);
}

.dashboard-donations-showcase .public-donation-thumb {
    height: 132px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
}

.dashboard-donations-showcase .public-donation-thumb img {
    width: auto;
    max-width: 76%;
    height: 116px;
    object-fit: contain;
    filter:
        drop-shadow(0 14px 18px rgba(0, 0, 0, 0.28))
        drop-shadow(0 0 18px rgba(255, 166, 67, 0.12));
}

.dashboard-donations-showcase .public-donation-thumb-placeholder {
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    border-radius: 18px;
    color: #f0ddbb;
    background: rgba(255,255,255,0.04);
}

.dashboard-donations-showcase .public-donation-body {
    display: grid;
    gap: 10px;
    text-align: center;
}

.dashboard-donations-showcase .public-donation-body h3 {
    margin: 0;
    color: #f6f1e8;
    font-size: 18px;
    font-weight: 700;
}

.dashboard-donations-showcase .public-donation-body p {
    display: none;
}

.dashboard-donations-showcase .public-donation-cash {
    display: grid;
    gap: 6px;
    justify-items: center;
    margin-top: 2px;
}

.dashboard-donations-showcase .public-donation-cash strong {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 900;
}

.dashboard-donations-showcase .public-donation-cash strong i {
    color: #f1a500;
    font-size: 16px;
}

.dashboard-donations-showcase .public-donation-cash strong span {
    color: #ffb20e;
    font-size: 13px;
    font-weight: 700;
}

.dashboard-donations-showcase .public-donation-cash small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6e6b67;
    font-size: 14px;
}

.dashboard-donations-showcase .public-donation-cash small span {
    color: #24d96f;
    font-weight: 700;
}

.dashboard-donations-showcase .public-donation-price {
    display: flex;
    justify-content: center;
    margin-top: 2px;
}

.dashboard-donations-showcase .public-donation-price .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: #ffe7b0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.01em;
    background: linear-gradient(180deg, rgba(64, 42, 10, 0.92), rgba(27, 20, 8, 0.88));
    border: 1px solid rgba(245, 183, 67, 0.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 20px rgba(0,0,0,0.18);
    text-shadow: 0 1px 10px rgba(245, 183, 67, 0.1);
}

.dashboard-donations-showcase .public-donation-benefits {
    position: relative;
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding: 30px 12px 10px 16px;
    list-style: none;
    text-align: left;
    border-radius: 18px;
    border: 1px solid rgba(255, 196, 87, 0.18);
    background:
        linear-gradient(90deg, rgba(245, 158, 11, 0.16), rgba(245, 158, 11, 0.02) 18%, transparent 45%),
        linear-gradient(180deg, rgba(22, 18, 14, 0.96), rgba(14, 12, 10, 0.88));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 12px 28px rgba(0,0,0,0.2);
}

.dashboard-donations-showcase .public-donation-benefits::before {
    content: "Benefícios";
    position: absolute;
    top: 10px;
    left: 16px;
    color: #f5c46b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dashboard-donations-showcase .public-donation-benefits::after {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f8bf43, rgba(245, 158, 11, 0.18));
}

.dashboard-donations-showcase .public-donation-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 12px;
    color: #eef4fb;
    font-size: 14px;
    line-height: 1.35;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.05);
}

.dashboard-donations-showcase .public-donation-benefits li span {
    flex: 1;
}

.dashboard-donations-showcase .public-donation-benefits li.benefit-base {
    border-color: rgba(255,255,255,0.06);
}

.dashboard-donations-showcase .public-donation-benefits li.benefit-bonus {
    border-color: rgba(45, 213, 111, 0.18);
    background: linear-gradient(180deg, rgba(31, 72, 41, 0.26), rgba(255,255,255,0.015));
}

.dashboard-donations-showcase .public-donation-benefits li.benefit-item {
    border-color: rgba(96, 165, 250, 0.18);
    background: linear-gradient(180deg, rgba(25, 50, 88, 0.24), rgba(255,255,255,0.015));
}

.dashboard-donations-showcase .public-donation-benefits i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    color: #0b111b;
    font-size: 11px;
}

.dashboard-donations-showcase .public-donation-benefits li.benefit-base i {
    background: linear-gradient(180deg, #f8bf43, #f59e0b);
    box-shadow: 0 6px 14px rgba(245, 158, 11, 0.28);
}

.dashboard-donations-showcase .public-donation-benefits li.benefit-bonus i {
    background: linear-gradient(180deg, #34e27b, #1db45a);
    box-shadow: 0 6px 14px rgba(45, 213, 111, 0.26);
}

.dashboard-donations-showcase .public-donation-benefits li.benefit-item i {
    background: linear-gradient(180deg, #7cc6ff, #468df6);
    box-shadow: 0 6px 14px rgba(70, 141, 246, 0.26);
}

.dashboard-donations-showcase .public-donation-buy {
    width: 100%;
    min-height: 42px;
    margin-top: 10px;
    border: 0;
    border-radius: 10px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dashboard-donations-showcase .public-donation-buy--bonus {
    background: linear-gradient(180deg, #2cc864, #22b154);
}

.dashboard-donations-showcase .public-donation-buy--discount {
    background: linear-gradient(180deg, #ffb21c, #f9a005);
}

.dashboard-donations-showcase .public-donation-buy--default {
    background: linear-gradient(180deg, #4b8cf8, #3a72d8);
}

.dashboard-donations-showcase .public-donation-buy--dashboard {
    cursor: not-allowed;
    opacity: 0.95;
}

.dashboard-donations-showcase .public-donation-buy--dashboard i {
    font-size: 13px;
}

.donation-pack-card {
    position: relative;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-areas:
        "badge badge"
        "image head"
        "image cash"
        "image price"
        "foot foot"
        "button button";
    align-items: center;
    gap: 8px 10px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    background:
        radial-gradient(circle at top, rgba(250, 204, 21, 0.12), transparent 35%),
        linear-gradient(180deg, rgba(29, 20, 7, 0.98), rgba(13, 9, 4, 0.99));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 14px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    width: 100%;
    max-width: 320px;
    align-self: start;
}

.donation-pack-card:hover {
    transform: translateY(-2px);
    border-color: rgba(251, 191, 36, 0.44);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 18px 30px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(245, 158, 11, 0.1);
}

.donation-pack-badge {
    grid-area: badge;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 800;
    color: #fef3c7;
    padding: 5px 8px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.38);
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.55), rgba(234, 179, 8, 0.2));
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.18);
}

.donation-pack-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: rgba(255, 248, 220, 0.14);
    border: 1px solid rgba(251, 191, 36, 0.32);
    color: #fff8d6;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.donation-pack-image-wrap {
    grid-area: image;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background:
        radial-gradient(circle at center, rgba(251, 191, 36, 0.1), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.donation-pack-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter:
        drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42))
        drop-shadow(0 0 10px rgba(250, 204, 21, 0.1));
}

.donation-pack-image-placeholder {
    width: 76px;
    height: 76px;
    border-radius: 10px;
    border: 1px dashed rgba(251, 191, 36, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fcd34d;
    font-size: 12px;
}

.donation-pack-head {
    grid-area: head;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.donation-pack-tag {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 248, 220, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.18);
    color: #fde68a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.donation-pack-card h3 {
    margin: 0;
    color: #fffdf4;
    font-size: 18px;
    line-height: 1.08;
}

.donation-pack-card p {
    margin: 0;
    color: #decba1;
    font-size: 11px;
    min-height: 0;
    line-height: 1.35;
}

.donation-pack-cash {
    grid-area: cash;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 230, 140, 0.06), rgba(120, 53, 15, 0.08));
    border: 1px solid rgba(251, 191, 36, 0.12);
}

.donation-pack-cash strong {
    font-size: 21px;
    color: #facc15;
    line-height: 1;
    text-shadow: 0 0 22px rgba(250, 204, 21, 0.22);
}

.donation-pack-cash small {
    color: #fcd34d;
    font-size: 10px;
    font-weight: 700;
}

.donation-pack-price {
    grid-area: price;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.donation-pack-price .old {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 12px;
}

.donation-pack-price .current {
    color: #f8fafc;
    font-size: 20px;
    font-weight: 900;
}

.donation-pack-foot {
    grid-area: foot;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    color: #ccb98f;
    font-size: 10px;
    font-weight: 700;
}

.donation-pack-btn {
    grid-area: button;
    margin-top: 2px;
    border: 1px solid rgba(251, 191, 36, 0.36);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.98), rgba(234, 179, 8, 0.94));
    color: #111827;
    font-weight: 800;
    padding: 9px 12px;
    cursor: not-allowed;
    opacity: 0.95;
    box-shadow: 0 8px 16px rgba(180, 83, 9, 0.22);
}

/* ===============================
   DOACOES - RESGATE E HISTORICO
=============================== */
.donation-redeem-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
    gap: 10px;
    margin-bottom: 10px;
}

.donation-redeem-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(251, 191, 36, 0.18);
    background:
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.1), transparent 34%),
        linear-gradient(165deg, rgba(27, 19, 7, 0.96), rgba(13, 9, 4, 0.94));
    padding: 12px;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.02),
        0 18px 32px rgba(0,0,0,0.22);
}

.donation-redeem-card h3 {
    margin: 0;
    color: #fff8d6;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.donation-redeem-card p {
    margin: 6px 0 0;
    color: #e9d8b4;
    font-size: 11px;
    line-height: 1.4;
}

.donation-redeem-form {
    margin-top: 10px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) auto;
    gap: 10px;
}

.donation-redeem-form input,
.donation-redeem-form select {
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.22);
    background: rgba(11, 8, 3, 0.98);
    color: #fff;
    padding: 0 16px;
    font-size: 13px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.donation-redeem-form input:focus,
.donation-redeem-form select:focus {
    outline: none;
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.14);
}

.donation-wallet-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background:
        radial-gradient(circle at right top, rgba(250, 204, 21, 0.16), transparent 38%),
        linear-gradient(165deg, rgba(31, 22, 8, 0.97), rgba(13, 9, 4, 0.96));
}

.donation-wallet-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -30px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.12), transparent 65%);
    pointer-events: none;
}

.donation-wallet-card strong {
    color: #fde047;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-shadow:
        0 0 26px rgba(250, 204, 21, 0.18),
        0 0 46px rgba(245, 158, 11, 0.1);
}

.donation-wallet-card p {
    color: #d6c19a;
}

.donation-history-box {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    border-radius: 18px;
    border: 1px solid rgba(251, 191, 36, 0.18);
    background:
        linear-gradient(180deg, rgba(19, 13, 5, 0.82), rgba(10, 8, 3, 0.88));
    padding: 14px;
}

.donation-history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.donation-history-header h3 {
    margin: 0;
    color: #fff6cc;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.donation-history-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 300px;
    overflow: auto;
    padding-right: 6px;
}

.donation-history-list::-webkit-scrollbar {
    width: 10px;
}

.donation-history-list::-webkit-scrollbar-track {
    background: rgba(24, 18, 8, 0.75);
    border-radius: 999px;
}

.donation-history-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.95), rgba(180, 83, 9, 0.95));
    border-radius: 999px;
    border: 2px solid rgba(24, 18, 8, 0.72);
}

.donation-history-item {
    border-radius: 14px;
    border: 1px solid rgba(251, 191, 36, 0.18);
    background:
        linear-gradient(180deg, rgba(16, 11, 4, 0.92), rgba(10, 8, 3, 0.96));
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.donation-history-item:hover {
    transform: translateX(3px);
    border-color: rgba(251, 191, 36, 0.34);
    background:
        linear-gradient(180deg, rgba(18, 13, 5, 0.96), rgba(10, 8, 4, 0.96));
}

.donation-history-item.donation-history-status-aprovado {
    border-left: 4px solid rgba(250, 204, 21, 0.82);
}

.donation-history-item.donation-history-status-pendente {
    border-left: 4px solid rgba(245, 158, 11, 0.82);
}

.donation-history-item.donation-history-status-cancelado,
.donation-history-item.donation-history-status-recusado {
    border-left: 4px solid rgba(239, 68, 68, 0.82);
}

.donation-history-main strong {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.donation-history-main p {
    margin: 4px 0 0;
    color: #fde68a;
    font-size: 12px;
    font-weight: 700;
}

.donation-history-main small {
    display: block;
    margin-top: 4px;
    color: #c0b08a;
    font-size: 11px;
}

.donation-history-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.donation-history-meta span {
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.24);
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.42), rgba(92, 43, 12, 0.32));
    color: #fff4c2;
    font-size: 10px;
    padding: 5px 9px;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.donation-history-meta .is-status {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.7), rgba(234, 179, 8, 0.34));
}

.donation-history-meta .is-cash {
    color: #fde68a;
}

@media (max-width: 980px) {
    .donation-shop-panel {
        padding: 18px 14px;
        border-radius: 22px;
    }

    .donation-shop-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .donation-shop-header h2 {
        font-size: 28px;
    }

    .donation-shop-overview {
        grid-template-columns: 1fr;
    }

    .donation-subtabs {
        display: flex;
        width: 100%;
    }

    .donation-subtab-btn {
        flex: 1;
        min-width: 0;
    }

    .dashboard-donations-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 18px;
    }

    .donation-redeem-grid {
        grid-template-columns: 1fr;
    }

    .donation-redeem-form {
        grid-template-columns: 1fr;
    }

    .donation-redeem-form .btn-open-ticket {
        width: 100%;
    }

    .donation-history-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .donation-history-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .donation-history-meta {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .dashboard-donations-showcase {
        border-radius: 18px;
    }

    .dashboard-donations-board {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .donation-history-header h3 {
        font-size: 22px;
    }
}

/* =========================
   DASHBOARD JOGADOR - SUPORTE VIVO
========================= */

.support-panel,
.suporte-panel,
#suporte {
    background:
        radial-gradient(circle at top left, rgba(0, 229, 255, 0.12), transparent 36%),
        linear-gradient(145deg, rgba(9, 14, 30, 0.96), rgba(5, 8, 18, 0.98));
    border: 1px solid rgba(0, 229, 255, 0.35);
    box-shadow: 0 0 28px rgba(0, 229, 255, 0.10);
}

.support-panel h2,
.suporte-panel h2,
#suporte h2 {
    color: #00e5ff;
    text-shadow: 0 0 14px rgba(0, 229, 255, 0.35);
}

.support-panel p,
.suporte-panel p,
#suporte p {
    color: #bfdbfe;
}

/* área da lista */
.ticket-list,
.player-ticket-list,
.suporte-lista {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    padding: 16px;
}

/* card do ticket */
.player-ticket-card,
.ticket-card,
.suporte-ticket-card {
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 38%),
        linear-gradient(145deg, rgba(8, 18, 42, 0.98), rgba(3, 7, 18, 0.99));
    border: 1px solid rgba(56, 189, 248, 0.38);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.12);
    border-radius: 12px;
}

.player-ticket-card:hover,
.ticket-card:hover,
.suporte-ticket-card:hover {
    border-color: rgba(0, 229, 255, 0.75);
    box-shadow: 0 0 26px rgba(0, 229, 255, 0.22);
    transform: translateY(-1px);
}

/* ícone */
.ticket-icon,
.player-ticket-icon,
.suporte-ticket-icon {
    background: rgba(0, 229, 255, 0.13);
    border: 1px solid rgba(0, 229, 255, 0.45);
    color: #67e8f9;
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.16);
}

/* ID */
.ticket-id,
.player-ticket-id,
.suporte-ticket-id {
    color: #00e5ff;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.35);
}

/* título */
.ticket-title,
.player-ticket-title,
.suporte-ticket-title {
    color: #ffffff;
    font-weight: 900;
}

/* categoria */
.ticket-category,
.player-ticket-category,
.suporte-ticket-category {
    color: #a78bfa;
    font-weight: 900;
}

/* Última atualização */
.ticket-updated,
.player-ticket-updated,
.suporte-ticket-updated {
    color: #facc15;
    font-weight: 800;
}

/* separador */
.ticket-meta-dot {
    color: #64748b;
}

/* status */
.ticket-status,
.player-ticket-status,
.suporte-ticket-status {
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.18);
    font-weight: 900;
}

/* abrir */
.ticket-open,
.player-ticket-open,
.suporte-ticket-open {
    color: #93c5fd;
    font-weight: 900;
}

.ticket-open:hover,
.player-ticket-open:hover,
.suporte-ticket-open:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(147, 197, 253, 0.55);
}

/* bot?o abrir ticket */
.btn-open-ticket,
.btn-abrir-ticket,
#btn-abrir-ticket {
    background: linear-gradient(135deg, #0284c7, #06b6d4);
    border: 1px solid rgba(103, 232, 249, 0.45);
    box-shadow: 0 0 18px rgba(6, 182, 212, 0.22);
    color: #ffffff;
    font-weight: 900;
}

.btn-open-ticket:hover,
.btn-abrir-ticket:hover,
#btn-abrir-ticket:hover {
    filter: brightness(1.12);
    box-shadow: 0 0 24px rgba(6, 182, 212, 0.35);
    transform: translateY(-1px);
}

/* =========================
   LINHA COM LUZ EM MOVIMENTO
========================= */

.suporte-header-line {
    position: relative;
    height: 2px;
    width: 100%;
    background: rgba(0, 229, 255, 0.15);
    overflow: hidden;
    border-radius: 2px;
}

/* luz animada */
.suporte-header-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 229, 255, 0.8),
        transparent
    );

    animation: luzCorrendo 3.5s linear infinite;
}

@keyframes luzCorrendo {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}

/* Luz correndo nos tickets do jogador */
#tickets-lista > div:not(.empty-state) {
    position: relative;
    overflow: hidden;
}

#tickets-lista > div:not(.empty-state)::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -35%;
    width: 35%;
    pointer-events: none;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 229, 255, 0.22),
        rgba(125, 211, 252, 0.38),
        transparent
    );

    animation: ticketPlayerLight 5s linear infinite;
}

@keyframes ticketPlayerLight {
    from {
        left: -35%;
    }

    to {
        left: 110%;
    }
}

#tickets-lista > div:not(.empty-state) > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 980px) {
    .guildmark-grid,
    .guildmark-upload-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .guildmark-card-header {
        flex-direction: column;
    }

.guildmark-badge {
        min-width: 0;
    }

    .guildmark-modal-meta {
        grid-template-columns: 1fr;
    }

    .guildmark-modal-preview-wrap {
        grid-template-columns: 1fr;
    }

    .guildmark-modal-file {
        flex-direction: column;
        align-items: stretch;
    }

    .guildmark-modal-file-button {
        min-width: 0;
        width: 100%;
    }
}

.youtube-dashboard-panel {
    display: grid;
    gap: 22px;
    position: relative;
    isolation: isolate;
}

.youtube-subtabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.youtube-subtab-btn {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.18);
    background: rgba(8, 14, 28, 0.82);
    color: #cbd5e1;
    font-weight: 700;
    cursor: pointer;
    transition: 0.18s ease;
}

.youtube-subtab-btn.active,
.youtube-subtab-btn:hover {
    border-color: rgba(34, 211, 238, 0.42);
    background: rgba(8, 25, 46, 0.95);
    color: #ecfeff;
}

.youtube-subtab-btn.is-disabled {
    opacity: 0.46;
    cursor: not-allowed;
    border-color: rgba(71, 85, 105, 0.28);
    background: rgba(8, 14, 28, 0.58);
    color: #7c8ba1;
}

.youtube-subtab-btn.is-disabled:hover {
    border-color: rgba(71, 85, 105, 0.28);
    background: rgba(8, 14, 28, 0.58);
    color: #7c8ba1;
}

.youtube-view {
    display: none;
}

.youtube-view.is-active {
    display: block;
}

.youtube-dashboard-hero,
.youtube-video-form,
.youtube-summary-card,
.youtube-video-card,
.youtube-dashboard-locked {
    background:
        linear-gradient(180deg, rgba(8, 12, 26, 0.96), rgba(7, 10, 21, 0.92)),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.08), transparent 34%);
    border: 1px solid rgba(56, 189, 248, 0.16);
    border-radius: 18px;
    box-shadow:
        0 18px 48px rgba(2, 6, 23, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
}

.youtube-dashboard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 28px;
}

.youtube-dashboard-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #22d3ee;
}

.youtube-dashboard-hero h2,
.youtube-video-form h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #f8fafc;
}

.youtube-dashboard-hero p,
.youtube-form-help {
    margin: 0;
    color: #94a3b8;
    line-height: 1.6;
}

.youtube-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.youtube-hero-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.22);
    background: rgba(14, 23, 45, 0.62);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.youtube-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
    gap: 18px;
    align-items: stretch;
}

.youtube-dashboard-grid-channel {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.youtube-dashboard-grid-channel.is-single-column {
    grid-template-columns: minmax(0, 1fr);
}

.youtube-video-form {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.youtube-video-form label {
    color: #dbeafe;
    font-weight: 700;
    font-size: 15px;
}

.youtube-video-form input {
    width: 100%;
    max-width: 640px;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    background: rgba(15, 23, 42, 0.8);
    color: #e2e8f0;
    font-size: 15px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.youtube-video-form input:focus {
    outline: none;
    border-color: rgba(34, 211, 238, 0.62);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
    background: rgba(15, 23, 42, 0.95);
}

.youtube-video-form .btn-save-password {
    margin-top: 6px;
    min-width: 240px;
}

.youtube-video-preview {
    display: grid;
    grid-template-columns: 164px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(56, 189, 248, 0.14);
}

.youtube-video-preview-media {
    position: relative;
    min-height: 92px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.92));
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-video-preview-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.youtube-channel-preview-media {
    min-height: 140px;
}

.youtube-channel-preview-media img,
.youtube-channel-card-media img {
    object-fit: cover;
}

.youtube-video-preview-copy {
    display: grid;
    gap: 6px;
    align-content: center;
}

.youtube-video-preview-copy span {
    color: #22d3ee;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.youtube-video-preview-copy strong {
    color: #f8fafc;
    font-size: 16px;
}

.youtube-video-preview-copy small {
    color: #94a3b8;
    line-height: 1.5;
}

.youtube-dashboard-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.youtube-channel-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(56, 189, 248, 0.16);
    background:
        linear-gradient(180deg, rgba(8, 12, 26, 0.96), rgba(7, 10, 21, 0.92)),
        radial-gradient(circle at top right, rgba(239, 68, 68, 0.07), transparent 34%);
    box-shadow:
        0 18px 48px rgba(2, 6, 23, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.youtube-channel-card-media {
    width: 112px;
    height: 112px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.16);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 12px 26px rgba(2, 6, 23, 0.22);
}

.youtube-channel-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.youtube-channel-card-body {
    display: grid;
    gap: 12px;
}

.youtube-channel-card-body h3 {
    margin: 0;
    color: #f8fafc;
    font-size: 24px;
}

.youtube-channel-card-body p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.6;
}

.youtube-channel-card-meta {
    display: grid;
    gap: 10px;
    color: #dbeafe;
}

.youtube-channel-card-meta b {
    color: #f8fafc;
}

.youtube-channel-card-body a {
    color: #67e8f9;
    text-decoration: none;
    font-weight: 700;
}

.youtube-channel-card-body a:hover {
    color: #a5f3fc;
    text-decoration: underline;
}

.youtube-summary-card {
    display: grid;
    gap: 10px;
    min-height: 132px;
    padding: 20px;
    align-content: space-between;
}

.youtube-summary-card span {
    color: #94a3b8;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.youtube-summary-card strong {
    font-size: 38px;
    line-height: 1;
    color: #f8fafc;
}

.youtube-summary-card small {
    color: #7c8ba1;
    line-height: 1.45;
}

.youtube-summary-card-highlight {
    border-color: rgba(250, 204, 21, 0.18);
    background:
        linear-gradient(180deg, rgba(29, 24, 12, 0.94), rgba(14, 12, 8, 0.92)),
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.12), transparent 40%);
}

.youtube-videos-lista {
    display: grid;
    gap: 16px;
}

.youtube-videos-lista .vote-box {
    background:
        linear-gradient(180deg, rgba(8, 12, 26, 0.94), rgba(7, 10, 21, 0.9)),
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 38%);
    border: 1px solid rgba(56, 189, 248, 0.16);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow:
        0 18px 48px rgba(2, 6, 23, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.youtube-video-card {
    display: grid;
    gap: 14px;
    padding: 20px;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
}

.youtube-video-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
}

.youtube-video-card-head h3 {
    margin: 0 0 6px;
}

.youtube-video-subtitle {
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.youtube-video-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.92));
    border: 1px solid rgba(56, 189, 248, 0.12);
}

.youtube-video-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.youtube-video-media::after {
    content: "";
    position: absolute;
    inset: auto auto 12px 12px;
    width: 42px;
    height: 30px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.92);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.youtube-video-media::before {
    content: "";
    position: absolute;
    left: 28px;
    bottom: 21px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
    z-index: 1;
}

.youtube-video-body {
    display: grid;
    gap: 14px;
}

.youtube-video-card-head a {
    color: #67e8f9;
    word-break: break-all;
    text-decoration: none;
}

.youtube-video-card-head a:hover {
    color: #a5f3fc;
    text-decoration: underline;
}

.youtube-video-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 700;
}

.youtube-video-status.is-pendente {
    background: rgba(245, 158, 11, 0.14);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.youtube-video-status.is-aprovado {
    background: rgba(16, 185, 129, 0.14);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.28);
}

.youtube-video-status.is-recusado {
    background: rgba(239, 68, 68, 0.14);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.28);
}

.youtube-video-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 14px;
    color: #cbd5e1;
    font-size: 14px;
}

.youtube-video-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.youtube-video-step {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.64);
    border: 1px solid rgba(71, 85, 105, 0.38);
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 700;
}

.youtube-video-step.is-active {
    border-color: rgba(34, 211, 238, 0.28);
    color: #ecfeff;
    background: rgba(34, 211, 238, 0.14);
}

.youtube-video-note,
.youtube-dashboard-locked {
    padding: 16px 18px;
    color: #dbeafe;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .youtube-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .youtube-dashboard-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .youtube-video-card {
        grid-template-columns: 1fr;
    }

    .youtube-channel-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .youtube-dashboard-hero,
    .youtube-video-card-head {
        flex-direction: column;
        align-items: stretch;
    }

    .youtube-dashboard-summary {
        grid-template-columns: 1fr;
    }

    .youtube-video-form .btn-save-password {
        width: 100%;
        min-width: 0;
    }

    .youtube-video-preview {
        grid-template-columns: 1fr;
    }

    .youtube-subtabs {
        flex-direction: column;
    }

    .youtube-video-form input {
        max-width: 100%;
    }
}
