.hero {
    text-align: center;
}

.credits-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 1.5rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.credit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.credit-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, border-color 0.2s;
}

.credit-card:hover {
    border-color: #444;
    transform: translateY(-3px);
}

.role {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.name {
    font-size: 1.3rem;
    color: #fff;
    margin: 0 0 10px 0;
}

.contribution {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Link Styling */
.credit-link {
    display: inline-block;
    color: var(--accent-green);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    border: 1px solid var(--accent-green);
    padding: 6px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.credit-link:hover {
    background: var(--accent-green);
    color: #000;
}

/* Pending State */
.credit-link.pending {
    color: #555;
    border-color: #333;
    cursor: default;
}

.credit-link.pending:hover {
    background: transparent;
    color: #555;
}

.alias-badge {
    background: #222;
    color: #999; 
    border: 1px solid #333; 
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.alias-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #444; 
    border-radius: 50%;
    margin-right: 8px;
}