:root {
    --cosplay-bg: #f4f1e8;
    --cosplay-surface: #ffffff;
    --cosplay-surface-muted: #f9f6ef;
    --cosplay-border: #d7d0bf;
    --cosplay-text: #173228;
    --cosplay-text-soft: #54655d;
    --cosplay-primary: #214d3b;
    --cosplay-primary-strong: #173b2c;
    --cosplay-accent: #bea46b;
    --cosplay-danger: #ad3d3d;
    --cosplay-shadow: 0 18px 40px rgba(23, 50, 40, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(190, 164, 107, 0.18), transparent 28%),
        linear-gradient(180deg, #fbf8f1 0%, var(--cosplay-bg) 100%);
    color: var(--cosplay-text);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.cosplay-shell {
    min-height: 100vh;
}

.cosplay-login-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
}

.cosplay-login-card {
    width: min(100%, 480px);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(33, 77, 59, 0.12);
    border-radius: 24px;
    box-shadow: var(--cosplay-shadow);
    overflow: hidden;
}

.cosplay-login-card__hero {
    padding: 28px 28px 20px;
    background: linear-gradient(135deg, rgba(33, 77, 59, 0.96), rgba(23, 59, 44, 0.94));
    color: #fff;
}

.cosplay-login-card__hero h1,
.cosplay-page-title {
    margin: 0;
    font-family: 'Ibarra Real Nova', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cosplay-login-card__hero p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}

.cosplay-login-card__body {
    padding: 28px;
}

.cosplay-app {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.cosplay-sidebar {
    padding: 28px 22px;
    background: linear-gradient(180deg, rgba(23, 59, 44, 0.98), rgba(33, 77, 59, 0.96));
    color: #fff;
    position: sticky;
    top: 0;
    height: 100vh;
}

.cosplay-sidebar__brand {
    margin-bottom: 28px;
}

.cosplay-sidebar__brand span {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cosplay-sidebar__brand h1 {
    margin: 14px 0 8px;
    font-size: 32px;
    font-family: 'Ibarra Real Nova', serif;
}

.cosplay-sidebar__brand p,
.cosplay-sidebar__meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.55;
}

.cosplay-nav {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.cosplay-nav a {
    padding: 12px 14px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.84);
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cosplay-nav a:hover,
.cosplay-nav a.is-active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.cosplay-main {
    padding: 28px;
}

.cosplay-mobile-header {
    display: none;
}

.cosplay-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(33, 77, 59, 0.12);
    border-radius: 24px;
    box-shadow: var(--cosplay-shadow);
}

.cosplay-panel--padded {
    padding: 26px;
}

.cosplay-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.cosplay-page-header p {
    margin: 10px 0 0;
    color: var(--cosplay-text-soft);
    line-height: 1.6;
}

.cosplay-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cosplay-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cosplay-card {
    display: block;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(33, 77, 59, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 246, 239, 0.95));
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cosplay-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(23, 50, 40, 0.12);
    border-color: rgba(33, 77, 59, 0.22);
}

.cosplay-card--static {
    cursor: default;
}

.cosplay-card--static:hover {
    transform: none;
}

.cosplay-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--cosplay-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cosplay-card__title {
    margin: 0;
    font-size: 26px;
    font-family: 'Ibarra Real Nova', serif;
}

.cosplay-card__meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}

.cosplay-card--has-unread {
    border-color: rgba(225, 193, 92, 0.55);
    box-shadow: 0 16px 28px rgba(179, 129, 16, 0.12);
}

.cosplay-card__message-alert {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 244, 214, 0.7);
    border: 1px solid rgba(225, 193, 92, 0.5);
}

.cosplay-card__message-alert p {
    margin: 0;
    color: #6d4900;
    line-height: 1.5;
}

.cosplay-card__split-report {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.cosplay-card__split-item {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(33, 77, 59, 0.08);
}

.cosplay-card__split-item p {
    margin: 0;
    color: var(--cosplay-text-soft);
}

.cosplay-kpi {
    display: grid;
    gap: 4px;
}

.cosplay-kpi strong {
    font-size: 34px;
    line-height: 1;
    color: var(--cosplay-primary-strong);
}

.cosplay-kpi span,
.cosplay-table caption,
.cosplay-empty-state p,
.cosplay-form-help {
    color: var(--cosplay-text-soft);
}

.cosplay-button,
.cosplay-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--cosplay-primary);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.cosplay-button:hover {
    background: var(--cosplay-primary-strong);
    transform: translateY(-1px);
}

