.credits-container {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.credits-content {
    max-width: 800px;
    width: 100%;
    padding: 2rem;
}

.credits-content.glass-panel {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.credits-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: none;
}

.credits-section:last-child {
    border-bottom: none;
}

.credits-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.credits-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.creator-card {
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.creator-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.creator-card .title {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    color: #cbd5e1;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.tech-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
}

.tech-list strong {
    color: #fff;
}

/* Override footer for credits page */
.credits-container ~ .footer {
    position: relative;
    text-align: center;
    padding: 1rem;
    background: var(--bg-color);
    border-top: 1px solid var(--glass-border);
}

/* Additional credits page styles */
.text-link {
    color: #6cdfff; /* Very light blue for maximum contrast */
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.text-link:hover {
    border-bottom-color: #DBEAFE;
    color: #F0F9FF; /* Almost white on hover */
}

.methodology-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.methodology-list li {
    color: #cbd5e1;
    line-height: 1.8;
    padding-left: 0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.marker-badge {
    font-size: 1.2rem;
    line-height: 1;
}

.marker-badge.crimson {
    color: var(--accent-crimson);
}

.marker-badge.blue {
    color: var(--accent-blue);
}

