.credits-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1.25rem;
}

.credits-card {
    background: var(--card-grad);
    border: 1px solid var(--card-border-strong);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 1.2rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.card-header i {
    width: 20px;
    height: 20px;
    color: #f97316;
    flex-shrink: 0;
}

.card-header h2 {
    font-size: 1.15rem;
    font-weight: 900;
}

.version-badge {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.28), rgba(220, 38, 38, 0.2));
    border: 1px solid rgba(249, 115, 22, 0.6);
    color: #fed7aa;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.version-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.wiki-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.wiki-entry {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.85rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.wiki-entry-title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    font-size: 0.9rem;
    color: #f97316;
}

.wiki-entry-title i {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.wiki-entry p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.wiki-entry p strong {
    color: #e5e5e5;
}

.patchnote-empty {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.patchnote-empty i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.credits-thanks-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.credits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.credit-row {
    border: 1px solid var(--card-border-strong);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.85rem 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.credit-row h2 {
    font-size: 1rem;
    font-weight: 850;
}

.credit-row a {
    color: #f97316;
    font-weight: 700;
    text-decoration: none;
    word-break: break-all;
    font-size: 0.88rem;
}

.credit-row a:hover {
    text-decoration: underline;
}

.beta-row h2 {
    color: #a78bfa;
}

.beta-names {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.patchnote-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.patchnote-section {
    border-left: 3px solid rgba(249, 115, 22, 0.6);
    padding-left: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.patchnote-section-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.patchnote-section-header i {
    width: 18px;
    height: 18px;
    color: #f97316;
    flex-shrink: 0;
}

.patchnote-section-header h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.patchnote-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.patchnote-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.4;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s ease;
}

.patchnote-list li:hover {
    background: rgba(255, 255, 255, 0.04);
}

.fix-badge,
.new-badge,
.improve-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 900;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.fix-badge {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.new-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.improve-badge {
    background: rgba(249, 115, 22, 0.2);
    color: #fed7aa;
    border: 1px solid rgba(249, 115, 22, 0.4);
}

.patchnote-notes {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.patchnote-notes p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 640px) {
    .wiki-grid {
        grid-template-columns: 1fr;
    }

    .version-badge {
        margin-left: 0;
    }

    .patchnote-section {
        border-left-width: 2px;
        padding-left: 0.8rem;
    }
}