.cosplay-button--secondary,
.cosplay-button--secondary:visited {
    background: transparent;
    color: var(--cosplay-primary);
    border-color: rgba(33, 77, 59, 0.18);
}

.cosplay-button--secondary:hover {
    background: rgba(33, 77, 59, 0.06);
}

.cosplay-filter-button,
.cosplay-filter-button:visited {
    background: rgba(255, 255, 255, 0.72);
    color: var(--cosplay-text-soft);
    border-color: rgba(33, 77, 59, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.cosplay-filter-button:hover {
    background: rgba(255, 255, 255, 0.94);
}

.cosplay-filter-button--complete,
.cosplay-filter-button--complete:visited {
    color: #255842;
    border-color: rgba(47, 109, 82, 0.28);
}

.cosplay-filter-button--incomplete,
.cosplay-filter-button--incomplete:visited {
    color: #7a5b1f;
    border-color: rgba(190, 164, 107, 0.34);
}

.cosplay-filter-button--accepted,
.cosplay-filter-button--accepted:visited {
    color: #1d513a;
    border-color: rgba(47, 109, 82, 0.34);
}

.cosplay-filter-button--rejected,
.cosplay-filter-button--rejected:visited {
    color: #822d2d;
    border-color: rgba(154, 52, 52, 0.28);
}

.cosplay-button--success,
.cosplay-button--success:visited {
    background: #2f6d52;
    color: #fff;
}

.cosplay-button--success:hover {
    background: #255842;
}

.cosplay-button--completion,
.cosplay-button--completion:visited {
    background: #9f7d30;
    color: #fff;
}

.cosplay-button--completion:hover {
    background: #866525;
}

.cosplay-button--contact,
.cosplay-button--contact:visited {
    background: #48606f;
    color: #fff;
}

.cosplay-button--contact:hover {
    background: #394d59;
}

.cosplay-button--warning,
.cosplay-button--warning:visited {
    background: rgba(190, 164, 107, 0.22);
    color: #6f531c;
    border-color: rgba(190, 164, 107, 0.38);
}

.cosplay-button--warning:hover {
    background: rgba(190, 164, 107, 0.32);
}

.cosplay-form-grid {
    display: grid;
    gap: 16px;
}

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

.cosplay-field label {
    font-weight: 600;
}

.cosplay-field input {
    min-height: 50px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(33, 77, 59, 0.16);
    background: #fff;
    color: var(--cosplay-text);
}

.cosplay-field input:focus {
    outline: 2px solid rgba(190, 164, 107, 0.36);
    border-color: rgba(33, 77, 59, 0.28);
}

.cosplay-alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.cosplay-alert--error {
    background: rgba(173, 61, 61, 0.08);
    color: var(--cosplay-danger);
    border: 1px solid rgba(173, 61, 61, 0.12);
}

.cosplay-alert--success {
    background: rgba(33, 77, 59, 0.08);
    color: var(--cosplay-primary);
    border: 1px solid rgba(33, 77, 59, 0.12);
}

.cosplay-table-wrap {
    overflow-x: auto;
}

.cosplay-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.cosplay-table caption {
    text-align: left;
    padding-bottom: 14px;
}

.cosplay-table th,
.cosplay-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(33, 77, 59, 0.08);
    text-align: left;
    vertical-align: top;
}

.cosplay-table th {
    color: var(--cosplay-text-soft);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cosplay-table__action-cell {
    white-space: nowrap;
    text-align: center;
}

.cosplay-table__action-cell {
    padding: 8px 8px 16px;
    vertical-align: middle;
}

.cosplay-table__action-row td {
    background: rgba(249, 246, 239, 0.72);
    border-bottom: 4px solid rgba(33, 77, 59, 0.34);
}

.cosplay-table__action-label {
    color: var(--cosplay-text-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
}

.cosplay-table__action-cell .cosplay-button {
    justify-content: center;
    width: 100%;
    min-width: 92px;
    min-height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 11px;
}

.cosplay-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(33, 77, 59, 0.08);
    color: var(--cosplay-primary);
    font-size: 13px;
    font-weight: 700;
}

.cosplay-tag--success {
    background: rgba(33, 77, 59, 0.12);
    color: var(--cosplay-primary);
}

.cosplay-tag--warning {
    background: rgba(190, 164, 107, 0.18);
    color: #7a5b1f;
}

.cosplay-tag--decision-accepted {
    background: rgba(47, 109, 82, 0.14);
    color: #1d513a;
}

.cosplay-tag--decision-rejected {
    background: rgba(154, 52, 52, 0.12);
    color: #822d2d;
}

.cosplay-tag--decision-pending {
    background: rgba(84, 101, 93, 0.14);
    color: #445149;
}

.cosplay-empty-state {
    padding: 28px;
    text-align: center;
}

.cosplay-empty-state--compact {
    padding: 18px 0 4px;
}

.cosplay-empty-state h2 {
    margin: 0 0 10px;
    font-family: 'Ibarra Real Nova', serif;
    font-size: 28px;
}

.cosplay-row-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cosplay-row-actions--stacked {
    align-items: stretch;
    flex-direction: column;
}

.cosplay-row-actions--panel {
    margin: 0 0 24px;
}

.cosplay-row-actions--emails {
    gap: 12px;
    margin-bottom: 0;
}

.cosplay-status-stack {
    display: grid;
    gap: 6px;
}

.cosplay-status-note {
    color: var(--cosplay-text-soft);
    font-size: 12px;
    line-height: 1.4;
}

.cosplay-button--small,
.cosplay-button--small:visited {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
}

.cosplay-button--danger,
.cosplay-button--danger:visited {
    background: #9a3434;
    color: #fff;
}

.cosplay-button--danger:hover {
    background: #812929;
}

.cosplay-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.cosplay-detail-card {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(33, 77, 59, 0.12);
    background: rgba(249, 246, 239, 0.92);
}

.cosplay-detail-card strong {
    color: var(--cosplay-primary);
}

.cosplay-communication-section {
    display: grid;
    gap: 16px;
    margin: 0 0 24px;
    padding: 20px;
    border: 1px solid rgba(33, 77, 59, 0.12);
    border-radius: 20px;
    background: rgba(249, 246, 239, 0.92);
}

.cosplay-list-section__header--communications {
    align-items: flex-start;
    margin-bottom: 0;
}

.cosplay-action-history-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    color: var(--cosplay-primary);
    font-weight: 700;
    text-decoration: none;
}

.cosplay-button--mail,
.cosplay-button--mail:visited {
    min-height: 0;
    padding: 10px 14px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.cosplay-action-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    min-width: 18px;
    font-size: 14px;
    line-height: 1;
}

.cosplay-action-button__content {
    display: grid;
    gap: 2px;
}

.cosplay-action-button__title {
    font-weight: 700;
    line-height: 1.15;
}

.cosplay-action-button__subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0.86;
}

