/* ============================================================
   Furface Thanks Page - Compact Layout
   ============================================================ */

.thanks-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
}

.thanks-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

/* Header */
.thanks-header {
    margin-bottom: 56px;
}

.thanks-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--acid-muted);
    border: 1px solid var(--acid);
    color: var(--acid);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.thanks-title {
    font-family: var(--font-display);
    font-size: 56px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text), var(--acid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thanks-desc {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.thanks-note {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

/* Section Label */
.thanks-label {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* Contributors Section */
.thanks-contributors {
    margin-bottom: 48px;
}

.thanks-names {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.thanks-names span {
    padding: 12px 6px;
    font-size: 20px;
    color: var(--text);
    transition: all 0.3s ease;
}

/* 中文引号「」装饰 */
.thanks-person-name::before {
    content: '「';
    color: var(--acid);
    opacity: 0.5;
    margin-right: 4px;
}

.thanks-person-name::after {
    content: '」';
    color: var(--acid);
    opacity: 0.5;
    margin-left: 4px;
}

.thanks-names span:hover {
    color: var(--acid);
}

/* Projects Section - Logo Matrix */
.thanks-projects {
    margin-bottom: 48px;
}

.thanks-logo-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.thanks-logo-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    max-width: 200px;
    height: 80px;
    padding: 16px 24px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.thanks-logo-item:hover {
    background: var(--surface-light);
    border-color: var(--acid);
    box-shadow: 0 0 20px rgba(190, 250, 0, 0.15);
}

.thanks-logo-item img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Fallback text when logo not available */
.thanks-logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--acid);
    letter-spacing: 0.02em;
    text-align: center;
}

/* Logo with text (icon + label) */
.thanks-logo-with-text {
    gap: 12px;
}

.thanks-logo-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--acid);
    letter-spacing: 0.02em;
}

/* Members Section */
.thanks-members {
    margin-bottom: 48px;
}

.thanks-members-img {
    display: flex;
    justify-content: center;
}

.thanks-members-img img {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--acid);
    border-radius: 4px;
}

/* Footer */
.thanks-footer {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.thanks-footer p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.thanks-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 13px;
    color: var(--text-dim);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.thanks-back:hover {
    color: var(--acid);
    border-color: rgba(190, 250, 0, 0.3);
}

.thanks-back:hover svg {
    transform: translateX(-4px);
}

.thanks-back svg {
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .thanks-page {
        padding: 80px 16px 40px;
    }

    .thanks-title {
        font-size: 40px;
    }

    .thanks-desc {
        font-size: 14px;
    }

    .thanks-names {
        gap: 8px;
    }

    .thanks-names span {
        padding: 8px 4px;
        font-size: 16px;
    }

    .thanks-logo-grid {
        gap: 16px;
    }

    .thanks-logo-item {
        min-width: 100px;
        max-width: 150px;
        height: 64px;
        padding: 12px 16px;
    }

    .thanks-logo-item img {
        max-height: 40px;
    }

    .thanks-logo-fallback {
        font-size: 14px;
    }

    .thanks-footer {
        margin-top: 40px;
        padding-top: 32px;
    }
}
