/* ========================================
   P5X Release Schedule - Stylesheet
   EN/JP Server Schedule Page
   ======================================== */

/* Schedule Page */
.schedule-page {
    padding-bottom: 40px;
}

/* Notice Banner */
.schedule-notice {
    background: var(--card-background, #232323);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    padding: 12px 16px;
    margin: 0 2px 20px 0px;
}

.schedule-notice a {
    color: rgba(120, 200, 255, 0.9);
    text-decoration: none;
}

.schedule-notice a:hover {
    text-decoration: underline;
}

.notice-text {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .schedule-notice {
        margin: 0 0 16px 0;
    }
}

@media (max-width: 768px) {
    .schedule-page > .nitro-ad-container--header {
        max-width: 320px;
        margin-bottom: 16px;
    }
}

/* Current Info Banner */
.current-banner {
    background: var(--card-background, #232323);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 0 0px 24px 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Banner Item - 동일한 구조 */
.banner-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.banner-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.banner-character {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.banner-char-avatar {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.banner-char-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.banner-countdown {
    font-size: 12px;
    color: rgba(255, 193, 7, 0.85);
    margin-top: 2px;
}

/* Next Release - 오른쪽 정렬 */
.next-release {
    text-align: right;
}

.next-release .banner-character {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .current-banner {
        flex-direction: column;
        text-align: center;
        margin: 0 0 20px 0;
        padding: 14px;
        gap: 16px;
    }

    .banner-item {
        align-items: center;
    }

    .next-release {
        text-align: center;
    }

    .next-release .banner-character {
        flex-direction: row;
    }
}

/* Filter Section */
.filter-section {
    display: flex;
    gap: 8px;
    margin: 0 0px 20px 0px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--card-background, #232323);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-family: inherit;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .filter-section {
        margin: 0 0 16px 0;
    }

    .filter-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* SEA Server Toggle */
.sea-server-toggle-container {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.sea-server-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    user-select: none;
}

.sea-server-label input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.sea-server-label span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .filter-section {
        align-items: flex-start;
    }

    .sea-server-toggle-container {
        margin-left: 0;
        margin-top: 4px;
    }
}

/* Timeline Container */
.timeline-container {
    margin: 0 0px;
    position: relative;
    padding-left: 32px;
}

/* Timeline Line */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .timeline-container {
        margin: 0;
        padding-left: 28px;
    }

    .timeline-container::before {
        left: 7px;
    }
}

/* Released Section - Simple Toggle Button */
.released-section {
    margin-bottom: 24px;
    position: relative;
}

.released-toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.released-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
}

.released-toggle-btn.expanded {
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.toggle-text {
    flex: 1;
    text-align: left;
}

.toggle-count {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
}

.toggle-icon {
    font-size: 16px;
    font-weight: 300;
    width: 20px;
    text-align: center;
}

.released-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.released-content.expanded {
    max-height: 50000px;
    transition: max-height 0.6s ease-in;
}

/* Release Card */
.release-card {
    position: relative;
    margin-bottom: 16px;
}

.schedule-inline-ad {
    margin-top: 8px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .schedule-inline-ad {
        width: calc(100% + 28px);
        max-width: none;
        margin-left: -28px;
        margin-top: 4px;
        margin-bottom: 20px;
    }
}

/* Timeline Node - 카드 상단 기준 고정 위치 */
.timeline-node {
    position: absolute;
    left: -30px;
    top: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.25);
    z-index: 2;
}

/* Current */
.release-card.status-current .timeline-node {
    border-color: rgba(120, 200, 255, 0.9);
    background: #1a1a1a;
    box-shadow: 0 0 8px rgba(120, 200, 255, 0.5);
}

.release-card.status-current .card-content {
    background: linear-gradient(135deg, #2a3a4a 0%, #1e2a35 100%);
    border-color: rgba(120, 200, 255, 0.5);
    box-shadow: 0 0 0 1px rgba(120, 200, 255, 0.2), 0 4px 16px rgba(120, 200, 255, 0.15);
}

/* Upcoming */
.release-card.status-upcoming .timeline-node {
    border-color: rgba(255, 193, 7, 0.8);
    background: #1a1a1a;
}

.release-card.status-upcoming .card-content {
    background: linear-gradient(135deg, #3a3520 0%, #2a2818 100%);
    border-color: rgba(255, 193, 7, 0.45);
    box-shadow: 0 0 0 1px rgba(255, 193, 7, 0.15), 0 4px 12px rgba(255, 193, 7, 0.1);
}

/* Future */
.release-card.status-future .timeline-node {
    border-color: rgba(100, 149, 237, 0.6);
    background: #1a1a1a;
}

/* Released */
.release-card.status-released .timeline-node {
    border-color: rgba(255, 255, 255, 0.2);
    background: #1a1a1a;
}

@media (max-width: 768px) {
    .timeline-node {
        left: -26.5px;
        top: 18px;
        width: 10px;
        height: 10px;
    }
}

/* Card Content */
.card-content {
    background: var(--card-background, #232323);
    border-radius: 8px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.release-card:hover .card-content {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.version-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.version-badge {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Badge (콜라보, 메인 스토리 등) */
.content-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.05);
    /* border: 1px solid rgba(255, 255, 255, 0.1);*/
    border-radius: 6px;
}

.content-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.content-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

/* Gold Ticket Badge - 골드 티켓 해제 뱃지 */
.gold-ticket-icon {
    height: 16px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.gold-ticket-character-icon {
    height: 20px;
    width: 20px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.gold-ticket-character-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.gold-ticket-character-link:hover {
    transform: translateY(-1px);
}

.limit-transition-badge {
    gap: 6px;
    flex-wrap: wrap;
    order: 99;
}

.limit-transition-state-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.limit-transition-arrow {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.limit-transition-arrow svg {
    width: 14px;
    height: 14px;
    display: block;
}

.limit-transition-characters {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.limit-transition-character-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.limit-transition-character-link:hover {
    transform: translateY(-1px);
}

.limit-transition-character-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Weapon Badge - 원더 웨폰 뱃지 */
.weapon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.weapon-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    position: relative;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    /* a 태그 지원 */
    color: inherit;
    /* a 태그 지원 */
}

a.weapon-item {
    color: inherit;
    text-decoration: none;
}

.weapon-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.weapon-item-no-hover {
    cursor: default;
}

.weapon-item-no-hover:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
}

.weapon-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.weapon-stamp-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.weapon-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

/* Revelation List - 계시 뱃지 */
.revelation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.revelation-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    position: relative;
}

.revelation-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.revelation-type-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

.revelation-sub-icons {
    display: flex;
    gap: 2px;
    align-items: center;
}

.revelation-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.rev-set-list {
    flex-wrap: wrap;
}

.rev-set-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.rev-set-label {
    color: rgba(255, 255, 255, 0.78);
}

.rev-set-item {
    padding: 2px 6px;
}

.rev-set-item .revelation-icon {
    width: 20px;
    height: 20px;
}

/* Mindscape Core List - 마인드스케이프 코어 뱃지 */
.mindscape-core-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.mindscape-core-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    position: relative;
    text-decoration: none;
    color: inherit;
}

a.mindscape-core-item {
    text-decoration: none;
    color: inherit;
}

.mindscape-core-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.mindscape-core-character-icon {
    height: 20px;
    width: 20px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.mindscape-core-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.mindscape-nature-icon {
    width: auto;
    height: 24px;
    max-width: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.mindscape-sync-badge {
    flex-wrap: wrap;
}

.mindscape-sync-label {
    color: rgba(255, 255, 255, 0.78);
}

.mindscape-sync-characters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.mindscape-sync-character-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, transform 0.2s;
}

.mindscape-sync-character-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.mindscape-sync-character-icon {
    height: 20px;
    width: 20px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.mindscape-sync-character-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.release-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Status Badge */
.status-badge {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.released {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

.status-badge.current {
    background: rgba(120, 200, 255, 0.2);
    color: rgba(120, 200, 255, 1);
}

.status-badge.upcoming {
    background: rgba(255, 193, 7, 0.15);
    color: rgba(255, 193, 7, 0.9);
}

.status-badge.future {
    background: rgba(100, 149, 237, 0.15);
    color: rgba(100, 149, 237, 0.9);
}

@media (max-width: 768px) {
    .card-header {
        flex-direction: column;
        gap: 8px;
    }
}

/* Character List Wrapper - 콜라보 아이콘 포함 */
.character-list-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Badges Group - 뱃지들을 그룹화하여 자동으로 다음 행으로 넘어가도록 */
.badges-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    flex: 1 1 100%;
    min-width: 0;
}

/* Character List */
.character-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Collaboration Icon - release card 레벨 */

.character-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    min-width: 180px;
    cursor: pointer;
}

.character-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.character-item.click-disabled {
    cursor: default;
}

.character-item.click-disabled:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* Character Avatar */
.character-avatar {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.character-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.character-name {
    font-weight: 500;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.character-codename {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: -2px;
}

.character-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* Position Icon */
.position-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.8;
}

/* Element Icon */
.element-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}


/* Rarity Stars */
.rarity-star {
    color: #ffd700;
    font-size: 9px;
    letter-spacing: -1px;
}

/* 5성 한정 - 그래디언트 */
.rarity-star.star5-limit {
    background: linear-gradient(45deg, #b1c0ec, #c4ffff, #e4c2d3, #c6a9f9, #ba7f96, #c4ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 150% auto;
}

/* Release Note */
.release-note {
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 4px 4px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Persona List - character-item과 뱃지 사이에 배치 */
.persona-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.persona-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px 12px 8px 8px;
    border-radius: 6px;
    background: rgb(255 116 116 / 5%);
    height: 70.5px;
    box-sizing: border-box;
}

.persona-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.persona-item-no-hover {
    cursor: default;
}

.persona-item-no-hover:hover {
    background: rgb(255 116 116 / 5%);
    border-color: transparent;
    transform: none;
}


.persona-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    flex-shrink: 0;
}

.persona-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.persona-name-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.persona-item .persona-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.persona-grade-img {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain;
    flex-shrink: 0;
}

.persona-extra-info {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
}

.persona-event-label {
    font-size: 10px;
    color: rgba(255, 193, 7, 0.9);
    border-radius: 4px;
    font-weight: 400;
}

.persona-emblem {
    display: flex;
    align-items: center;
    gap: 4px;
}

.persona-emblem-icon {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain;
}

.persona-emblem-num {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Super highlight for important personas */
.persona-item.super-highlight {
    position: relative;
    border-radius: 10px;
}

.persona-item.super-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Anniversary Event Styling */
.anniversary-event {
    display: flex;
    align-items: center;
    width: 100%;
}

.anniversary-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.anniversary-info:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.server-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
}

.anniversary-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

/* Year Divider */
.year-divider {
    text-align: center;
    margin: 28px 0 20px 0;
    position: relative;
    margin-left: -32px;
}

.year-divider::before {
    content: '';
    position: absolute;
    left: 32px;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.year-label {
    display: inline-block;
    background: var(--bg-color, #111111);
    padding: 4px 16px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .year-divider {
        margin-left: -28px;
    }

    .year-divider::before {
        left: 28px;
    }

    .character-item {
        width: 100%;
        min-width: unset;
    }

    /* 모바일에서 캐릭터 아이템, 페르소나 리스트, 뱃지들이 각각 다른 행에 위치 */
    .character-list-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .character-list {
        width: 100%;
    }

    .persona-list {
        width: 100%;
    }

    .content-badge {
        margin-left: 0;
        margin-top: 0;
        padding: 4px 8px;
        font-size: 11px;
    }

    .content-icon {
        height: 20px;
    }

    .content-label {
        font-size: 11px;
    }

    .limit-transition-badge {
        gap: 5px;
    }

    .limit-transition-arrow {
        width: 12px;
        height: 12px;
    }

    .limit-transition-arrow svg {
        width: 12px;
        height: 12px;
    }

    .persona-list {
        gap: 6px;
    }

    .persona-item {
        height: 56px;
        padding: 6px 10px;
        gap: 6px;
    }

    .persona-item img {
        width: 40px;
        height: 40px;
    }

    .persona-item .persona-name {
        font-size: 11px;
        max-width: 80px;
    }

    .persona-grade-img {
        width: 14px !important;
        height: 14px !important;
    }

    .persona-extra-info {
        gap: 3px;
    }

    .persona-event-label {
        font-size: 9px;
    }

    .persona-emblem-icon {
        width: 14px;
        height: 14px;
    }

    .persona-emblem-num {
        font-size: 9px;
    }
}

/* Loading State */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Weapon Effect Modal */
.weapon-effect-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
}

.weapon-effect-modal.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.weapon-effect-modal-content {
    background-color: #1a1a1a;
    border: 1px solid #e5e5e56b;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 20px;
    color: #fff;
    box-shadow: 0 8px 10px rgb(0 0 0 / 30%);
    transform: scale(0.95);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.weapon-effect-modal.show .weapon-effect-modal-content {
    transform: scale(1);
    opacity: 1;
}

.weapon-effect-close {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #dedede;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.weapon-effect-close:hover,
.weapon-effect-close:focus {
    color: #fff;
    text-decoration: none;
}

.weapon-effect-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.weapon-effect-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px;
}

.weapon-effect-header h3 {
    margin: 0;
    font-size: 18px;
    color: #f0f0f0;
}

.weapon-effect-description {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    white-space: pre-line;
}

.weapon-effect-description a {
    color: rgba(120, 200, 255, 0.9);
    text-decoration: none;
}

.weapon-effect-description a:hover {
    text-decoration: underline;
}