.cosplay-list-sections {
    display: grid;
    gap: 26px;
}

.cosplay-list-section {
    padding-top: 6px;
}

.cosplay-list-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.cosplay-list-section__header h2 {
    margin: 0;
    font-size: 24px;
    font-family: 'Ibarra Real Nova', serif;
}

.cosplay-list-section__header--filters {
    align-items: flex-end;
}

.cosplay-filter-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cosplay-inline-audio {
    display: grid;
    gap: 8px;
    min-width: 170px;
}

.is-active-filter,
.is-active-filter:visited {
    color: #fff;
}

.is-active-filter--complete,
.is-active-filter--complete:visited {
    background: #255842;
    border-color: #255842;
}

.is-active-filter--incomplete,
.is-active-filter--incomplete:visited {
    background: #9f7d30;
    border-color: #9f7d30;
}

.is-active-filter--accepted,
.is-active-filter--accepted:visited {
    background: #2f6d52;
    border-color: #2f6d52;
}

.is-active-filter--rejected,
.is-active-filter--rejected:visited {
    background: #9a3434;
    border-color: #9a3434;
}

.cosplay-audio-player {
    width: 100%;
    margin-top: 10px;
}

.cosplay-photo-button {
    display: inline-grid;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    color: var(--cosplay-primary);
}

.cosplay-photo-button__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cosplay-photo-thumb {
    display: block;
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(33, 77, 59, 0.16);
    box-shadow: 0 12px 24px rgba(23, 50, 40, 0.12);
}

.cosplay-photo-missing {
    color: var(--cosplay-text-soft);
}

.cosplay-lightbox[hidden] {
    display: none;
}

.cosplay-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cosplay-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(11, 24, 19, 0.82);
    cursor: pointer;
}

.cosplay-lightbox__dialog {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(11, 24, 19, 0.28);
}

