main {
    padding-top: 100px;
    padding-bottom: 0px;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.creator-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.creator-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 230, 118, 0.2);
}

.creator-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--clr-surface-light);
    border: 3px solid var(--clr-primary-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.creator-card:hover .creator-avatar {
    border-color: var(--clr-primary-bright);
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-text-main);
    margin-bottom: 0.5rem;
}

.creator-role {
    color: var(--clr-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.creator-bio {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.rank-badge {
    background: linear-gradient(135deg, var(--clr-primary-bright), var(--clr-primary));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    position: absolute;
    top: 15px;
    right: 15px;
    box-shadow: 0 4px 10px rgba(0, 230, 118, 0.4);
}