/* assets/css/thanks.css */

/* Special Thanks Section */
.thanks-section {
    margin: 4rem 0 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 32px;
    text-align: center;
}

.thanks-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.thanks-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.contributor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.contributor-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.contributor-name {
    font-weight: 700;
    color: #fff;
}

.contributor-count {
    background: var(--primary-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    min-width: 2.5rem;
}

/* 装備画像関連 */
.btn-image-view {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-right: 0.5rem;
    font-weight: 700;
}

.btn-image-view:hover {
    background: var(--primary-color);
    color: #000;
}

.image-view-btn {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.image-view-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

.image-modal-content {
    background: rgba(20, 20, 20, 0.95) !important;
    border: 1px solid var(--primary-color) !important;
    max-width: 90vw !important;
    min-width: 300px;
    max-height: 90vh !important;
    border-radius: 24px !important;
    padding: 1.5rem !important;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#equip-image-preview {
    max-height: 70vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
}