.cosplay-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(88vh - 32px);
    border-radius: 18px;
    object-fit: contain;
}

.cosplay-lightbox__close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: var(--cosplay-primary);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(23, 50, 40, 0.22);
}

.cosplay-lightbox-open {
    overflow: hidden;
}

.cosplay-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--cosplay-primary);
    font-weight: 600;
}

.cosplay-communication-modal[hidden] {
    display: none;
}

.cosplay-communication-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cosplay-communication-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(11, 24, 19, 0.74);
    cursor: pointer;
}

.cosplay-communication-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    max-height: 90vh;
    overflow: auto;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(11, 24, 19, 0.28);
}

.cosplay-communication-modal__header h2 {
    margin: 0;
    font-family: 'Ibarra Real Nova', serif;
    font-size: 28px;
}

.cosplay-communication-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--cosplay-primary);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.cosplay-communication-modal__form {
    margin-top: 18px;
}

.cosplay-field textarea {
    min-height: 200px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(33, 77, 59, 0.16);
    background: #fff;
    color: var(--cosplay-text);
    resize: vertical;
}

.cosplay-field textarea:focus {
    outline: 2px solid rgba(190, 164, 107, 0.36);
    border-color: rgba(33, 77, 59, 0.28);
}

.cosplay-communication-modal__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cosplay-template-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cosplay-template-card {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(33, 77, 59, 0.12);
    background: rgba(249, 246, 239, 0.92);
}

.cosplay-template-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cosplay-tag--message-unread {
    background: #fff0c2;
    color: #7a4b00;
    border: 1px solid #e1c15c;
}

.cosplay-button--message-unread {
    box-shadow: 0 0 0 2px rgba(225, 193, 92, 0.35);
}

.cosplay-table__row--has-unread > td {
    background: rgba(255, 244, 214, 0.45);
}

.cosplay-actions--wrap {
    flex-wrap: wrap;
}

.cosplay-thread-section {
    margin-top: 28px;
}

.cosplay-thread-list {
    display: grid;
    gap: 16px;
}

.cosplay-thread-message {
    border: 1px solid #d9e6d6;
    border-radius: 16px;
    padding: 18px;
    background: #ffffff;
}

.cosplay-thread-message--operator {
    border-left: 6px solid #2f7d32;
}

.cosplay-thread-message--participant {
    border-left: 6px solid #c07a00;
    background: #fffdf7;
}

.cosplay-thread-message__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.cosplay-thread-message__header > div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cosplay-thread-message__subject {
    margin: 0 0 10px;
    font-size: 1rem;
}

.cosplay-thread-message__body {
    line-height: 1.7;
    color: #17351f;
}

.cosplay-thread-message__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.cosplay-public-response {
    max-width: 960px;
    margin: 0 auto;
}

.cosplay-public-response__brand {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cosplay-public-response__logo {
    width: 86px;
    max-width: 100%;
    height: auto;
    display: block;
}

.cosplay-public-response__form {
    margin-top: 12px;
}

.cosplay-field--honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.cosplay-template-card__header h2 {
    margin: 0;
    font-size: 24px;
    font-family: 'Ibarra Real Nova', serif;
}

@media (max-width: 1024px) {
    .cosplay-app {
        grid-template-columns: minmax(0, 1fr);
    }

    .cosplay-sidebar {
        display: none;
    }

    .cosplay-main {
        padding: 18px;
    }

    .cosplay-mobile-header {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
        padding: 18px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(33, 77, 59, 0.96), rgba(23, 59, 44, 0.94));
        color: #fff;
        box-shadow: var(--cosplay-shadow);
    }

    .cosplay-grid {
        grid-template-columns: 1fr;
    }

    .cosplay-page-header {
        flex-direction: column;
    }

    .cosplay-card__split-report {
        grid-template-columns: 1fr;
    }

    .cosplay-template-grid {
        grid-template-columns: 1fr;
    }

    .cosplay-list-section__header--communications {
        flex-direction: column;
    }

    .cosplay-communication-modal__dialog {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .cosplay-login-card__hero,
    .cosplay-login-card__body,
    .cosplay-panel--padded {
        padding: 22px;
    }

    .cosplay-card__title {
        font-size: 24px;
    }

    .cosplay-detail-grid {
        grid-template-columns: 1fr;
    }

    .cosplay-lightbox {
        padding: 16px;
    }

    .cosplay-photo-thumb {
        width: 72px;
        height: 72px;
    }
}